[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$f-OXZzSm75w0o6az4mqBu0vLk3nhZ3RbzEW4Ik-mr_mg":3},{"slug":4,"display_name":5,"profile_url":6,"plugin_count":7,"total_installs":8,"avg_security_score":9,"avg_patch_time_days":10,"trust_score":11,"computed_at":12,"plugins":13},"mattgeri","MattGeri","https:\u002F\u002Fprofiles.wordpress.org\u002Fmattgeri\u002F",2,2010,85,30,84,"2026-04-04T21:35:32.000Z",[14,39],{"slug":15,"name":16,"version":17,"author":5,"author_profile":6,"description":18,"short_description":19,"active_installs":20,"downloaded":21,"rating":22,"num_ratings":23,"last_updated":24,"tested_up_to":25,"requires_at_least":26,"requires_php":27,"tags":28,"homepage":34,"download_link":35,"security_score":9,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"wp-most-popular","WP Most Popular","0.3.1","\u003Cp>WP Most Popular was born out of frustration in finding a decent plugin which performs one simple task and that is to rank your most popular blog posts.\u003C\u002Fp>\n\u003Cp>The plugin keeps a log of your most popular posts based on views and lets you display them in your blog theme with custom styling. You can display popular posts from the last day, 7 days, 30 days or all time.\u003C\u002Fp>\n\u003Cp>It also comes with a sidebar widget to let you display your popular posts on your blogs sidebar.\u003C\u002Fp>\n\u003Cp>If you are a developer and integrate the plugin in to a theme, you will get a lot more flexibility out of the plugin including the ability to show the most popular custom post types etc.\u003C\u002Fp>\n\u003Cp>This plugin was built and is maintained by \u003Ca href=\"https:\u002F\u002Fwpgeeks.com\" rel=\"nofollow ugc\">WP Geeks\u003C\u002Fa>. For extra documentation, videos, snippets and support, visit the \u003Ca href=\"https:\u002F\u002Fwpgeeks.com\u002Fproduct\u002Fwp-most-popular\u002F\" rel=\"nofollow ugc\">WP Most Popular\u003C\u002Fa> product page.\u003C\u002Fp>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Cp>There are two ways in which you can use this plugin.\u003C\u002Fp>\n\u003Col>\n\u003Cli>As a sidebar widget\u003C\u002Fli>\n\u003Cli>Custom function in your theme files\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>Using the widget is the easiest way and recommended for most users. If you are a developer and want to integrate the plugin in to your existing theme, then read the information below.\u003C\u002Fp>\n\u003Cp>Firstly, the main function which you will need to include in your theme to fetch the popular posts is called \u003Ccode>wp_most_popular_get_popular()\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Cp>You can pass that function the following parameters in array form:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>limit\u003C\u002Fstrong> (integer)\n\u003Cul>\n\u003Cli>The number of posts you would like to display i.e. 5\u003C\u002Fli>\n\u003Cli>Default: 5\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\u003Cstrong>post_type\u003C\u002Fstrong> (string) \u002F (array)\n\u003Cul>\n\u003Cli>The post type you would like to display\u003C\u002Fli>\n\u003Cli>Example: post\u003C\u002Fli>\n\u003Cli>Default: All post types\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\u003Cstrong>range\u003C\u002Fstrong> (string)\n\u003Cul>\n\u003Cli>In what date range would you like to display popular posts in\u003C\u002Fli>\n\u003Cli>Accepted: all_time, monthly, weekly, daily\u003C\u002Fli>\n\u003Cli>Default: all_time\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Those are the current parameters that the plugin supports. Let’s look at an example of how to display the most recent popular posts in a unordered list.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\necho '\u003Cul>';\n$posts = wp_most_popular_get_popular( array( 'limit' => 10, 'post_type' => 'post', 'range' => 'all_time' ) );\nglobal $post;\nif ( count( $posts ) > 0 ): foreach ( $posts as $post ):\n    setup_postdata( $post );\n    ?>\n    \u003Cli>\u003Ca href=\"\u003C?php the_permalink() ?>\" title=\"\u003C?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>\">\u003C?php if ( get_the_title() ) the_title(); else the_ID(); ?>\u003C\u002Fa>\u003C\u002Fli>\n    \u003C?php\nendforeach; endif;\necho '\u003C\u002Ful>';\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Filters\u003C\u002Fh4>\n\u003Cp>The following filters are available to you:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>wp_most_popular_list_before\u003C\u002Fstrong> – used to filter the \u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cul> element of the outputted widget list\u003Cbr \u002F>\n* **wp_most_popular_list_after** – used to filter the \u003C\u002Ful>\n\u003Cp>element of the outputted widget list\u003Cbr \u002F>\n* \u003Cstrong>wp_most_popular_list_item_single\u003C\u002Fstrong> – filters for a the list item generated by the widget\u003C\u002Fp>\n\u003Ch4>Actions\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>wp_most_popular_list_item\u003C\u002Fstrong> – used for modifying the list output\u003C\u002Fli>\n\u003C\u002Ful>\n","WP Most Popular is a simple plugin which tracks your most popular blog posts based on views and lets you display them in your theme or blog sidebar.",2000,80861,98,11,"2018-08-07T11:57:00.000Z","4.9.29","3.0","5.2.4",[29,30,31,32,33],"most-viewed-posts","most-viewed","popular","popular-posts","popular-posts-widget","https:\u002F\u002Fwpgeeks.com\u002Fproduct\u002Fwp-most-popular\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-most-popular.0.3.1.zip",0,null,"2026-03-15T15:16:48.613Z",{"slug":40,"name":41,"version":42,"author":5,"author_profile":6,"description":43,"short_description":44,"active_installs":45,"downloaded":46,"rating":36,"num_ratings":36,"last_updated":47,"tested_up_to":48,"requires_at_least":49,"requires_php":50,"tags":51,"homepage":57,"download_link":58,"security_score":9,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"watchtower","Watchtower","0.2","\u003Cp>Watchtower is a plugin that monitors your WordPress website and alerts you of any issues that show up unexpectedly. Think of it as your WordPress guardian angel.\u003C\u002Fp>\n\u003Cp>While we’re still quite fresh, we’re constantly growing and expanding the features of the plugin. We currently support uptime monitoring, performance auditing\u002Ftracking and alerts\u002Fnotifications.\u003C\u002Fp>\n\u003Cp>Watchtower is free but there is a \u003Ca href=\"https:\u002F\u002Fusewatchtower.com\" rel=\"nofollow ugc\">Pro plan\u003C\u002Fa> which allows you to super charge the features of the plugin to include things such as SMS sending and faster alert\u002Faudit times.\u003C\u002Fp>\n\u003Ch4>Uptime Monitoring\u003C\u002Fh4>\n\u003Cp>Watchtower notifies you when your WordPress website is down. Once connected, we’ll constantly ping your WordPress website and notify when it is unavailable or returning an error.\u003C\u002Fp>\n\u003Ch4>Performance Monitoring\u003C\u002Fh4>\n\u003Cp>Performance can the difference between a user continuing to browse your website and clicking the close tab button. It also helps you rank better in the search engines and improve your SEO. Watchtower lets you know exactly where you stand in terms of performance.\u003C\u002Fp>\n\u003Ch4>Web Vitals\u003C\u002Fh4>\n\u003Cp>Our performance metrics are powered by Web Vitals by Google. Google has developed key metrics around performance of websites called \u003Ca href=\"https:\u002F\u002Fweb.dev\u002Fvitals\u002F\" rel=\"nofollow ugc\">Web Vitals\u003C\u002Fa>. We track these metrics on an ongoing basis and report the results back to you.\u003C\u002Fp>\n\u003Ch4>Notifications\u003C\u002Fh4>\n\u003Cp>Configuring notifications is easy in Watchtower. Add as many email, SMS or Whatsapp contacts as you’d like and they’ll all receive alerts when activated.\u003C\u002Fp>\n\u003Ch4>Reporting\u003C\u002Fh4>\n\u003Cp>Watchtower reports on uptime issues and performance directly from your WordPress dashboard. You’ll be able to check your stats over a given time period and see a list of alerts that have been sent.\u003C\u002Fp>\n\u003Ch4>Pro Plan\u003C\u002Fh4>\n\u003Cp>As mentioned, Watchtower is free. If you’d like faster alerting, SMS alerts and other more advanced features you can upgrade your account. Check out the \u003Ca href=\"https:\u002F\u002Fusewatchtower.com\" rel=\"nofollow ugc\">Watchtower\u003C\u002Fa> website to see the Pro features that are available and the pricing.\u003C\u002Fp>\n\u003Ch4>Icon Credit\u003C\u002Fh4>\n\u003Cp>The Watchtower icon was created by \u003Ca href=\"https:\u002F\u002Fwww.flaticon.com\u002Fauthors\u002Ffreepik\u002F\" rel=\"nofollow ugc\">Freepik\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fwww.flaticon.com\u002F\" rel=\"nofollow ugc\">www.flaticon.com\u003C\u002Fa>\u003C\u002Fp>\n","Uptime and performance auditing, monitoring and alerting for WordPress.",10,1105,"2020-05-28T19:01:00.000Z","5.4.19","5.0","5.6",[52,53,54,55,56],"audit","auditing","monitor","monitoring","wordpress-monitoring","https:\u002F\u002Fusewatchtower.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwatchtower.0.2.zip"]