[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fkzzupZbwqBbBOgpFAf9617Qcw2nbS-4wKPG2glbhTrU":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":18,"download_link":24,"security_score":25,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28,"vulnerabilities":29,"developer":30,"crawl_stats":27,"alternatives":37,"analysis":143,"fingerprints":324},"picker","Picker","1.1.6","Andrea Landonio","https:\u002F\u002Fprofiles.wordpress.org\u002Flando1982\u002F","\u003Cp>Picker is a simple and flexible plugin which allow users to choose a specific post inside admin widgets page and display it in their site frontend.\u003C\u002Fp>\n\u003Cp>If you need to display a specific post, not a generic list of last posts, top ranked posts, category posts, etc.. but only the one that you configure in the backend. Picker plugin makes it possible in a very quick and easy way. It adds a widget on the admin widgets page that you can use to select and show a post on your site’s frontend. You can work with standard types (like posts) and custom types simply by changing the settings page of the plugin.\u003C\u002Fp>\n\u003Cp>Picker plugin is extensible in many of its features, such as, applying filters and action, managing layout template, etc.. moreover, plugin is based on the WordPress Transient API for caching issue.\u003Cbr \u002F>\nAs mentioned before, the plugin provides a way to override the default layout template. With a few lines of code, you can create your layout template (copying the default one) and completely override the plugin look&feel thanks to a complete access to all widget item data throw Picker classes.\u003C\u002Fp>\n\u003Ch4>Widget usage\u003C\u002Fh4>\n\u003Cp>You can use Picker plugin like all the other WordPress plugins, dragging the widget to a sidebar you can enable a Picker widget. Initially, the widget is not published on the frontend. In this way you can safely configure widget’s data and then publish\u002Fdisplay the widget.\u003Cbr \u002F>\nPicker widget is composed by the following fields:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cem>Publish checkbox\u003C\u002Fem>: flag it to publish the widget\u003C\u002Fli>\n\u003Cli>\u003Cem>Widget title\u003C\u002Fem>: a widget title, for backend and users only, not shown on frontend\u003C\u002Fli>\n\u003Cli>\u003Cem>Post list\u003C\u002Fem>: a lists of the last posts by date\u003C\u002Fli>\n\u003Cli>\u003Cem>Post search\u003C\u002Fem>: a search field to provide a post ID or search it if post is not in the above post list\u003C\u002Fli>\n\u003Cli>\u003Cem>Time to publish\u003C\u002Fem>: a datetime to set when the widget could be shown on frontend\u003C\u002Fli>\n\u003Cli>\u003Cem>Time to expire\u003C\u002Fem>: a datetime to set when the widget should be removed from frontend\u003C\u002Fli>\n\u003Cli>\u003Cem>Alternative URL\u003C\u002Fem>: an alternative URL instead the default posts permalink\u003C\u002Fli>\n\u003Cli>\u003Cem>Alternative title\u003C\u002Fem>: an alternative title instead the default post_title field\u003C\u002Fli>\n\u003Cli>\u003Cem>Alternative excerpt\u003C\u002Fem>: an alternative excerpt instead the default post_excerpt field\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>For some field there is a jQuery validation to check right formats. Picker plugin checks all numbers, url and datetime fields showing you an alert if data are wrong.\u003C\u002Fp>\n\u003Ch4>Customizing layout template\u003C\u002Fh4>\n\u003Cp>Picker plugin provide a default widget template that show a linked title (using post title), the featured image of the post and the post excerpt. Alternatively, you can manage widget template overriding default template. Picker plugin has a tool to detect the template path used for widget layout inclusion.\u003Cbr \u002F>\nThis is the load order of the template files:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>theme \u002F template_path \u002F template_name (default: theme template folder)\u003C\u002Fli>\n\u003Cli>theme \u002F template_name (default: theme root folder)\u003C\u002Fli>\n\u003Cli>default_path \u002F template_name (default: plugin templates folder)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Plugin filters\u003C\u002Fh4>\n\u003Cp>Picker plugin provides many filters to extend default behavior of the plugin core functions. This is a list of the most important available filters:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cem>picker_item_title\u003C\u002Fem>: allow to modify picker item title\u003C\u002Fli>\n\u003Cli>\u003Cem>picker_item_excerpt\u003C\u002Fem>: allow to modify picker item excerpt\u003C\u002Fli>\n\u003Cli>\u003Cem>picker_item_content\u003C\u002Fem>: allow to modify picker item content\u003C\u002Fli>\n\u003Cli>\u003Cem>picker_template_path\u003C\u002Fem>: allow to modify layout template path\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>To better understand how you can interact with plugin filters, here are some examples.\u003Cbr \u002F>\nIf you want, you can modify the default  (usually “picker\u002F” folder), with a folder in your theme root. In the following example, adding the function to your “functions.php” theme file, we are telling to Picker plugin to search template files inside a “templates\u002F” folder in your theme root.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function modify_picker_template_path() {\n    return 'templates';\n}\nadd_filter( 'picker_template_path', 'modify_picker_template_path' ); \n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Also, you can modify the default post title (usually “post_title” field), adding for example a prefix\u002Fsuffix. In the following example, adding the function to your “functions.php” theme file, we are telling to Picker plugin to call your function before return to template the item post title value.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function modify_picker_post_title( $value ) {\n    return 'my_prefix ' . $value;\n}\nadd_filter( 'picker_item_title', 'modify_picker_post_title' ); \n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Template utility class and functions\u003C\u002Fh4>\n\u003Cp>As described in the previous paragraph, you can customize widget template according to you site specs. Inside the template file you can use a \u003Ccode>$picker_item\u003C\u002Fcode> global variable to access the picker class methods:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cem>get_post_data()\u003C\u002Fem>: get WP_Post object\u003C\u002Fli>\n\u003Cli>\u003Cem>get_permalink()\u003C\u002Fem>: get post permalink\u003C\u002Fli>\n\u003Cli>\u003Cem>get_title()\u003C\u002Fem>: get post title\u003C\u002Fli>\n\u003Cli>\u003Cem>get_excerpt($max_words = ”, $use_content_if_empty = false)\u003C\u002Fem>: get post excerpt\u003C\u002Fli>\n\u003Cli>\u003Cem>get_content($max_words = ”)\u003C\u002Fem>: get post content\u003C\u002Fli>\n\u003Cli>\u003Cem>get_categories($sep = ‘, ‘, $before = ”, $after = ”)\u003C\u002Fem>: get post categories as a list of category links\u003C\u002Fli>\n\u003Cli>\u003Cem>get_tags($sep = ‘, ‘, $before = ”, $after = ”)\u003C\u002Fem>: get post tags as a list of tag links\u003C\u002Fli>\n\u003Cli>\u003Cem>get_formats($sep = ‘, ‘, $before = ”, $after = ”)\u003C\u002Fem>: get post formats as a list of format links\u003C\u002Fli>\n\u003Cli>\u003Cem>has_image()\u003C\u002Fem>: tell if post has image\u003C\u002Fli>\n\u003Cli>\u003Cem>get_image($size = ‘thumbnail’, $attr = array())\u003C\u002Fem>: get post featured image (use \u003Ccode>thumbnail\u003C\u002Fcode>, \u003Ccode>medium\u003C\u002Fcode>, \u003Ccode>large\u003C\u002Fcode>, \u003Ccode>full\u003C\u002Fcode> default sizes or your registered new image size)\u003C\u002Fli>\n\u003Cli>\u003Cem>get_image_id()\u003C\u002Fem>: get post featured image ID\u003C\u002Fli>\n\u003Cli>using \u003Ccode>__get\u003C\u002Fcode> magic method you can read a custom field (eg: $picker_item->my_custom_field)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>In addition to \u003Ccode>$picker_item\u003C\u002Fcode> global variable, you can use custom variables values, such as:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cem>get_custom_url()\u003C\u002Fem>: the provided alternative post URL\u003C\u002Fli>\n\u003Cli>\u003Cem>get_custom_title()\u003C\u002Fem>: the provided alternative post title\u003C\u002Fli>\n\u003Cli>\u003Cem>get_custom_excerpt()\u003C\u002Fem>: the provided alternative post excerpt\u003C\u002Fli>\n\u003Cli>\u003Cem>get_widget_sidebar()\u003C\u002Fem>: which sidebar contains the the widget\u003C\u002Fli>\n\u003Cli>\u003Cem>get_widget_order()\u003C\u002Fem>: the widget order (position)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>In the template file are available special variables, for now:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cem>$use_cache\u003C\u002Fem>: boolean\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Very important is the \u003Ccode>widget_sidebar\u003C\u002Fcode> variable. With this value you can display a different widget layout according to which sidebar contains the widget.\u003C\u002Fp>\n\u003Ch4>Caching management\u003C\u002Fh4>\n\u003Cp>To increase performance and reduce database queries Picker plugin use a persistent caching management. To get a persistent cache without using external plugins Picker plugin uses \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FTransients_API\" rel=\"nofollow ugc\">WordPress Transient API\u003C\u002Fa>.\u003Cbr \u002F>\nAnytime WordPress display Picker plugin on a site frontend page a calls Picker plugin widget management. First of all, Picker plugin look for a cached object into Transient cache, if found it, gets data, prepares HTML and provides it to frontend.\u003Cbr \u002F>\nIf data isn’t in Transient cache, Picker plugin go on with widget date and status validation, then, after looked up post into database, create Picker item object that contains all the widget post data, and in the end like a cached object prepares HTML and provides it to frontend.\u003Cbr \u002F>\nBefore concluding by Picker plugin widget management, the Picker item is saved to Transient cache. Only the Picker item is saved to cache, no HTML neither frontend logic are saved to cache. The goal to Picker caching management is only to reduce database usage.\u003Cbr \u002F>\nPicker plugin cache has many expiration rules, the most important are:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>widgets are cached 5 minutes if you specify a time to publish or a time to expire\u003C\u002Fli>\n\u003Cli>widgets are cached 1 day if you don’t specify a time to publish and a time to expire\u003C\u002Fli>\n\u003Cli>widgets cache expire if you update the widget\u003C\u002Fli>\n\u003Cli>widgets cache expire when one of the following action is triggered:\n\u003Cul>\n\u003Cli>save_post\u003C\u002Fli>\n\u003Cli>deleted_post\u003C\u002Fli>\n\u003Cli>publish_future_post\u003C\u002Fli>\n\u003Cli>switch_theme\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Col>\n\u003Cli>Go to \u003Cem>WP-Admin -> Appearance -> Widgets\u003C\u002Fem>.\u003C\u002Fli>\n\u003Cli>Drag \u003Cem>Picker\u003C\u002Fem> widget to a sidebar.\u003C\u002Fli>\n\u003Cli>Customize \u003Cem>Picker\u003C\u002Fem> widget.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>Links: \u003Ca href=\"http:\u002F\u002Fwww.andrealandonio.it\" rel=\"nofollow ugc\">Author’s Site\u003C\u002Fa>\u003C\u002Fp>\n","Picker is a simple and flexible plugin which allow users to choose a specific post inside admin widgets page and display it in their site frontend.",10,2811,100,2,"2021-03-14T10:12:00.000Z","5.7.15","4.0","",[20,21,4,22,23],"admin","pick","usability","widget","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpicker.1.1.6.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":31,"display_name":7,"profile_url":8,"plugin_count":32,"total_installs":33,"avg_security_score":25,"avg_patch_time_days":34,"trust_score":35,"computed_at":36},"lando1982",4,1000,155,69,"2026-04-05T01:20:31.581Z",[38,57,80,101,120],{"slug":39,"name":40,"version":41,"author":42,"author_profile":43,"description":44,"short_description":45,"active_installs":46,"downloaded":47,"rating":13,"num_ratings":48,"last_updated":49,"tested_up_to":50,"requires_at_least":18,"requires_php":18,"tags":51,"homepage":18,"download_link":56,"security_score":25,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28},"simple-pregnancy-calculator","Simple Pregnancy Calculator","1.1.2","giannisdallas","https:\u002F\u002Fprofiles.wordpress.org\u002Fgiannisdallas\u002F","\u003Cp>Simple Pregnancy Calculator lets you add a datepicher in the page or in the widget area of your site.\u003C\u002Fp>\n\u003Cp>The user can select a date and the calculator provides the expected delivery date.\u003C\u002Fp>\n\u003Cp>To add the calculator to a page use [simple_pregnancy_calculator]\u003Cbr \u002F>\nTo add the calculator in a sidebar use the dashboard’s Appearence -> Widgets panel\u003C\u002Fp>\n\u003Cp>\u003Cstrong>image :\u003C\u002Fstrong> The enchanted pregnancy created by nicolas-gouny-art : http:\u002F\u002Ffav.me\u002Fd1hgv6e\u003C\u002Fp>\n\u003Cp>\u003Cem>This is my first plugin so I would love to hear your feedback. Go ahead and propose ways to make this plugin even better.\u003C\u002Fem>\u003C\u002Fp>\n\u003Cp>Thank you\u003C\u002Fp>\n","Simple Pregnancy Calculator lets you add a datepicher in the page or in the widget area of your site.",40,3305,1,"2017-06-02T09:55:00.000Z","4.7.32",[52,53,54,55,23],"calculator","datepicker","pregnancy","shortcode","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsimple-pregnancy-calculator.1.1.2.zip",{"slug":58,"name":59,"version":60,"author":61,"author_profile":62,"description":63,"short_description":64,"active_installs":65,"downloaded":66,"rating":67,"num_ratings":68,"last_updated":69,"tested_up_to":70,"requires_at_least":17,"requires_php":71,"tags":72,"homepage":78,"download_link":79,"security_score":13,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28},"date-time-picker-for-contact-form-7","Date Time Picker for Contact Form 7","1.1.1","Ruhul Amin","https:\u002F\u002Fprofiles.wordpress.org\u002Fruhul080\u002F","\u003Cp>This plugin enables  Contact Form 7 text field into a Date picker, Time picker or Date Time Picker by using CSS class. After installing the plugin you just need to add the necessary CSS class to the  Contact Form 7 CSS Classes editor. If you use Multiple classes remember to separate each class with space.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Here is the classes to use in each field:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Only for Date Picker: \u003Cstrong>walcf7-datepicker\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>Only for Time Picker: \u003Cstrong>walcf7-timepicker\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>For both Date and Time Picker: \u003Cstrong>walcf7-datetimepicker\u003C\u002Fstrong>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Remember: The class should be added to [text field. Example: [text* book-date class:walcf7-datepicker placeholder “Date Picker”]\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Check the demo site:\u003C\u002Fstrong> \u003Ca href=\"https:\u002F\u002Fwpapplab.com\u002Fcontact-form-7-date-time-picker\u002F\" rel=\"nofollow ugc\">Date Time Picker Demo\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwpapplab.com\u002Fplugins\u002Fdate-time-picker-for-contact-form-7-pro\u002F\" rel=\"nofollow ugc\">Download Pro Version\u003C\u002Fa>:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Lifetime Free Update\u003C\u002Fli>\n\u003Cli>51 Language translation (\u003Ca href=\"https:\u002F\u002Fwpapplab.com\u002Fplugins\u002Fdate-time-picker-for-contact-form-7-pro\u002F#language\" rel=\"nofollow ugc\">View supported Language\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>WPML – WordPress Multilingual Plugin Compatible\u003C\u002Fli>\n\u003Cli>Light \u002F Dark Theme\u003C\u002Fli>\n\u003Cli>Disable past date selection\u003C\u002Fli>\n\u003Cli>Disable today if necessary\u003C\u002Fli>\n\u003Cli>Specify weekend and disable if necessary\u003C\u002Fli>\n\u003Cli>Disable specific date selection\u003C\u002Fli>\n\u003Cli>Specify holiday and Disable if necessary\u003C\u002Fli>\n\u003Cli>Maximum allowed date selection\u003C\u002Fli>\n\u003Cli>Minimum allowed date selection\u003C\u002Fli>\n\u003Cli>24hr \u002F 12hr time format\u003C\u002Fli>\n\u003Cli>Hide\u002FShow AM\u002FPM\u003C\u002Fli>\n\u003Cli>Change time step or interval\u003C\u002Fli>\n\u003Cli>Provide Max and Min selectable time\u003C\u002Fli>\n\u003Cli>Speed up website. Load script only at selected page\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwpapplab.com\u002Fplugins\u002Fdate-time-picker-for-contact-form-7-pro\u002F\" rel=\"nofollow ugc\">Download Pro Version from Here\u003C\u002Fa>:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>How to Video (Free):\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F782kHUkg4XM?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\n\u003Cp>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwpapplab.com\u002Fplugins\u002Fdate-time-picker-for-contact-form-7-pro\u002F\" rel=\"nofollow ugc\">Pro Version Features:\u003C\u002Fa>:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FjQbbF7Usc44?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\n\u003Cp>\u003Cstrong>Credits:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fjquery.com\u002F\" rel=\"nofollow ugc\">jQuery\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fxdsoft.net\u002Fjqplugins\u002Fdatetimepicker\u002F\" rel=\"nofollow ugc\">xdsoft.net\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n","This plugin enables Contact Form 7 text field into a Date picker, Time picker or Date Time picker by using CSS class.",30000,133255,64,20,"2025-12-07T15:25:00.000Z","6.9.4","5.6",[73,74,75,76,77],"cf7","contact-form-7","date-picker","date-time-picker","time-picker","https:\u002F\u002Fwpapplab.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdate-time-picker-for-contact-form-7.1.1.1.zip",{"slug":81,"name":82,"version":83,"author":84,"author_profile":85,"description":86,"short_description":87,"active_installs":88,"downloaded":89,"rating":90,"num_ratings":91,"last_updated":92,"tested_up_to":70,"requires_at_least":93,"requires_php":94,"tags":95,"homepage":99,"download_link":100,"security_score":13,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28},"date-time-picker-field","Availability Datepicker – Booking Calendar for Contact Form 7 – Input WP","3.0","inputwp","https:\u002F\u002Fprofiles.wordpress.org\u002Finputwp\u002F","\u003Cp>\u003Cstrong>Availability Datepicker\u003C\u002Fstrong> by \u003Ca href=\"https:\u002F\u002Fwww.inputwp.com\u002F\" rel=\"nofollow ugc\">InputWP\u003C\u002Fa> is a \u003Cstrong>booking calendar\u003C\u002Fstrong> and \u003Cstrong>date time picker\u003C\u002Fstrong> plugin that turns any text field into a smart \u003Cstrong>availability datepicker\u003C\u002Fstrong>. Define your business hours, booking type, and availability rules — the \u003Cstrong>calendar\u003C\u002Fstrong> enforces them automatically on the frontend. Works with \u003Cstrong>Contact Form 7\u003C\u002Fstrong> via a simple CSS selector, with no code required on your end.\u003C\u002Fp>\n\u003Ch4>Perfect For\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>Doctor \u002F Medical clinic\u003C\u002Fstrong> — Fixed 30-minute appointment slots, Monday–Friday, 24-hour minimum notice, 60-day booking window.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Salon & Beauty\u003C\u002Fstrong> — Fixed 60-minute sessions, Monday–Saturday, 2-hour advance notice, 30-day booking window.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Hotel \u002F Vacation Rental\u003C\u002Fstrong> — Day Based mode, check-in and check-out date selection, minimum 2-night \u002F maximum 30-night stay, 365-day booking window.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Car Rental\u003C\u002Fstrong> — Flexible Range, pickup and return with date and time, 4-hour minimum \u002F 7-day maximum, every day, 90-day booking window.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Equipment Rental\u003C\u002Fstrong> — Flexible Range, overnight to multi-day rentals, 12–72-hour duration, 60-day booking window.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Meeting Room\u003C\u002Fstrong> — Flexible 1–8-hour bookings, Monday–Friday, 15-minute buffers between slots, 30-day booking window.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>And anyone\u003C\u002Fstrong> who runs appointments, reservations, or rentals and needs to show live \u003Cstrong>availability\u003C\u002Fstrong> on their booking form.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Works with Contact Form 7\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>Availability Datepicker\u003C\u002Fstrong> integrates with \u003Cstrong>Contact Form 7\u003C\u002Fstrong> (and any other form plugin) through a CSS selector. Add a text field to your form, copy the CSS class from the Integration panel, and paste it into the field’s class setting. No shortcodes or custom code needed.\u003C\u002Fp>\n\u003Cp>Follow the step-by-step guide for \u003Ca href=\"https:\u002F\u002Fwww.inputwp.com\u002Fabout\u002Fdate-and-time-picker-field-on-contact-form-7\u002F\" rel=\"nofollow ugc\">Contact Form 7\u003C\u002Fa> or \u003Ca href=\"https:\u002F\u002Fwww.inputwp.com\u002Fabout\u002Fdate-picker-in-divi-contact-form\u002F\" rel=\"nofollow ugc\">Divi\u003C\u002Fa> to connect your \u003Cstrong>date picker field\u003C\u002Fstrong> in minutes.\u003C\u002Fp>\n\u003Ch4>Three Booking Types\u003C\u002Fh4>\n\u003Cp>Choose the booking type that matches how your business operates:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Fixed Time Slots\u003C\u002Fstrong> — Guests pick a specific time slot (e.g. 9:00 AM – 10:00 AM). Ideal for appointments, consultations, and classes. Uses a single \u003Cstrong>date and time\u003C\u002Fstrong> field.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Day Based\u003C\u002Fstrong> — Guests pick a check-in date and a check-out date. Ideal for hotels, B&Bs, and vacation rentals. Uses two separate date fields.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Flexible Range\u003C\u002Fstrong> — Guests pick a start date+time and an end date+time. Ideal for car and equipment rentals, meeting rooms, and multi-hour bookings. Uses two separate date+time fields.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Six \u003Cstrong>Quick Setup Presets\u003C\u002Fstrong> let you pre-fill all availability settings for the most common scenarios in one click.\u003C\u002Fp>\n\u003Ch4>Advanced Availability Settings\u003C\u002Fh4>\n\u003Cp>The \u003Cstrong>availability calendar\u003C\u002Fstrong> is driven by a comprehensive set of rules you configure in the admin panel:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Business Hours\u003C\u002Fstrong> — Enable or disable each weekday independently. Add multiple open time ranges per day to model morning and afternoon shifts.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Availability Window\u003C\u002Fstrong> — Control how far ahead booking is open: dynamically (X days from today) or within a fixed predefined date range.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Slot Interval\u003C\u002Fstrong> — Set the gap between available time slots: 15, 30, or 60 minutes.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Minimum Notice\u003C\u002Fstrong> — Require a minimum lead time before a slot can be booked (e.g. 24 hours in advance).\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Buffers\u003C\u002Fstrong> — Add preparation or cleanup time before and after each slot to prevent back-to-back bookings.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Min\u002FMax Bookable Days\u003C\u002Fstrong> — Set the shortest and longest allowed stay lengths (Day Based mode).\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Min\u002FMax Duration\u003C\u002Fstrong> — Set the shortest and longest allowed rental or booking period (Flexible Range mode).\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Blocked Dates\u003C\u002Fstrong> — Mark specific dates as unavailable: holidays, closures, one-off exceptions.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Allowed Date Exceptions\u003C\u002Fstrong> — Open a normally-closed date with custom hours (e.g. a special Saturday opening).\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Live Admin Preview\u003C\u002Fstrong> — See how the calendar looks with your current settings before saving.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>Date picker\u003C\u002Fstrong> — Allow users to pick a date on the availability calendar.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Time picker\u003C\u002Fstrong> — Let users choose an available time alongside the date.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Three built-in themes\u003C\u002Fstrong> — Light, and Dark.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Multiple language support\u003C\u002Fstrong> — Display the datepicker interface in 40+ languages.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Date formats\u003C\u002Fstrong> — Choose from 15+ date format options (d\u002Fm\u002FY, Y-m-d, M j Y, and more).\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Time format\u003C\u002Fstrong> — 12-hour (AM\u002FPM) or 24-hour display.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Timezone\u003C\u002Fstrong> — Configure the timezone your availability rules are based on.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Inline display\u003C\u002Fstrong> — Keep the calendar always visible on the page instead of opening as a dropdown.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Quick Setup Presets\u003C\u002Fstrong> — Six pre-configured templates (Doctor, Salon, Hotel, Car Rental, Equipment Rental, Meeting Room) to get started in seconds.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Upgrade to PRO\u003C\u002Fh4>\n\u003Cp>PRO unlocks (as shown on the Support page in the admin):\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Bookings\u003C\u002Fstrong> — Capture, manage, and block slots automatically so dates are disabled once booked.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Multiple Resources\u003C\u002Fstrong> — Custom availability rules per resource or form field.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Branding & dynamic styling\u003C\u002Fstrong> — Full control over calendar colors, fonts, and labels.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Import from .ics\u003C\u002Fstrong> — Sync Google Calendar, Outlook, and other calendar services to block busy dates.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Divi & WooCommerce integration\u003C\u002Fstrong> — Native integration with Divi and WooCommerce.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Try the \u003Ca href=\"https:\u002F\u002Fwww.inputwp.com\" rel=\"nofollow ugc\">PRO version\u003C\u002Fa> today. Have a feature request? \u003Ca href=\"https:\u002F\u002Fwww.inputwp.com\u002Fsupport\u002F\" rel=\"nofollow ugc\">Let us know\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Credits\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fxdsoft.net\u002Fjqplugins\u002Fdatetimepicker\u002F\" rel=\"nofollow ugc\">xdsoft.net datetimepicker jQuery plugin\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n","Availability datepicker & booking calendar for any form. Configure business hours, time slots, date overrides and a booking window.",20000,269490,82,42,"2026-02-27T13:42:00.000Z","6.0","7.4",[96,97,98,74,53],"availability","booking","calendar","https:\u002F\u002Finputwp.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdate-time-picker-field.3.0.zip",{"slug":102,"name":103,"version":104,"author":105,"author_profile":106,"description":107,"short_description":108,"active_installs":88,"downloaded":109,"rating":110,"num_ratings":111,"last_updated":112,"tested_up_to":70,"requires_at_least":113,"requires_php":71,"tags":114,"homepage":18,"download_link":119,"security_score":13,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28},"desert-companion","Desert Companion","1.0.96","Desert Themes","https:\u002F\u002Fprofiles.wordpress.org\u002Fdesertthemes\u002F","\u003Cp>Desert Companion Enhances \u003Ca href=\"https:\u002F\u002Fdesertthemes.com\u002F\" rel=\"nofollow ugc\">Desert Themes\u003C\u002Fa> with additional functionality.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Features:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>✅ Import Pre-made Section in 1 Click\u003Cbr \u002F>\n✅ Beautiful Section on Hompeage\u003Cbr \u002F>\n✅ Manage Font Typography\u003Cbr \u002F>\n✅ Responsive for All Devices\u003Cbr \u002F>\n✅ Background Animations\u003Cbr \u002F>\n✅ Translation Ready\u003Cbr \u002F>\n✅ Edit Content Via Live Customizer\u003Cbr \u002F>\n✅ WooCommerce Ready\u003Cbr \u002F>\n✅ SEO Optimized\u003Cbr \u002F>\n✅ Fast Performance\u003Cbr \u002F>\n✅ Highly Customizable\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Desert Companion Compatible Themes:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fatua\u002F\" rel=\"ugc\">Atua\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fatua\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fsoftme\u002F\" rel=\"ugc\">SoftMe\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fsoftme\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fcosmobit\u002F\" rel=\"ugc\">Cosmobit\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fcosmobit\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fcelexo\u002F\" rel=\"ugc\">Celexo\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fcelexo\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fchitvi\u002F\" rel=\"ugc\">Chitvi\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fchitvi\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fflexora\u002F\" rel=\"ugc\">Flexora\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fflexora\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fthinity\u002F\" rel=\"ugc\">Thinity\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fthinity\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Feasywiz\u002F\" rel=\"ugc\">EasyWiz\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Feasywiz\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Flazypress\u002F\" rel=\"ugc\">LazyPress\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Flazypress\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Ffastica\u002F\" rel=\"ugc\">Fastica\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Ffastica\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fflexeo\u002F\" rel=\"ugc\">Flexeo\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fflexeo\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Faltra\u002F\" rel=\"ugc\">Altra\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Faltra\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Favvy\u002F\" rel=\"ugc\">Avvy\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Favvy\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fatus\u002F\" rel=\"ugc\">Atus\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fatus\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fflexea\u002F\" rel=\"ugc\">Flexea\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fflexea\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Farvana\u002F\" rel=\"ugc\">Arvana\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Farvana\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fauru\u002F\" rel=\"ugc\">Auru\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fauru\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fsoftinn\u002F\" rel=\"ugc\">Softinn\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fsoftinn\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fcozysoft\u002F\" rel=\"ugc\">CozySoft\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fcozysoft\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fcaresoft\u002F\" rel=\"ugc\">CareSoft\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fcaresoft\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fsuntech\u002F\" rel=\"ugc\">Suntech\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Ffree\u002Fsuntech\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fnewsmash\u002F\" rel=\"ugc\">NewsMash\u003C\u002Fa> – \u003Ca href=\"https:\u002F\u002Fpreview.desertthemes.com\u002Fnewsmash\u002F\" rel=\"nofollow ugc\">Free Demo\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>License\u003C\u002Fh3>\n\u003Cp>Desert Companion WordPress plugin, Copyright (C) 2022 Desert Themes\u003Cbr \u002F>\nDesert Companion WordPress plugin is licensed under the GPL3 (https:\u002F\u002Fwww.gnu.org\u002Flicenses\u002Fgpl-3.0.en.html).\u003C\u002Fp>\n\u003Ch3>Credits\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\n\u003Cp>Demo Import\u003Cbr \u002F>\nThe Demo Import Code is based on the Ansar Import plugin (https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fansar-import), created by themeansar.com\u003Cbr \u002F>\nLicenses – GPLv3 or later (https:\u002F\u002Fwww.gnu.org\u002Flicenses\u002Fgpl-3.0.html)\u003Cbr \u002F>\nSource: https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fansar-import\u002F\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>UIkit\u003Cbr \u002F>\nLicenses – https:\u002F\u002Fgithub.com\u002Fuikit\u002Fuikit\u002Fblob\u002Fdevelop\u002FLICENSE.md\u003Cbr \u002F>\nSource: https:\u002F\u002Fwww.getuikit.com\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n","Desert Companion Enhances Desert Themes with additional functionality.",483895,74,3,"2026-03-11T08:42:00.000Z","4.6",[20,115,116,117,118],"companion","homepage","projects","widgets","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdesert-companion.1.0.96.zip",{"slug":121,"name":122,"version":123,"author":124,"author_profile":125,"description":126,"short_description":127,"active_installs":88,"downloaded":128,"rating":129,"num_ratings":130,"last_updated":131,"tested_up_to":132,"requires_at_least":133,"requires_php":94,"tags":134,"homepage":139,"download_link":140,"security_score":141,"vuln_count":48,"unpatched_count":26,"last_vuln_date":142,"fetched_at":28},"error-log-monitor","Error Log Monitor","1.7.12","Janis Elsts","https:\u002F\u002Fprofiles.wordpress.org\u002Fwhiteshadow\u002F","\u003Cp>This plugin adds a Dashboard widget that displays the latest messages from your PHP error log. It can also send you email notifications about newly logged errors.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Features\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Automatically detects error log location.\u003C\u002Fli>\n\u003Cli>Explains how to configure PHP error logging if it’s not enabled yet.\u003C\u002Fli>\n\u003Cli>The number of displayed log entries is configurable.\u003C\u002Fli>\n\u003Cli>Sends you email notifications about logged errors (optional).\u003C\u002Fli>\n\u003Cli>Configurable email address and frequency.\u003C\u002Fli>\n\u003Cli>You can easily clear the log file.\u003C\u002Fli>\n\u003Cli>The dashboard widget is only visible to administrators.\u003C\u002Fli>\n\u003Cli>Optimized to work well even with very large log files.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Usage\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Once you’ve installed the plugin, go to the Dashboard and enable the “PHP Error Log” widget through the “Screen Options” panel. The widget should automatically display the last 20 lines from your PHP error log. If you see an error message like “Error logging is disabled” instead, follow the displayed instructions to configure error logging.\u003C\u002Fp>\n\u003Cp>Email notifications are disabled by default. To enable them, click the “Configure” link in the top-right corner of the widget and enter your email address in the “Periodically email logged errors to:” box. If desired, you can also change email frequency by selecting the minimum time interval between emails from the “How often to send email” drop-down.\u003C\u002Fp>\n","Adds a Dashboard widget that displays the latest messages from your PHP error log. It can also send logged errors to email.",631204,86,48,"2025-10-01T15:12:00.000Z","6.8.5","4.5",[20,135,136,137,138],"administration","dashboard-widget","error-reporting","php","http:\u002F\u002Fw-shadow.com\u002Fblog\u002F2012\u002F07\u002F25\u002Ferror-log-monitor-plugin\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ferror-log-monitor.1.7.12.zip",99,"2019-02-25 00:00:00",{"attackSurface":144,"codeSignals":203,"taintFlows":285,"riskAssessment":311,"analyzedAt":323},{"hooks":145,"ajaxHandlers":191,"restRoutes":200,"shortcodes":201,"cronEvents":202,"entryPointCount":14,"unprotectedCount":14},[146,152,155,158,161,166,170,175,179,183,187],{"type":147,"name":148,"callback":149,"file":150,"line":151},"action","save_post","flush_widget_cache","includes\\abstracts\\abstract-picker-widget.php",87,{"type":147,"name":153,"callback":149,"file":150,"line":154},"deleted_post",88,{"type":147,"name":156,"callback":149,"file":150,"line":157},"publish_future_post",89,{"type":147,"name":159,"callback":149,"file":150,"line":160},"switch_theme",90,{"type":147,"name":162,"callback":163,"file":164,"line":165},"admin_init","picker_admin_init","includes\\admin\\class-picker-admin.php",33,{"type":147,"name":167,"callback":168,"file":164,"line":169},"admin_menu","picker_admin_page",34,{"type":147,"name":171,"callback":172,"file":173,"line":174},"wp_print_styles","picker_add_frontend_styles","includes\\settings.php",22,{"type":147,"name":176,"callback":177,"file":173,"line":178},"admin_print_styles","picker_add_admin_styles",25,{"type":147,"name":180,"callback":181,"file":173,"line":182},"admin_print_scripts","picker_add_admin_scripts",28,{"type":147,"name":184,"callback":184,"priority":26,"file":185,"line":186},"init","picker.php",105,{"type":147,"name":188,"callback":189,"file":185,"line":190},"widgets_init","include_widgets",106,[192,197],{"action":193,"nopriv":194,"callback":193,"hasNonce":194,"hasCapCheck":194,"file":195,"line":196},"picker_suggest_lookup",false,"includes\\core.php",139,{"action":193,"nopriv":198,"callback":193,"hasNonce":194,"hasCapCheck":194,"file":195,"line":199},true,140,[],[],[],{"dangerousFunctions":204,"sqlUsage":205,"outputEscaping":208,"fileOperations":26,"externalRequests":26,"nonceChecks":26,"capabilityChecks":26,"bundledLibraries":284},[],{"prepared":206,"raw":26,"locations":207},16,[],{"escaped":209,"rawEcho":210,"locations":211},45,47,[212,215,216,218,219,221,222,224,225,226,228,229,231,232,233,235,236,238,239,241,242,244,245,247,248,250,251,253,255,256,258,259,261,262,264,265,267,268,269,271,274,275,278,279,280,281,283],{"file":150,"line":213,"context":214},230,"raw output",{"file":150,"line":213,"context":214},{"file":150,"line":217,"context":214},231,{"file":150,"line":217,"context":214},{"file":150,"line":220,"context":214},239,{"file":150,"line":220,"context":214},{"file":150,"line":223,"context":214},240,{"file":150,"line":223,"context":214},{"file":150,"line":223,"context":214},{"file":150,"line":227,"context":214},248,{"file":150,"line":227,"context":214},{"file":150,"line":230,"context":214},249,{"file":150,"line":230,"context":214},{"file":150,"line":230,"context":214},{"file":150,"line":234,"context":214},257,{"file":150,"line":234,"context":214},{"file":150,"line":237,"context":214},258,{"file":150,"line":237,"context":214},{"file":150,"line":240,"context":214},266,{"file":150,"line":240,"context":214},{"file":150,"line":243,"context":214},267,{"file":150,"line":243,"context":214},{"file":150,"line":246,"context":214},275,{"file":150,"line":246,"context":214},{"file":150,"line":249,"context":214},276,{"file":150,"line":249,"context":214},{"file":150,"line":252,"context":214},288,{"file":150,"line":254,"context":214},289,{"file":150,"line":254,"context":214},{"file":150,"line":257,"context":214},297,{"file":150,"line":257,"context":214},{"file":150,"line":260,"context":214},298,{"file":150,"line":260,"context":214},{"file":150,"line":263,"context":214},306,{"file":150,"line":263,"context":214},{"file":150,"line":266,"context":214},307,{"file":150,"line":266,"context":214},{"file":164,"line":110,"context":214},{"file":195,"line":270,"context":214},136,{"file":272,"line":273,"context":214},"includes\\widgets\\class-picker-widget-default.php",172,{"file":272,"line":252,"context":214},{"file":276,"line":277,"context":214},"templates\\picker-widget-default.php",15,{"file":276,"line":277,"context":214},{"file":276,"line":206,"context":214},{"file":276,"line":174,"context":214},{"file":276,"line":282,"context":214},26,{"file":276,"line":182,"context":214},[],[286,302],{"entryPoint":287,"graph":288,"unsanitizedCount":48,"severity":301},"picker_suggest_lookup (includes\\core.php:100)",{"nodes":289,"edges":299},[290,294],{"id":291,"type":292,"label":293,"file":195,"line":270},"n0","source","$_GET['callback']",{"id":295,"type":296,"label":297,"file":195,"line":270,"wp_function":298},"n1","sink","echo() [XSS]","echo",[300],{"from":291,"to":295,"sanitized":194},"medium",{"entryPoint":303,"graph":304,"unsanitizedCount":48,"severity":310},"\u003Ccore> (includes\\core.php:0)",{"nodes":305,"edges":308},[306,307],{"id":291,"type":292,"label":293,"file":195,"line":270},{"id":295,"type":296,"label":297,"file":195,"line":270,"wp_function":298},[309],{"from":291,"to":295,"sanitized":194},"low",{"summary":312,"deductions":313},"The \"picker\" plugin v1.1.6 presents a mixed security posture. While the plugin demonstrates good practices in its handling of SQL queries, utilizing prepared statements exclusively, and has no recorded vulnerability history, significant concerns arise from its attack surface and output escaping. The presence of two AJAX handlers with no authentication checks creates a considerable risk, as these entry points are open to unauthorized access and potential manipulation. The taint analysis indicates two flows with unsanitized paths, which, although not flagged as critical or high severity in this analysis, warrant attention. The low percentage of properly escaped output (49%) is another major concern, suggesting a high likelihood of cross-site scripting (XSS) vulnerabilities.  In conclusion, the plugin's lack of vulnerability history and secure SQL practices are positive, but the unprotected AJAX endpoints and widespread unescaped output expose it to significant risks.",[314,316,319,321],{"reason":315,"points":11},"AJAX handlers without auth checks",{"reason":317,"points":318},"Unsanitized paths in taint analysis",8,{"reason":320,"points":277},"Low percentage of properly escaped output",{"reason":322,"points":11},"No nonce checks on AJAX handlers","2026-03-17T01:45:40.913Z",{"wat":325,"direct":334},{"assetPaths":326,"generatorPatterns":329,"scriptPaths":330,"versionParams":331},[327,328],"\u002Fwp-content\u002Fplugins\u002Fpicker\u002Fassets\u002Fcss\u002Fpicker.css","\u002Fwp-content\u002Fplugins\u002Fpicker\u002Fassets\u002Fjs\u002Fpicker.js",[],[328],[332,333],"picker\u002Fassets\u002Fcss\u002Fpicker.css?ver=","picker\u002Fassets\u002Fjs\u002Fpicker.js?ver=",{"cssClasses":335,"htmlComments":337,"htmlAttributes":338,"restEndpoints":340,"jsGlobals":341,"shortcodeOutput":342},[336],"picker-widget",[],[339],"data-pkr-value",[],[5],[]]