[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fwXbH4UcIUqYTf8JYJZMcTNPZvFwz2oJudB7mQQ_p9Mg":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":23,"download_link":24,"security_score":25,"vuln_count":26,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29,"vulnerabilities":30,"developer":46,"crawl_stats":36,"alternatives":54,"analysis":146,"fingerprints":177},"list-categories","List categories","0.5","Fernando Briano","https:\u002F\u002Fprofiles.wordpress.org\u002Ffernandobt\u002F","\u003Cp>Simple plugin to display categories in any post or page with a shortcode. It’s basically a shortcode API interface to the \u003Ca href=\"https:\u002F\u002Fdeveloper.wordpress.org\u002Freference\u002Ffunctions\u002Fwp_list_categories\u002F\" rel=\"nofollow ugc\">wp_list_categories\u003C\u002Fa> WordPress function. This means given any of the \u003Ca href=\"https:\u002F\u002Fdeveloper.wordpress.org\u002Freference\u002Ffunctions\u002Fwp_list_categories\u002F#parameters\" rel=\"nofollow ugc\">parameters\u003C\u002Fa> accepted by the function, you can pass it in as a shortcode parameter to the \u003Ccode>categories\u003C\u002Fcode> shortcode.\u003C\u002Fp>\n\u003Cp>Usage:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[categories orderby=count]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Will display links to all the categories and order them by number of posts in each category.\u003C\u002Fp>\n\u003Cp>You can also \u003Cstrong>list tags\u003C\u002Fstrong> or any other WordPress taxonomy. You need to pass a value to the \u003Ccode>taxonomy\u003C\u002Fcode> parameter. For example to list tags: \u003Ccode>[categories taxonomy=post_tag title_li=\"Tags\"]\u003C\u002Fcode>.\u003Cbr \u002F>\nBy default, the usage shows:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>No link to all categories\u003C\u002Fli>\n\u003Cli>Sorts the list of Categories by the Category name in ascending order\u003C\u002Fli>\n\u003Cli>Displayed in an unordered list style\u003C\u002Fli>\n\u003Cli>Does not show the post count\u003C\u002Fli>\n\u003Cli>Displays only Categories with posts\u003C\u002Fli>\n\u003Cli>Sets the title attribute to the Category Description\u003C\u002Fli>\n\u003Cli>Is not restricted to the child_of any Category\u003C\u002Fli>\n\u003Cli>No feed or feed image used\u003C\u002Fli>\n\u003Cli>Does not exclude any Category and includes all Categories\u003C\u002Fli>\n\u003Cli>Displays the active Category with the CSS Class-Suffix ‘ current-cat’\u003C\u002Fli>\n\u003Cli>Shows the Categories in hierarchical indented fashion\u003C\u002Fli>\n\u003Cli>Display Category as the heading over the list\u003C\u002Fli>\n\u003Cli>No SQL LIMIT is imposed (‘number’ => 0 is not shown above)\u003C\u002Fli>\n\u003Cli>Displays (echos) the categories\u003C\u002Fli>\n\u003Cli>No limit to depth\u003C\u002Fli>\n\u003Cli>All categories.\u003C\u002Fli>\n\u003Cli>The list is rendered using a new walker object of the the Walker_Category class\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>See \u003Ca href=\"https:\u002F\u002Fdeveloper.wordpress.org\u002Freference\u002Ffunctions\u002Fwp_list_categories\u002F\" rel=\"nofollow ugc\">wp_list_categories\u003C\u002Fa> for usage.\u003C\u002Fp>\n\u003Ch3>Markup and Styling of Category Lists\u003C\u002Fh3>\n\u003Cp>Taken from the \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FTemplate_Tags\u002Fwp_list_categories#Markup_and_Styling_of_Category_Lists\" rel=\"nofollow ugc\">wp_list_categories official documentation\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>By default, wp_list_categories() generates nested unordered lists (ul) within a single list item (li) titled “Categories”.\u003C\u002Fp>\n\u003Cp>You can remove the outermost item and list by setting the title_li parameter to an empty string. You’ll need to wrap the output in an ordered list (ol) or unordered list yourself (see the examples above). If you don’t want list output at all, set the style parameter to none.\u003C\u002Fp>\n\u003Cp>You can style the output with these CSS selectors :\u003C\u002Fp>\n\u003Cpre>\u003Ccode>li.categories { ... }  \u002F* outermost list item *\u002F\nli.cat-item { ... }\nli.cat-item-7 { ... }  \u002F* category ID #7, etc *\u002F\nli.current-cat { ... }\nli.current-cat-parent { ... }\nul.children { ... }\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>For instance, you can remove the bullet points next to each category with:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>.cat-item {\n  list-style-type: none\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch3>Show categories list in columns\u003C\u002Fh3>\n\u003Cp>For outputting the list into columns, you can use \u003Ca href=\"https:\u002F\u002Fwww.w3.org\u002FTR\u002Fcss-multicol-1\u002F\" rel=\"nofollow ugc\">CSS’s multicolumns\u003C\u002Fa>. Since by default the list is printed as an unordered list with the “categories” class, you can add this to your CSS:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>.categories{\n    column-count: 5;\n    column-gap: 50px;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Simple plugin to display categories in any post or page with a shortcode.",6000,75127,90,15,"2025-05-15T13:05:00.000Z","6.8.5","3.3","",[20,21,22],"categories","cms","list","https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Categories","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Flist-categories.0.5.zip",99,1,0,"2024-05-29 15:51:10","2026-03-15T15:16:48.613Z",[31],{"id":32,"url_slug":33,"title":34,"description":35,"plugin_slug":4,"theme_slug":36,"affected_versions":37,"patched_in_version":6,"severity":38,"cvss_score":39,"cvss_vector":40,"vuln_type":41,"published_date":28,"updated_date":42,"references":43,"days_to_patch":45},"CVE-2024-4356","list-categories-authenticated-contributor-stored-cross-site-scripting-via-shortcode","List categories \u003C= 0.4 - Authenticated (Contributor+) Stored Cross-Site Scripting via Shortcode","The List categories plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the plugin's 'categories' shortcode in all versions up to, and including, 0.4 due to insufficient input sanitization and output escaping on user supplied attributes. This makes it possible for authenticated attackers, with contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.",null,"\u003C=0.4","medium",6.4,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:L\u002FUI:N\u002FS:C\u002FC:L\u002FI:L\u002FA:N","Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')","2024-06-05 13:44:55",[44],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F8e24306a-b741-4840-b238-e37138425bf8?source=api-prod",7,{"slug":47,"display_name":7,"profile_url":8,"plugin_count":48,"total_installs":49,"avg_security_score":50,"avg_patch_time_days":51,"trust_score":52,"computed_at":53},"fernandobt",2,86000,96,70,85,"2026-04-04T08:29:34.313Z",[55,75,91,106,125],{"slug":56,"name":57,"version":58,"author":7,"author_profile":8,"description":59,"short_description":60,"active_installs":61,"downloaded":62,"rating":63,"num_ratings":64,"last_updated":65,"tested_up_to":66,"requires_at_least":17,"requires_php":67,"tags":68,"homepage":70,"download_link":71,"security_score":72,"vuln_count":73,"unpatched_count":27,"last_vuln_date":74,"fetched_at":29},"list-category-posts","List category posts","0.95.0","\u003Cp>List Category Posts allows you to list posts by category in a post or page using the \u003Ccode>[catlist]\u003C\u002Fcode> shortcode. When you’re editing a page or post, directly insert the shortcode in your text and the posts will be listed there. The \u003Cem>basic\u003C\u002Fem> usage would be something like this:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist id=1]\n\n[catlist name=\"news\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The shortcode accepts a category name or id, the order in which you want the posts to display, and the number of posts to display. You can also display the post author, date, excerpt, custom field values, even the content! A lot of parameters have been added to customize what to display and how to show it. Check \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\" rel=\"nofollow ugc\">the full documentation\u003C\u002Fa> to learn about the different ways to use it.\u003C\u002Fp>\n\u003Cp>The \u003Ccode>[catlist]\u003C\u002Fcode> shortcode can be used as many times as needed with different arguments on each post\u002Fpage.\u003Cbr \u002F>\n    [catlist id=1 numberposts=10]\u003C\u002Fp>\n\u003Cp>There’s an options page with a few options, new options will be implemented on demand (as long as they make sense).\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\" rel=\"nofollow ugc\">Read the instructions\u003C\u002Fa>\u003C\u002Fstrong> to learn which parameters are available and how to use them.\u003C\u002Fp>\n\u003Cp>If you want to \u003Cstrong>List Categories\u003C\u002Fstrong> instead of posts you can use my other plugin \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Flist-categories\u002F\" rel=\"ugc\">List categories\u003C\u002Fa>\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Cp>You can find \u003Cstrong>Frequently Asked Questions\u003C\u002Fstrong> \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fblob\u002Fmaster\u002Fdoc\u002FFAQ.md#frequently-asked-questions\" rel=\"nofollow ugc\">here\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Customization\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The different elements to display can be styled with CSS. you can define an HTML tag to wrap the element with, and a CSS class for this tag. Check \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\" rel=\"nofollow ugc\">the documentation\u003C\u002Fa> for usage. You can also check \u003Ca href=\"http:\u002F\u002Fsundari-webdesign.com\u002Fwordpress-the-quest-to-my-perfect-list-view-for-posts-events-and-articles\u002F\" rel=\"nofollow ugc\">this nice tutorial\u003C\u002Fa> which gives lots of tips and how-to’s to customize how to display the posts.\u003C\u002Fp>\n\u003Cp>Great to use WordPress as a CMS, and create pages with several categories posts.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>GUI\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Klemens Starybrat has created a GUI for List Category Posts. It helps you create a shortcode from a nice visual interface in WordPress’ text editor. Check it out:\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fgui-for-lcp\u002F\" rel=\"ugc\">GUI for List Category Posts\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>AJAX pagination\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The ajax pagination feature is maintained in an add-on plugin by Klemens Starybrat. Check it out:\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Flcp-ajax-pagination\" rel=\"ugc\">LCP Ajax Pagination\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Widget\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Since WordPress 4.9, \u003Ca href=\"https:\u002F\u002Fmake.wordpress.org\u002Fcore\u002F2017\u002F10\u002F24\u002Fwidget-improvements-in-wordpress-4-9\u002F\" rel=\"nofollow ugc\">you can use shortcode in text widgets\u003C\u002Fa>. So you can just add a text widget in Appearence > Widgets and write the List Category Posts shortcode.\u003C\u002Fp>\n\u003Cp>The plugin also includes a widget as a simple interface for its functionality. Just add as many widgets as you want, and select all the available options from the Appearence > Widgets page. Not all the functionality in the shortcode has been implemented in the widget yet. You can use the shortcode for the most flexibility.\u003C\u002Fp>\n\u003Cp>Please, read the information on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\" rel=\"nofollow ugc\">the wiki\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Flist-category-posts\u002F#developers\" rel=\"ugc\">Changelog\u003C\u002Fa> to be aware of new functionality, and improvements to the plugin.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Videos\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Some users have made videos on how to use the plugin (thank you, you are awesome!), check them out here:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwww.youtube.com\u002Fwatch?v=kBy_qoGKpdo\" rel=\"nofollow ugc\">Manage WordPress Content with List Category Posts Plugin\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwww.youtube.com\u002Fwatch?v=Zfnzk4IWPNA\" rel=\"nofollow ugc\">WordPress: How to List Category Posts on a Page\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Support the plugin\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Klemens Starybrat has been writing lots of amazing code for this plugin, so if you’ve found it useful and want to pay it forward, consider sponsoring him on GitHub: https:\u002F\u002Fgithub.com\u002Fsponsors\u002Fklemens-st\u003C\u002Fp>\n\u003Cp>I have a \u003Ca href=\"http:\u002F\u002Fpicandocodigo.net\u002Fprogramacion\u002Fwordpress\u002Flist-category-posts-wordpress-plugin-english\u002F#support\" title=\"Donate via PayPal\" rel=\"nofollow ugc\">PayPal account\u003C\u002Fa> where you can donate too.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Development\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Development is being tracked on \u003Ca href=\"https:\u002F\u002Fcodeberg.org\u002Fpicandocodigo\u002Flist-category-posts\" rel=\"nofollow ugc\">Codeberg\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa>. Fork it, code, make a pull request, suggest improvements, etc. over there. I dream of the day all of the WordPress plugins will be hosted on Git 🙂\u003C\u002Fp>\n\u003Cp>Since the documentation on how to use the plugin has passed wordpress.org’s character limit, the text was cut. You can find the complete documentation on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\" rel=\"nofollow ugc\">the wiki\u003C\u002Fa>. It’s also more comfortable to read and maintain than a txt file. Please check it out, suggestions are welcome on Codeberg\u002FGitHub issues!\u003C\u002Fp>\n\u003Ch3>Instructions on how to use the plugin\u003C\u002Fh3>\n\u003Cp>Below you can find common shortcode use cases. You can use the shortcode while editing posts, pages, custom post types, text widgets and in all “page builder” plugins that support shortcodes.\u003C\u002Fp>\n\u003Cp>Read the \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\" rel=\"nofollow ugc\">full documentation\u003C\u002Fa>\u003C\u002Fstrong> to discover many more features, including:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>advanced post selection options\u003C\u002Fstrong> (by date, search terms, custom fields, post types, custom taxonomies and more)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>output customizations\u003C\u002Fstrong> (show each post’s date, author, excerpt, thumbnail and more)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>custom templates\u003C\u002Fstrong> of your own design, based on a simple PHP example\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>List 10 latest posts:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The default number of listed posts is 10, to modify it you need to specify \u003Ccode>numberposts\u003C\u002Fcode> parameter:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist numberposts=15]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>List posts from the “Dogs” category:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist name=Dogs]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>List posts from the category with id \u003Ccode>2\u003C\u002Fcode>:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist id=2]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>By default only the “post” post type is included. To list pages use:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist post_type=page]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>and for both posts and pages:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist post_type=\"post,page\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>If we combine the above options we can get a shortcode that lists 15 items, including post and pages, from the “Dogs” category:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist name=Dogs post_type=\"post,page\" numberposts=15]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Most of the parameters you will find in the documentation can be used together.\u003C\u002Fp>\n\u003Cp>The plugin can detect current post’s category and use it for listing:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist categorypage=yes]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Same goes for tags:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist currenttags=yes]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>To show each post’s excerpt use:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist excerpt=yes]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>If you want to show the date, author and comments count next to each post, use:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist date=yes author=yes comments=yes]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>You can specify html tags and classes for many elements. Let’s modify the previous shortcode and wrap dates and authors in tags and classes of our choice:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist date=yes date_tag=span date_class=\"my-date\" author=yes author_tag=p author_class=\"my-author\" comments=yes]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\u002FHTML-&-CSS-Customization\" rel=\"nofollow ugc\">Read more about this feature\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>You can order posts by date:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist orderby=date]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>You can also use \u003Ccode>title\u003C\u002Fcode>, \u003Ccode>author\u003C\u002Fcode>, \u003Ccode>ID\u003C\u002Fcode>. More options are described in the documentation.\u003C\u002Fp>\n\u003Cp>The plugin also supports pagination. You need to specify \u003Ccode>numberposts\u003C\u002Fcode> to tell the plugin how many posts per page you want:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[catlist pagination=yes numberposts=5]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>See the wiki: \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\u002FPagination\" rel=\"nofollow ugc\">Pagination\u003C\u002Fa> for more information.\u003C\u002Fp>\n\u003Cp>Please read the \u003Cstrong>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts\u002Fwiki\" rel=\"nofollow ugc\">full documentation\u003C\u002Fa>\u003C\u002Fstrong> for detailed documentation of all plugin features, use cases and shortcode parameters.\u003C\u002Fp>\n","Very customizable plugin to list posts by category (or tag, author and more) in a post, page or widget. Uses the [catlist] shortcode to select posts.",80000,4317590,94,254,"2026-03-14T21:07:00.000Z","6.9.4","5.6",[20,21,22,69],"posts","https:\u002F\u002Fgithub.com\u002Fpicandocodigo\u002FList-Category-Posts","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Flist-category-posts.0.95.0.zip",92,6,"2025-12-10 14:30:38",{"slug":76,"name":77,"version":78,"author":79,"author_profile":80,"description":81,"short_description":82,"active_installs":83,"downloaded":84,"rating":85,"num_ratings":26,"last_updated":86,"tested_up_to":87,"requires_at_least":17,"requires_php":67,"tags":88,"homepage":89,"download_link":90,"security_score":52,"vuln_count":27,"unpatched_count":27,"last_vuln_date":36,"fetched_at":29},"custom-category-listing-page","Custom Category Listing Page","2.0.5","Trooinbound Pvt Ltd.","https:\u002F\u002Fprofiles.wordpress.org\u002Ftrooinbound\u002F","\u003Cp>Custom Category Listing Page is Use for the Listing Post And Listing Woocommerce Product By Category wise. You can also Shorting Listing Post Or Product By Ordring Date, Title etc. By Using this Shortcode :\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[post_listing]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>New Features of v 2.0.5\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>You can set Number of post which you can display on listing page.\u003C\u002Fli>\n\u003Cli>Add Pagination Feature in Post Listing Page.\u003C\u002Fli>\n\u003Cli>New Template Design Added\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Customization\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>For Listing Post Page Customization you Can Change File custom-category-listing-page\u002Ftemplate\u002Fdefault.php\u003C\u002Fp>\n\u003Ch3>Support\u003C\u002Fh3>\n\u003Cp>For more Customization of this Plugin Please Contact on \u003Ca href=\"mailto:hello@trooinbound.com\" rel=\"nofollow ugc\">hello@trooinbound.com\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>How does it work?\u003C\u002Fh3>\n\u003Col>\n\u003Cli>Install the plugin\u003C\u002Fli>\n\u003Cli>Create Page And Add this Shortcode [post_listing].\u003C\u002Fli>\n\u003Cli>Select Post And Product Categories From Right side of Edit Page.\u003C\u002Fli>\n\u003Cli>Also Select Ordering Of Categories.\u003C\u002Fli>\n\u003Cli>And done. You will be able to see List Of Category Which You have been Select. Please refer Screenshot.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>If you’re not using any of the supported plugin and theme, you can write the custom CSS to apply the fonts.\u003C\u002Fp>\n","Custom Category Listing Page Allow to List Category Posts for each Category by Order ex: [post_listing]",50,2776,100,"2019-11-14T07:28:00.000Z","5.3.21",[20,21,22,69],"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcustom-category-listing-page\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-category-listing-page.zip",{"slug":92,"name":93,"version":94,"author":95,"author_profile":96,"description":97,"short_description":98,"active_installs":27,"downloaded":99,"rating":27,"num_ratings":27,"last_updated":18,"tested_up_to":87,"requires_at_least":100,"requires_php":101,"tags":102,"homepage":103,"download_link":104,"security_score":85,"vuln_count":27,"unpatched_count":27,"last_vuln_date":36,"fetched_at":105},"syno-author-bio","Syno Author Bio","0.1","Ashraf","https:\u002F\u002Fprofiles.wordpress.org\u002Fashrafpeal\u002F","\u003Cp>This is a simple plugin to show author bio in the post page.\u003C\u002Fp>\n\u003Cp>Easy to use and manage.\u003C\u002Fp>\n","This plugin is for to show author bio in the post page.",814,"5.0","7.0",[20,21,22,69],"https:\u002F\u002Fwordpress.org","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsyno-author-bio.zip","2026-03-15T10:48:56.248Z",{"slug":107,"name":108,"version":109,"author":110,"author_profile":111,"description":112,"short_description":113,"active_installs":114,"downloaded":115,"rating":50,"num_ratings":116,"last_updated":117,"tested_up_to":118,"requires_at_least":100,"requires_php":18,"tags":119,"homepage":123,"download_link":124,"security_score":52,"vuln_count":27,"unpatched_count":27,"last_vuln_date":36,"fetched_at":29},"display-categories-widget","Display Categories Widget","3.1","iteamweb","https:\u002F\u002Fprofiles.wordpress.org\u002Fiteamweb\u002F","\u003Cp>Display Categories Widget will display Child categories on your sidebar. Can be placed on widget in sidebar.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Development\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Our development is being tracked on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fiteamweb\u002FDisplay-Categories-Widget\" rel=\"nofollow ugc\">GitHub URL\u003C\u002Fa>. Please fork, code, raise pull request, suggest improvements on GitHub.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Features\u003C\u002Fstrong>\u003Cbr \u002F>\n1. Limit number of categories that appears.\u003C\u002Fp>\n\u003Col>\n\u003Cli>\n\u003Cp>Exclude categories from display.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Restrict levels of categories that can be shown.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Display categories as list or dropdown.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Hide categories that does not have any posts.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Display\u002FHide number of posts available in categories.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Display\u002FHide category description on hover in title attribute\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Fol>\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\u002FhFwz-yDu710?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\u003Ch3>Support\u003C\u002Fh3>\n\u003Ch4>How to contact plugin support?\u003C\u002Fh4>\n\u003Cp>We support through https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fdisplay-categories-widget and http:\u002F\u002Fwww.iteamweb.com\u002Fopen-source-softwares\u002Fwordpress\u002Fwordpress-plugins\u002Fdisplay-categories-widget\u002F\u003C\u002Fp>\n\u003Ch3>Arbitrary section 1\u003C\u002Fh3>\n","Display Categories Widget will display Child categories on your sidebar. Can be placed on widget in sidebar.",4000,85039,25,"2019-11-03T07:24:00.000Z","5.2.24",[20,120,4,121,122],"hide-categories","select-categories","widget","http:\u002F\u002Fwww.iteamweb.com\u002Fopen-source-softwares\u002Fwordpress\u002Fwordpress-plugins\u002Fdisplay-categories-widget\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdisplay-categories-widget.zip",{"slug":126,"name":127,"version":128,"author":129,"author_profile":130,"description":131,"short_description":132,"active_installs":133,"downloaded":134,"rating":85,"num_ratings":135,"last_updated":136,"tested_up_to":137,"requires_at_least":100,"requires_php":138,"tags":139,"homepage":143,"download_link":144,"security_score":25,"vuln_count":48,"unpatched_count":27,"last_vuln_date":145,"fetched_at":29},"blog-in-blog","Blog-in-Blog","2.0.1","timhodson","https:\u002F\u002Fprofiles.wordpress.org\u002Ftimhodson\u002F","\u003Cp>Blog-in-Blog allows you to use the WordPress platform for it’s CMS features, but still have a blog page on your site. Posts selected by category, post_type, tag or any combination thereof, can be used to feed the ‘special’ blog page, and can optionally be hidden from the home page.\u003Cbr \u002F>\nYou can have more than one category hidden from the homepage (not post_types or tags).\u003C\u002Fp>\n\u003Cp>You can also use this plugin to show posts on the same page from different categories, post_types or tags, but in several different blocks and using different layout templates.\u003C\u002Fp>\n\u003Cp>If you find this plugin useful (especially if it gets you out of a fix in a commercial setting), please feel free to leave feedback via the donate button.\u003C\u002Fp>\n\u003Cp>I am grateful for those people who have already bought me a beer 🙂\u003C\u002Fp>\n\u003Cp>\u003Cem>Important:\u003C\u002Fem> In previous versions of the Blog-in-Blog plugin you might have edited bib_post_template.tpl. If you are upgrading, we will copy this to a textbox so you can edit the template from the plugin page. The bib_post_template.pl file is no longer used and may vanish in a future release.\u003C\u002Fp>\n","This plugin shows posts from a category on any page you like using shortcodes. Create multiple blogs within a blog using a category.",900,110772,16,"2026-01-26T08:36:00.000Z","6.7.5","8.0",[140,20,21,141,142],"blog","hide","shortcode","http:\u002F\u002Finformationtakesover.co.uk\u002Fblog-in-blog-wordpress-plugin\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fblog-in-blog.2.0.1.zip","2023-05-30 00:00:00",{"attackSurface":147,"codeSignals":157,"taintFlows":164,"riskAssessment":165,"analyzedAt":176},{"hooks":148,"ajaxHandlers":149,"restRoutes":150,"shortcodes":151,"cronEvents":156,"entryPointCount":26,"unprotectedCount":27},[],[],[],[152],{"tag":20,"callback":153,"file":154,"line":155},"list_categories","list-categories.php",66,[],{"dangerousFunctions":158,"sqlUsage":159,"outputEscaping":161,"fileOperations":27,"externalRequests":27,"nonceChecks":27,"capabilityChecks":27,"bundledLibraries":163},[],{"prepared":27,"raw":27,"locations":160},[],{"escaped":26,"rawEcho":27,"locations":162},[],[],[],{"summary":166,"deductions":167},"The 'list-categories' plugin v0.5 presents a mixed security posture. On the positive side, static code analysis reveals no dangerous functions, all SQL queries utilize prepared statements, and all identified outputs are properly escaped. Furthermore, there are no file operations or external HTTP requests, and taint analysis indicates no vulnerabilities. This suggests a development team that is aware of and implements several secure coding practices.\n\nHowever, the plugin has a known history of vulnerabilities, including one medium-severity Cross-Site Scripting (XSS) issue recorded recently. While this specific vulnerability is not currently unpatched, the existence of past XSS issues warrants caution, especially as there are no explicit capability checks or nonce checks evident in the static analysis for its single shortcode entry point. The absence of these checks, combined with a past XSS vulnerability, could indicate a potential for similar issues if user-supplied data is not handled rigorously within the shortcode's logic.\n\nIn conclusion, while the plugin demonstrates good practices in areas like prepared statements and output escaping, the past XSS vulnerability and the lack of explicit authentication\u002Fauthorization checks on its shortcode are significant weaknesses. The recent nature of the XSS vulnerability suggests that these types of issues have occurred and may reoccur. Therefore, caution is advised, and further manual inspection of the shortcode's input handling would be prudent.",[168,171,174],{"reason":169,"points":170},"Past medium severity XSS vulnerability",10,{"reason":172,"points":173},"No capability checks on shortcode",5,{"reason":175,"points":173},"No nonce checks on shortcode","2026-03-16T18:06:15.851Z",{"wat":178,"direct":183},{"assetPaths":179,"generatorPatterns":180,"scriptPaths":181,"versionParams":182},[],[],[],[],{"cssClasses":184,"htmlComments":185,"htmlAttributes":186,"restEndpoints":187,"jsGlobals":188,"shortcodeOutput":189},[],[],[],[],[],[190],"\u003Cul class=\"categories\">"]