[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$f2j9wno1al_O2gF1LX-estgkmi0Kx2hRyhBfNekIDlIY":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},"thapalaxman","thapa.laxman","https:\u002F\u002Fprofiles.wordpress.org\u002Fthapalaxman\u002F",3,410,85,30,84,"2026-04-04T02:50:45.052Z",[14,35,52],{"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":7,"last_updated":23,"tested_up_to":24,"requires_at_least":25,"requires_php":26,"tags":27,"homepage":26,"download_link":31,"security_score":9,"vuln_count":32,"unpatched_count":32,"last_vuln_date":33,"fetched_at":34},"disable-feeds-and-hide-usernames","Disable Feeds And Hide Usernames","1.1","\u003Ch3>Disable Feeds And Hide Usernames\u003C\u002Fh3>\n\u003Cp>removes the rss feeds like below. For a simple CMS site it is not required.\u003Cbr \u002F>\n* http:\u002F\u002Fexample.com\u002Ffeed\u002F\u003Cbr \u002F>\n* http:\u002F\u002Fexample.com\u002Ffeed\u002Frss\u002F\u003Cbr \u002F>\n* http:\u002F\u002Fexample.com\u002Ffeed\u002Frss2\u002F\u003Cbr \u002F>\n* http:\u002F\u002Fexample.com\u002Ffeed\u002Frdf\u002F\u003Cbr \u002F>\n* http:\u002F\u002Fexample.com\u002Ffeed\u002Fatom\u002F\u003C\u002Fp>\n\u003Ch4>Why Hide WordPress Usernames\u003C\u002Fh4>\n\u003Cp>WordPress usernames can easily be guessed. If guessed it makes the attackers’ life easier especially in case of a targeted WordPress hack attack. Attackers can use a tool such as WPScan to guess your WordPress username or simply by entering a URL such as the following:\u003C\u002Fp>\n\u003Cp>http:\u002F\u002Fwww.example.com\u002F?author=1\u003C\u002Fp>\n\u003Cp>If the author ID is valid then they will be redirected to the author URL, for example:\u003C\u002Fp>\n\u003Cp>http:\u002F\u002Fwww.example.com\u002Fauthor\u002Fadmin\u003C\u002Fp>\n\u003Cp>The above is possible even when you change the WordPress user IDs. For example if you changed the user ID to 1000, then by requesting the URL http:\u002F\u002Fwww.example.com\u002F?author=1000 the attacker can guess the username. This means that you would be delaying the guessing attack but not completely eliminating it.\u003C\u002Fp>\n\u003Cp>WordPress usernames can also be found in the source of rss feeds.\u003C\u002Fp>\n\u003Ch3>Disable Feeds And Hide Usernames\u003C\u002Fh3>\n\u003Cp>hides the usernames to make it harder for the attacker.\u003C\u002Fp>\n","This tiny and lightweight plugin removes all the rss feeds  and hides usernames.",300,4097,80,"2018-12-28T09:37:00.000Z","5.0.25","3.0.1","",[28,29,30],"disable-feeds","hide-username","remove-rss","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdisable-feeds-and-hide-usernames.1.2.zip",0,null,"2026-03-15T15:16:48.613Z",{"slug":36,"name":37,"version":38,"author":5,"author_profile":6,"description":39,"short_description":40,"active_installs":41,"downloaded":42,"rating":11,"num_ratings":43,"last_updated":44,"tested_up_to":45,"requires_at_least":25,"requires_php":26,"tags":46,"homepage":50,"download_link":51,"security_score":9,"vuln_count":32,"unpatched_count":32,"last_vuln_date":33,"fetched_at":34},"featured-posts-pro","Featured Posts Pro","1.4","\u003Ch3>Featured Posts Pro\u003C\u002Fh3>\n\u003Cp>allows administrator and editor an option to set posts, pages & custom posts as a featured posts very easily. Posts, pages & custom posts can be set as featured posts using a checkbox on the posts list page or on the edit page of the post. Please see screenshots to be more clear.\u003C\u002Fp>\n\u003Ch3>Featured Posts Pro\u003C\u002Fh3>\n\u003Cp>also adds a widget that will list the recent featured posts. This is similar to the default recent posts widget except this widget displays recent featured posts instead. The template for the \u003Cstrong>Featured Posts Pro Widget\u003C\u002Fstrong> can be customized with your theme.\u003C\u002Fp>\n\u003Ch3>How to use in the theme\u003C\u002Fh3>\n\u003Cp>You can to get the featured posts, you need to make a custom query as follows\u003C\u002Fp>\n\u003Ch3>sample code to get the featured posts with orders\u003C\u002Fh3>\n\u003Cp>`$args = array(\u003Cbr \u002F>\n            ‘post_type’ => ‘any’,\u003Cbr \u002F>\n            ‘posts_per_page’      => 10,\u003Cbr \u002F>\n            ‘no_found_rows’       => true,\u003Cbr \u002F>\n            ‘post_status’         => ‘publish’,\u003Cbr \u002F>\n            ‘ignore_sticky_posts’ => true,\u003Cbr \u002F>\n            ‘meta_query’ => array(\u003Cbr \u002F>\n                array(\u003Cbr \u002F>\n                    ‘relation’ => ‘OR’,\u003Cbr \u002F>\n                    array(\u003Cbr \u002F>\n                        ‘key’ => ‘post_featured_position’,\u003Cbr \u002F>\n                        ‘compare’ => ‘EXISTS’\u003Cbr \u002F>\n                    ),\u003Cbr \u002F>\n                    array(\u003Cbr \u002F>\n                        ‘key’ => ‘post_featured_position’,\u003Cbr \u002F>\n                        ‘compare’ => ‘NOT EXISTS’\u003Cbr \u002F>\n                    ),\u003Cbr \u002F>\n                ),\u003Cbr \u002F>\n                array(\u003Cbr \u002F>\n                    ‘relation’ => ‘AND’,\u003Cbr \u002F>\n                    ‘key’ => ‘is_post_featured’,\u003Cbr \u002F>\n                    ‘compare’ => ‘=’,\u003Cbr \u002F>\n                    ‘value’ => 1\u003Cbr \u002F>\n                )\u003Cbr \u002F>\n            ),\u003Cbr \u002F>\n            ‘orderby’ => ‘meta_value_num’,\u003Cbr \u002F>\n            ‘order’ => ‘ASC’,\u003Cbr \u002F>\n        ) ;\u003C\u002Fp>\n\u003Cp>$featuredPosts = new WP_Query( $args );\u003Ccode>\u003Ch3>sample code to get the featured posts without order\u003C\u002Fh3>\u003C\u002Fcode>$args = array(\u003Cbr \u002F>\n    ‘posts_per_page’      => 10,\u003Cbr \u002F>\n    ‘no_found_rows’       => true,\u003Cbr \u002F>\n    ‘post_status’         => ‘publish’,\u003Cbr \u002F>\n    ‘ignore_sticky_posts’ => true,\u003Cbr \u002F>\n    ‘meta_key’            => ‘is_post_featured’ \u002F\u002Fthis is the meta key used for the featured posts\u003Cbr \u002F>\n) ;\u003C\u002Fp>\n\u003Cp>$featuredPosts = new WP_Query( $args );`\u003C\u002Fp>\n\u003Cp>or if you simple want tp\u003C\u002Fp>\n\u003Ch3>How to customize the widget\u003C\u002Fh3>\n\u003Cp>You can customize the widget template as follows:\u003Cbr \u002F>\n1. create a folder ‘featured_posts_pro_tpls’ inside your theme folder\u003Cbr \u002F>\n2. create two php files named as ‘tpl_featured_posts_pro_large.php’ & ‘tpl_featured_posts_pro_small.php’ in the ‘featured_posts_pro_tpls’ folder you just created\u003Cbr \u002F>\n3. template file ‘tpl_featured_posts_pro_large.php’ will be used to render the widget when widget size is selected as large & similarly ‘tpl_featured_posts_pro_small.php’ is for small widget size\u003Cbr \u002F>\n3. copy and paste the content from plugin_fold er > featured-posts-pro > public > partials > featured_posts_pro-widget.php in the above two files\u003Cbr \u002F>\n4. make the layout changes as you wish.\u003C\u002Fp>\n","This plugin gives Administrator\u002FEditor an easy option to mark posts, pages & custom posts as featured posts and provides a widget to list the rece &hellip;",100,4126,5,"2019-04-04T07:05:00.000Z","5.1.22",[47,48,49],"featured","featured-post-widget","featured-posts","http:\u002F\u002Flakshman.com.np","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffeatured-posts-pro.1.4.zip",{"slug":53,"name":54,"version":55,"author":5,"author_profile":6,"description":56,"short_description":57,"active_installs":58,"downloaded":59,"rating":32,"num_ratings":32,"last_updated":60,"tested_up_to":61,"requires_at_least":62,"requires_php":26,"tags":63,"homepage":26,"download_link":65,"security_score":9,"vuln_count":32,"unpatched_count":32,"last_vuln_date":33,"fetched_at":34},"automatic-updates","Automatic Updates","1.3.3","\u003Ch3>Automatic Updates\u003C\u002Fh3>\n\u003Cp>allows admin to manage the automatic updates of the core wordpress and the plugins.\u003Cbr \u002F>\nThe plugin will also allow admin to toggle email notifications with wordpress updates.\u003C\u002Fp>\n","Automatic Updates allows admin to manage the automatic updates of the core wordpress and the plugins. The plugins also disables core update email noti &hellip;",10,1619,"2019-09-23T10:57:00.000Z","5.2.24","4.0.0",[53,64],"update-plugins","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fautomatic-updates.1.3.3.zip"]