[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fPevOYZRJNYUc-03gfsfQlKqjma7Jfg9YVY5cIo42mkc":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":22,"download_link":23,"security_score":24,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27,"vulnerabilities":28,"developer":29,"crawl_stats":26,"alternatives":34,"analysis":144,"fingerprints":226},"post-type-archive-pages","Post Type Archive Pages","1.0.4","Darren Grant","https:\u002F\u002Fprofiles.wordpress.org\u002Fdarrengrant\u002F","\u003Cp>Post Type Archive Pages allows you to select pages from within your content page structure to be the archive pages for your custom post types. This gives you control of the permalink for your archive pages and allows them to be nested under other pages. It also sets the permalink base for single posts of that post type and term archive for the post type’s taxonomies.\u003C\u002Fp>\n\u003Cp>Once the plugin is installed and activated you’ll be able to select the archive page for each of your registered post types under Settings > Reading.\u003C\u002Fp>\n\u003Ch3>Templating\u003C\u002Fh3>\n\u003Cp>WordPress will look for archive page templates for the pages that you set as archive pages. So \u003Cem>archive-$posttype.php\u003C\u002Fem> and \u003Cem>archive.php\u003C\u002Fem> will be used rather than \u003Cem>page.php\u003C\u002Fem>.\u003C\u002Fp>\n\u003Cp>There are also a few functions available that may be helpful in building themes. They are accessed on the plugin’s main instance, which is returned by a call to \u003Cem>post_type_archive_pages()\u003C\u002Fem>.\u003C\u002Fp>\n\u003Ch4>get_archive_page\u003C\u002Fh4>\n\u003Cp>Returns the page object for the archive page of the provided post type slug. If called from a post type archive template, a singular template or a term archive and a slug isn’t provided, the relative post type will be used. e.g.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$page = post_type_archive_pages()->get_archive_page('book');\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>get_archive_page_post_type\u003C\u002Fh4>\n\u003Cp>Returns the post type object that the provided page ID is the archive page for. e.g.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$postType = post_type_archive_pages()->get_archive_page_post_type(5);\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch3>Menu – Enhancements\u003C\u002Fh3>\n\u003Cp>Archive pages added to the menu will be marked as the current menu item when viewing the post type archive and the current menu item’s parent \u002F ancestor when viewing a post of that type. The related CSS classes will also be applied.\u003C\u002Fp>\n\u003Ch3>Advanced Custom Fields – Enhancements\u003C\u002Fh3>\n\u003Cp>This plugin is particularly effective when paired with \u003Ca href=\"https:\u002F\u002Fwww.advancedcustomfields.com\u002F\" rel=\"nofollow ugc\">Advanced Custom Fields\u003C\u002Fa>. It registers additional \u003Cem>page type\u003C\u002Fem> location rules allowing you to add fields to all archive pages or the archive page for a particular post type. So if your listing page requires content like a description or header image you can place fields for those on the archive page itself.\u003C\u002Fp>\n\u003Cp>To access fields like these in your archive template you need only call\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$desc = get_field( 'description', post_type_archive_pages()->get_archive_page() );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch3>Developer Hooks\u003C\u002Fh3>\n\u003Cp>The plugin attempts to set defaults that should work best for most scenarios. But there are some places to hook in and alter these defaults where needed.\u003C\u002Fp>\n\u003Ch4>Filter – post_type_archive_pages\u002Fsupported_post_types\u003C\u002Fh4>\n\u003Cp>By default you will be able to set an archive page for any public post type other than the built in post types of \u003Cem>page\u003C\u002Fem> and \u003Cem>post\u003C\u002Fem>. This hook allows you to filter the default array of supported post types to add or remove. The array should contain slugs of valid post types. Please note that the array keys are not important in it’s use, but contain the slugs to allow you to easily unset values.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'post_type_archive_pages\u002Fsupported_post_types', function( $post_types ){\n    unset( $post_types['book'] );\n    return $post_types;\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Filter – post_type_archive_pages\u002Ftaxonomy_post_type\u003C\u002Fh4>\n\u003Cp>By default taxonomy term archives will inherit the archive page permalink structure of a post type if that post type is the only one that the taxonomy is registered on. For instance if you had a \u003Cem>publisher\u003C\u002Fem> taxonomy the permalink for a term archive might become \u003Cem>\u002Fbooks\u002Fpublisher\u002Fpenguin\u003C\u002Fem>. With \u003Cem>\u002Fbooks\u003C\u002Fem> being the permlaink of the archive page, \u003Cem>publisher\u003C\u002Fem> the taxonomy slug and \u003Cem>penguin\u003C\u002Fem> the term slug. This filter allows you to alter the post type who’s archive page permalink structure will be inherited for a given taxonomy.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'post_type_archive_pages\u002Ftaxonomy_post_type', function( $post_type, $taxonomy ){\n    if ( $taxonomy === 'publisher' ) return null;\n    return $post_type;\n}, 10, 2 );\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Place the archive pages for your post types in the structure of your content pages. The power of pages and post types combined!",300,6278,100,1,"2020-01-30T11:17:00.000Z","5.3.21","5.0","5.6",[20,21],"archive-pages","post-types","","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-type-archive-pages.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":30,"display_name":7,"profile_url":8,"plugin_count":14,"total_installs":11,"avg_security_score":24,"avg_patch_time_days":31,"trust_score":32,"computed_at":33},"darrengrant",30,84,"2026-04-04T03:52:29.651Z",[35,55,80,101,123],{"slug":36,"name":37,"version":38,"author":39,"author_profile":40,"description":41,"short_description":42,"active_installs":43,"downloaded":44,"rating":13,"num_ratings":45,"last_updated":46,"tested_up_to":47,"requires_at_least":48,"requires_php":22,"tags":49,"homepage":53,"download_link":54,"security_score":24,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"multiple-content-types","Multiple Content Types","1.0.0","Micah Wood","https:\u002F\u002Fprofiles.wordpress.org\u002Fwoodent\u002F","\u003Cp>\u003Cstrong>Multiple Content Types\u003C\u002Fstrong> is an intuitive plugin for easily selecting which content types (custom post types) you want to display on your main blog and archive pages.\u003C\u002Fp>\n\u003Ch4>How?\u003C\u002Fh4>\n\u003Cp>Using this plugin is simple:\u003C\u002Fp>\n\u003Col>\n\u003Cli>Install the plugin\u003C\u002Fli>\n\u003Cli>Activate the plugin\u003C\u002Fli>\n\u003Cli>In the WordPress admin, click on ‘Settings’\u003C\u002Fli>\n\u003Cli>Click on ‘Reading’ in the sub-menu.\u003C\u002Fli>\n\u003Cli>Look for the item labeled ‘Content types to show on the main blog and archive pages’.\u003C\u002Fli>\n\u003Cli>Use the checkboxes to select the content types you want to show on your main blog and archive pages.\u003C\u002Fli>\n\u003Cli>Click ‘Save Changes’.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>Once you have completed the steps above, just visit your blog page to see the new content types!\u003C\u002Fp>\n\u003Ch4>Why?\u003C\u002Fh4>\n\u003Cp>Many sites have multiple content types and just displaying posts on your blog can be limiting. What if you wanted to feature other content types like ‘News’, ‘Announcements’, ‘Deals’, etc.? Well, now you can!\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Provides the ability to show multiple content types on your main blog and archive pages.\u003C\u002Fli>\n\u003Cli>A minimal, yet intuitive, user interface.\u003C\u002Fli>\n\u003Cli>Clean, well written code that won’t bog down your site.\u003C\u002Fli>\n\u003C\u002Ful>\n","Easily select which content types (custom post types) you want to display on your main blog and archive pages.",20,1458,2,"2016-12-19T00:34:00.000Z","4.7.32","3.3",[20,50,51,52],"blog","content-types","custom-post-types","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmultiple-content-types\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmultiple-content-types.1.0.0.zip",{"slug":56,"name":57,"version":58,"author":59,"author_profile":60,"description":61,"short_description":62,"active_installs":63,"downloaded":64,"rating":65,"num_ratings":66,"last_updated":67,"tested_up_to":68,"requires_at_least":69,"requires_php":70,"tags":71,"homepage":75,"download_link":76,"security_score":77,"vuln_count":78,"unpatched_count":25,"last_vuln_date":79,"fetched_at":27},"custom-post-type-ui","Custom Post Type UI","1.18.3","webdevstudios","https:\u002F\u002Fprofiles.wordpress.org\u002Fwebdevstudios\u002F","\u003Cp>Custom Post Type UI provides an easy-to-use interface for registering and managing custom post types and taxonomies for your website.\u003C\u002Fp>\n\u003Ch4>Custom Post Type UI Extended\u003C\u002Fh4>\n\u003Cp>CPTUI helps create custom content types, but displaying that content can be a whole new challenge. \u003Ca href=\"https:\u002F\u002Fpluginize.com\u002Fplugins\u002Fcustom-post-type-ui-extended\u002F?utm_source=cptui-desription&utm_medium=text&utm_campaign=wporg\" rel=\"nofollow ugc\">Custom Post Type UI Extended\u003C\u002Fa> was created to help with displaying your crafted content. \u003Ca href=\"https:\u002F\u002Fpluginize.com\u002Fcpt-ui-extended-features\u002F?utm_source=cptui-description-examples&utm_medium=text&utm_campaign=wporg\" rel=\"nofollow ugc\">View our Layouts page\u003C\u002Fa> to see available layout examples with Custom Post Type UI Extended.\u003C\u002Fp>\n\u003Ch4>Plugin development\u003C\u002Fh4>\n\u003Cp>Custom Post Type UI development is managed on GitHub, with official releases published on WordPress.org. The GitHub repo can be found at \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FWebDevStudios\u002Fcustom-post-type-ui\" rel=\"nofollow ugc\">https:\u002F\u002Fgithub.com\u002FWebDevStudios\u002Fcustom-post-type-ui\u003C\u002Fa>. Please use the WordPress.org support tab for potential bugs, issues, or enhancement ideas.\u003C\u002Fp>\n","Admin UI for creating custom content types like post types and taxonomies",1000000,22529808,92,273,"2026-01-08T20:43:00.000Z","6.9.4","6.6","7.4",[51,52,72,73,74],"post-type","taxonomy","types","https:\u002F\u002Fgithub.com\u002FWebDevStudios\u002Fcustom-post-type-ui\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-post-type-ui.1.18.3.zip",93,4,"2025-12-12 00:00:00",{"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":68,"requires_at_least":93,"requires_php":18,"tags":94,"homepage":99,"download_link":100,"security_score":13,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"post-types-order","Post Types Order","2.4.6","nsp-code","https:\u002F\u002Fprofiles.wordpress.org\u002Fnsp-code\u002F","\u003Cp>\u003Cstrong>Over 12 MILLIONS DOWNLOADS and near PERFECT rating out of 200 REVIEWS\u003C\u002Fstrong>. \u003Cbr \u002F>\nEasily Sort Posts and Custom Post Types with Drag-and-Drop\u003C\u002Fp>\n\u003Cp>Take full control of your post order with a powerful plugin that lets you effortlessly reorder posts and custom post types using a simple drag-and-drop interface.\u003C\u002Fp>\n\u003Cp>Customize the order directly from the default WordPress post archive list or use the dedicated Re-Order interface, which displays all available items for easy management. Whether you’re working with default posts or custom post types, organizing your content has never been easier.\u003C\u002Fp>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>This plugin was designed to be user-friendly, ensuring that anyone can easily use its sorting feature, regardless of their WordPress experience:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Install the plugin via the “Install Plugins” interface or by uploading the post-types-order folder to the \u002Fwp-content\u002Fplugins\u002F directory.\u003C\u002Fli>\n\u003Cli>Activate the Post Types Order plugin.\u003C\u002Fli>\n\u003Cli>A new settings page will be added under Settings > Post Types Order. Visit this page and save the options for the first time.\u003C\u002Fli>\n\u003Cli>With the \u003Cstrong>AutoSort\u003C\u002Fstrong> option enabled, no code changes are needed, the plugin will automatically apply the customized post order.\u003C\u002Fli>\n\u003Cli>Use the Re-Order interface, available for every non-hierarchical custom post type, to change the post order as needed.\u003C\u002Fli>\n\u003Cli>For sorting posts via code, include ‘orderby’ => ‘menu_order’ within the custom query arguments. For more details, visit this guide \u003Ca href=\"https:\u002F\u002Fwww.nsp-code.com\u002Fsample-code-on-how-to-apply-the-sort-for-post-types-order-plugin\u002F\" rel=\"nofollow ugc\">Sample Usage\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Example of Usage\u003C\u002Fh4>\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\u002F6-so4UH-n6M?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>As you can see, reordering posts is as simple as dragging and dropping, with the changes instantly reflected on the front end.\u003C\u002Fp>\n\u003Cp>If the post order doesn’t update on your site, it could be due to one of two reasons: either there was a mistake during setup, or your theme\u002Fplugin is using a custom query that doesn’t follow WordPress Codex standards. But don’t worry—we’re here to help! You can report the issue in the forum, where many users are happy to assist, or you can contact us directly.\u003C\u002Fp>\n\u003Cp>If you encounter any problems with the plugin, feel free to reach out via the forum or contact us directly through our \u003Ca href=\"https:\u002F\u002Fwww.nsp-code.com\" rel=\"nofollow ugc\">support page\u003C\u002Fa>, and we’ll take a look.\u003C\u002Fp>\n\u003Ch4>Need advanced features ?\u003C\u002Fh4>\n\u003Cp>For advanced features and functionality, check out the extended version of this plugin at \u003Ca href=\"https:\u002F\u002Fwww.nsp-code.com\u002Fpremium-plugins\u002Fwordpress-plugins\u002Fadvanced-post-types-order\u002F\" rel=\"nofollow ugc\">Advanced Post Types Order\u003C\u002Fa>\u003Cbr \u002F>\n * Hierarchically post types order\u003Cbr \u002F>\n * Manual Drag & Drop \u002F Automatic Sorting\u003Cbr \u002F>\n * Specify exact area where to apply through conditionals\u003Cbr \u002F>\n * Advanced query interface filtering and complex sorts including multiple post types and taxonomies\u003Cbr \u002F>\n * Posts Order by Custom Taxonomies\u003Cbr \u002F>\n * Enhanced Interface, List \u002F Grid View\u003Cbr \u002F>\n * Allow Interface Filters (Categories, Dates, Search etc)\u003Cbr \u002F>\n * Post Types Thumbnails\u003Cbr \u002F>\n * Advanced query usage\u003Cbr \u002F>\n * MultiSite Network Support, WPML, Polylang, WooCommerce, WP E-Commerce, Platform Pro, Genesis etc\u003Cbr \u002F>\n * WPML 100% compatibility with sort synchronization across languages\u003Cbr \u002F>\n * Mobile Touch Drag & Drop Ready\u003Cbr \u002F>\n * Sort interfaces through admin and front end\u003Cbr \u002F>\n * Pagination for sort lists\u003Cbr \u002F>\n * Free Updates\u003Cbr \u002F>\n * Free Support\u003C\u002Fp>\n\u003Cp>This plugin is developed by \u003Ca href=\"https:\u002F\u002Fwww.nsp-code.com\" rel=\"nofollow ugc\">Nsp-Code\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Localization\u003C\u002Fh3>\n\u003Cp>Would you like to contribute a translation in your language? Please check at https:\u002F\u002Ftranslate.wordpress.org\u002Fprojects\u002Fwp-plugins\u002Fpost-types-order\u003C\u002Fp>\n\u003Cp>There isn’t any Editors for your native language on plugin Contributors? You can help to moderate! https:\u002F\u002Ftranslate.wordpress.org\u002Fprojects\u002Fwp-plugins\u002Fpost-types-order\u002Fcontributors\u003C\u002Fp>\n","Sort posts and custom post type objects using a drag-and-drop, sortable JavaScript AJAX interface, or through the default WordPress dashboard",600000,16094255,90,296,"2026-03-13T09:43:00.000Z","2.8",[95,96,81,97,98],"post-order","post-sort","posts-order","posts-sort","http:\u002F\u002Fwww.nsp-code.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-types-order.2.4.6.zip",{"slug":102,"name":103,"version":104,"author":103,"author_profile":105,"description":106,"short_description":107,"active_installs":108,"downloaded":109,"rating":110,"num_ratings":111,"last_updated":112,"tested_up_to":68,"requires_at_least":113,"requires_php":114,"tags":115,"homepage":118,"download_link":119,"security_score":120,"vuln_count":121,"unpatched_count":25,"last_vuln_date":122,"fetched_at":27},"meta-box","Meta Box","5.11.2","https:\u002F\u002Fprofiles.wordpress.org\u002Fmetabox\u002F","\u003Ch3>WordPress custom fields plugin\u003C\u002Fh3>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fmetabox.io\" rel=\"nofollow ugc\">Meta Box\u003C\u002Fa> is a professional framework that makes building and customizing a website with dynamic data and content in WordPress fun and easy.\u003C\u002Fp>\n\u003Cp>Meta Box helps you add \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fseries\u002Fcustom-fields\u002F\" rel=\"nofollow ugc\">custom fields\u003C\u002Fa> and dynamic data to posts, pages, custom post types, forms and anywhere you want using over 40+ different field types such as text, images, file upload, checkboxes, and more.\u003C\u002Fp>\n\u003Cp>On top of that, each WordPress custom field type has extensive internal options for unlimited content possibilities. Complete customization and control is just a few clicks away.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>\u003Cstrong>Meta Box Lite\u003C\u002Fstrong>\u003Cbr \u002F>\n  We recommend using \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Flite\u002F\" rel=\"nofollow ugc\">Meta Box Lite\u003C\u002Fa>, a feature-rich free UI version of Meta Box that provides UI and all free features for managing custom fields and dynamic content on WordPress, including post types, taxonomies, custom fields, and relationships.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch3>Create any type of custom fields in WordPress\u003C\u002Fh3>\n\u003Cp>That’s right – any type. No matter where you need to insert custom data and features, Meta Box’s WordPress custom fields have your back, and with infinite options to boot.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Here are just a few of the data types you can customize:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Posts\u003C\u002Fli>\n\u003Cli>Pages\u003C\u002Fli>\n\u003Cli>Custom post types (you can also use our free plugin \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fcustom-post-type\u002F\" rel=\"nofollow ugc\">MB Custom Post Types & Custom Taxonomies\u003C\u002Fa> to create custom post types and custom taxonomies)\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-term-meta\u002F\" rel=\"nofollow ugc\">Taxonomies\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-settings-page\u002F\" rel=\"nofollow ugc\">Settings pages or Customizer sections\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-user-profile\u002F\" rel=\"nofollow ugc\">User profile pages\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-comment-meta\u002F\" rel=\"nofollow ugc\">Post comments\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>A wide-range of field types and options\u003C\u002Fh3>\n\u003Cp>Take your standard WordPress custom field and imagine it infinitely expanded. That’s how many options Meta Box gives you:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Meta Box supports \u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Ffields\u002F\" rel=\"nofollow ugc\">40+ built-in WordPress custom field types\u003C\u002Fa> for all your needs including text, textarea, WYSIWYG editor, image, file, post, select, checkbox, radio buttons, date\u002Ftime picker, taxonomy, user, oembed and more to come.\u003C\u002Fli>\n\u003Cli>Not enough? You can also \u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fcustom-field-type\u002F\" rel=\"nofollow ugc\">effortlessly create your own field type\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>Meta Box supports cloning fields for most field types including the WYSIWYG editor field. It also supports \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-group\u002F\" rel=\"nofollow ugc\">repeatable field groups\u003C\u002Fa>.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>It’s developer-friendly\u003C\u002Fh3>\n\u003Cp>As a developer, you have enough on your plate. You shouldn’t have to create an entirely new system for each project. Use Meta Box to your full advantage.\u003C\u002Fp>\n\u003Cp>You can use Meta Box and its custom fields for any custom post type in WordPress on as many websites as you want so you can use it on client projects as well.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Has an ultra-lightweight, yet powerful API that won’t overload your site.\u003C\u002Fli>\n\u003Cli>Add only what you need instead of getting stuck with a bundle of features you don’t even want that bloat your site.\u003C\u002Fli>\n\u003Cli>Meta Box \u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fintegration\u002F\" rel=\"nofollow ugc\">easily integrates with any theme and plugin\u003C\u002Fa>, and supports Composer!\u003C\u002Fli>\n\u003Cli>We use the \u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fdatabase\u002F\" rel=\"nofollow ugc\">native WordPress meta data storage\u003C\u002Fa> and functions for ease of use and lightning-fast processing.\u003C\u002Fli>\n\u003Cli>Has a lot of \u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fcategory\u002Factions\u002F\" rel=\"nofollow ugc\">actions\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fcategory\u002Ffilters\u002F\" rel=\"nofollow ugc\">filters\u003C\u002Fa> so you can build or change a site’s appearance and behavior in the plugin.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Don’t love coding? You’re in luck!\u003C\u002Fh3>\n\u003Cp>If you prefer a more visual system to create custom fields in WordPress, please use \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Flite\u002F\" rel=\"nofollow ugc\">Meta Box Lite\u003C\u002Fa>, a feature-rich free UI version of Meta Box that provides:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>All the power of Meta Box without touching a single line of code.\u003C\u002Fli>\n\u003Cli>Designer-friendly, lightweight and work at top-notch speeds.\u003C\u002Fli>\n\u003Cli>Export your custom fields and settings to PHP. Then, add it to a new site without needing to install this extension for an incredibly lightweight option.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Free Extensions\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Migrations from \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-acf-migration\u002F\" rel=\"nofollow ugc\">ACF\u003C\u002Fa> or \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-toolset-migration\u002F\" rel=\"nofollow ugc\">Toolset\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>Integrations with all page builder plugins like \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-elementor-integrator\u002F\" rel=\"nofollow ugc\">Elementor\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-beaver-themer-integrator\u002F\" rel=\"nofollow ugc\">Beaver Builder\u003C\u002Fa>, Divi, Bricks, Brizy, etc.\u003C\u002Fli>\n\u003Cli>Integrations with SEO plugins like \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmeta-box-yoast-seo\u002F\" rel=\"ugc\">Yoast SEO\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-rank-math\u002F\" rel=\"nofollow ugc\">Rank Math\u003C\u002Fa>, or Slim SEO.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-builder\u002F\" rel=\"nofollow ugc\">MB Builder\u003C\u002Fa>: Create custom meta boxes and custom fields in WordPress using a user-friendly drag-and-drop interface.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-comment-meta\u002F\" rel=\"nofollow ugc\">MB Comment Meta\u003C\u002Fa>: Add WordPress custom fields to comments in WordPress.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fcustom-post-type\u002F\" rel=\"nofollow ugc\">MB Custom Post Types & Custom Taxonomies\u003C\u002Fa>: Create and manage custom post types and taxonomies with UI.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmb-relationships\u002F\" rel=\"ugc\">MB Relationships\u003C\u002Fa>: Create as many connections as you want from post-to-post or page-to-page.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-rest-api\u002F\" rel=\"nofollow ugc\">MB Rest API\u003C\u002Fa>: Pull all meta values from posts and terms into the WP REST API responses.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-facetwp-integrator\u002F\" rel=\"nofollow ugc\">MB FacetWP Integrator\u003C\u002Fa>: Integrates Meta Box and FacetWP to make custom fields searchable and filterable.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmeta-box-text-limiter\u002F\" rel=\"ugc\">MB Text Limiter\u003C\u002Fa>: Limit the number of characters or words entered for text and textarea fields.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Premium Extensions\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-admin-columns\u002F\" rel=\"nofollow ugc\">MB Admin Columns\u003C\u002Fa>: Display WordPress custom fields in table columns in admin.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-blocks\u002F\" rel=\"nofollow ugc\">MB Blocks\u003C\u002Fa>: Create custom Gutenberg blocks with PHP, using the same syntax in Meta Box.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-columns\u002F\" rel=\"nofollow ugc\">MB Columns\u003C\u002Fa>: Display eye-catching custom fields in WordPress by putting them into 12-column grids.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-conditional-logic\u002F\" rel=\"nofollow ugc\">MB Conditional Logic\u003C\u002Fa>: Add visibility dependency for custom meta boxes and custom fields in WordPress.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-custom-table\u002F\" rel=\"nofollow ugc\">MB Custom Table\u003C\u002Fa>: Save custom fields to custom tables instead of the default meta tables to reduce your database’s size and increase its performance.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-frontend-submission\u002F\" rel=\"nofollow ugc\">MB Frontend Submission\u003C\u002Fa>: Create frontend forms for users to submit posts.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-geolocation\u002F\" rel=\"nofollow ugc\">MB Geolocation\u003C\u002Fa>: Automatically and instantly populate location data with the power of the Google Maps Geolocation API.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-group\u002F\" rel=\"nofollow ugc\">MB Group\u003C\u002Fa>: Create repeatable groups for better appearance and structure.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-include-exclude\u002F\" rel=\"nofollow ugc\">MB Include Exclude\u003C\u002Fa>: Show or hide meta boxes by ID, page template, taxonomy, or custom function.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-revision\u002F\" rel=\"nofollow ugc\">MB Revision\u003C\u002Fa>: Track changes to custom fields in WordPress with revisions. You can compare and restore the changes smoothly.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-settings-page\u002F\" rel=\"nofollow ugc\">MB Settings Page\u003C\u002Fa>: Create settings pages for themes, plugins or websites with beautiful syntax.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-show-hide-javascript\u002F\" rel=\"nofollow ugc\">MB Show Hide\u003C\u002Fa>: Toggle meta boxes by page template, post format, taxonomy and category.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-tabs\u002F\" rel=\"nofollow ugc\">MB Tabs\u003C\u002Fa>: Painlessly create tabs for meta boxes with multiple styles and icons.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-template\u002F\" rel=\"nofollow ugc\">MB Template\u003C\u002Fa>: Make defining custom meta boxes and WordPress custom fields way easier with templates.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-term-meta\u002F\" rel=\"nofollow ugc\">MB Term Meta\u003C\u002Fa>: Add custom fields to categories, tags or custom taxonomies.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmeta-box-tooltip\u002F\" rel=\"nofollow ugc\">MB Tooltip\u003C\u002Fa>: Display help information for custom fields with tooltips.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-user-meta\u002F\" rel=\"nofollow ugc\">MB User Meta\u003C\u002Fa>: Add custom fields to users.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-user-profile\u002F\" rel=\"nofollow ugc\">MB User Profile\u003C\u002Fa>: Build login, register and edit profile forms for users.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fmetabox.io\u002Fplugins\u002Fmb-views\u002F\" rel=\"nofollow ugc\">MB Views\u003C\u002Fa>: Outputting custom fields and build front-end templates for WordPress without touching theme files.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Detailed Documentation\u003C\u002Fh3>\n\u003Cp>We provide regularly updated, and extensive \u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\" rel=\"nofollow ugc\">documentation\u003C\u002Fa> as well as \u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Ftutorials\u002F\" rel=\"nofollow ugc\">tutorials\u003C\u002Fa> on how to use MetaBox and custom fields in WordPress to your advantage as well as in the most efficient way possible.\u003C\u002Fp>\n\u003Cp>Here are a few guides to quickly get you started with Meta Box and creating your own WordPress custom fields:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fintroduction\u002F\" rel=\"nofollow ugc\">Introduction\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fcustom-post-types\u002F\" rel=\"nofollow ugc\">Custom post types\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fcustom-fields\u002F\" rel=\"nofollow ugc\">Custom fields\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Ffield-settings\u002F\" rel=\"nofollow ugc\">Field settings\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdocs.metabox.io\u002Fdisplaying-fields-with-code\u002F\" rel=\"nofollow ugc\">Displaying fields\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>You might also like\u003C\u002Fh3>\n\u003Cp>If you like this plugin, you might also like our other WordPress products:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpslimseo.com\" rel=\"nofollow ugc\">Slim SEO\u003C\u002Fa> – A fast, lightweight and full-featured SEO plugin for WordPress with minimal configuration.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpfalcon.pro\" rel=\"nofollow ugc\">Falcon\u003C\u002Fa> – A lightweight companion for making WordPress faster, cleaner, and more secure.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgretathemes.com\" rel=\"nofollow ugc\">GretaThemes\u003C\u002Fa> – Free and premium WordPress themes that clean, simple and just work.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwpautolistings.com\" rel=\"nofollow ugc\">Auto Listings\u003C\u002Fa> – A car sale and dealership plugin for WordPress.\u003C\u002Fli>\n\u003C\u002Ful>\n","Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for your custom post types in WordPress.",500000,23135036,96,162,"2026-03-05T07:31:00.000Z","6.5","7.1",[116,52,117,102,72],"custom-fields","custom-taxonomies","https:\u002F\u002Fmetabox.io","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmeta-box.5.11.2.zip",89,6,"2026-03-06 19:09:12",{"slug":124,"name":125,"version":126,"author":127,"author_profile":128,"description":129,"short_description":130,"active_installs":131,"downloaded":132,"rating":110,"num_ratings":133,"last_updated":134,"tested_up_to":135,"requires_at_least":136,"requires_php":137,"tags":138,"homepage":139,"download_link":140,"security_score":141,"vuln_count":142,"unpatched_count":25,"last_vuln_date":143,"fetched_at":27},"pods","Pods – Custom Content Types and Fields","3.3.7","Scott Kingsley Clark","https:\u002F\u002Fprofiles.wordpress.org\u002Fsc0ttkclark\u002F","\u003Cp>Manage all your custom content needs in one location with the Pods Framework.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Create content types\u003C\u002Fstrong> including Custom Post Types, Custom Taxonomies, and our special Advanced Content Types (ACTs get their own custom tables)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Extend and customize content types\u003C\u002Fstrong> including Posts, Pages, Categories, Tags, Users, and Media with one easy click\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Create custom settings pages\u003C\u002Fstrong> easily within seconds\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Add custom fields\u003C\u002Fstrong> to \u003Cem>any\u003C\u002Fem> content type\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Conditionally show fields\u003C\u002Fstrong> based on the value of other fields with Conditional Logic\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Group your fields\u003C\u002Fstrong> however you’d like into their own sections and add additional headings to help organize\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Show your fields\u003C\u002Fstrong> anywhere using our \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-blocks\u002F\" rel=\"nofollow ugc\">blocks\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-shortcode\u002F\" rel=\"nofollow ugc\">shortcodes\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-widgets\u002F\" rel=\"nofollow ugc\">widgets\u003C\u002Fa>, or the non-coder \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-templates\u002F\" rel=\"nofollow ugc\">Pods Template\u003C\u002Fa> approach along with our \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-templates\u002Fauto-templates\u002F\" rel=\"nofollow ugc\">automatic theme integration\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Create connections\u003C\u002Fstrong> between any of your content with \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Ffields\u002Frelationship\u002F\" rel=\"nofollow ugc\">relationship fields\u003C\u002Fa> to keep your content organized\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Let Pods help you grow your development and site building skills so that you can manage content beyond the standard WordPress Posts & Pages.\u003C\u002Fp>\n\u003Cp>Want to check it out? Give Pods a test drive with our new \u003Ca href=\"https:\u002F\u002Fpods.io\u002Fdemo\u002F\" rel=\"nofollow ugc\">One-click Demo\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Check out our \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002F\" rel=\"nofollow ugc\">Documentation\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fpods\u002F\" rel=\"ugc\">Support Forums\u003C\u002Fa>, and our \u003Ca href=\"https:\u002F\u002Fsupport.pods.io\u002Fchat\u002F\" rel=\"nofollow ugc\">Live Community Slack Chat\u003C\u002Fa> for assistance building your dream project with Pods.\u003C\u002Fp>\n\u003Ch4>Introduction\u003C\u002Fh4>\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\u002F0WqKZr2gPZY?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\u003Ch4>Content types that evolve with your needs\u003C\u002Fh4>\n\u003Cp>Create any type of content that you want — small or large — we’ve got you covered. Every content type created with Pods gets all the love it needs to grow up big and strong. You’ll get an easy-to-use interface that lets you manage field groups, custom fields, and how your content type will look or function.\u003C\u002Fp>\n\u003Ch4>Create new content types\u003C\u002Fh4>\n\u003Cp>With Pods, you can create entirely new content types and settings pages.\u003C\u002Fp>\n\u003Ch4>Every Field Type, FREE\u003C\u002Fh4>\n\u003Cp>If you choose to use Pods for your custom fields, you’ll get every field type you need, free of charge. Pods works great alongside \u003Ca href=\"https:\u002F\u002Fcomparewp.org\u002Fcck\" rel=\"nofollow ugc\">other custom field plugins\u003C\u002Fa> like \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fadvanced-custom-fields\u002F\" rel=\"ugc\">Advanced Custom Fields\u003C\u002Fa> too.\u003C\u002Fp>\n\u003Cp>We have an extensive collection of over \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Ffields\u002F\" rel=\"nofollow ugc\">25 different input types to choose from on 20+ different field types for any content structure\u003C\u002Fa>. Each field type comes with their own additional options to help you customize content entry and display.\u003C\u002Fp>\n\u003Cp>You can also control visibility by role\u002Fcapability and \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Ffields\u002Fsettings-advanced\u002F\" rel=\"nofollow ugc\">other advanced options\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Repeatable Fields:\u003C\u002Fstrong> Turn almost any field into a repeatable field with multiple values\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Text:\u003C\u002Fstrong> Plain Text, Website, Phone, Email, Password\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Paragraph:\u003C\u002Fstrong> Plain Paragraph Text, WYSIWYG (Visual Editor), Code (Syntax Highlighting)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Date \u002F Time:\u003C\u002Fstrong> Date and Time, Date, Time\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Number:\u003C\u002Fstrong> Plain Number, Currency (30+ international currencies)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Relationships \u002F Media:\u003C\u002Fstrong> File \u002F Image \u002F Video (Media library and basic upload options available), Avatar (for extended Users), oEmbed, Relationship (Dropdown, Multi Select, Autocomplete, Checkboxes, Radio Buttons, and List View available)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Checkbox\u003C\u002Fstrong> (Yes \u002F No)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Color Picker\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Layout Fields:\u003C\u002Fstrong> Heading text, HTML content\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Relationships to rule the world with\u003C\u002Fh4>\n\u003Cp>The power is in your hands with our comprehensive support to \u003Cstrong>relate your content to anything\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Custom defined lists\u003C\u002Fstrong> of text options\u003C\u002Fli>\n\u003Cli>Relate to any \u003Cstrong>Post Type or Taxonomy\u003C\u002Fstrong> posts \u002F terms\u003C\u002Fli>\n\u003Cli>Relate to any \u003Cstrong>User\u003C\u002Fstrong> profile\u003C\u002Fli>\n\u003Cli>Relate to \u003Cstrong>User Roles or Capabilities\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>Relate to any \u003Cstrong>Comment\u003C\u002Fstrong>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>And many other relationships are also available including:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Image Sizes\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Navigation Menus\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>Relate to content within \u003Cstrong>any Database Table\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Countries\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>US States\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Canadian Provinces\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Calendar – Days of Week\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Calendar – Months of Year\u003C\u002Fstrong> (predefined)\u003C\u002Fli>\n\u003Cli>And many more!\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Optional Components to do even more\u003C\u002Fh4>\n\u003Cp>You can enable some of our included components to extend your WordPress site even further:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Types-only Mode\u003C\u002Fstrong> – On our Pods Settings page, you can choose to disable creating custom fields for a performance boost if you only want to use Pods for content types or you plan on using it alongside of other custom field plugins\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Pods Templates\u003C\u002Fstrong> – Use our \u003Ca href=\"https:\u002F\u002Fdocs.pods.io\u002Fdisplaying-pods\u002Fpods-templates\u002F\" rel=\"nofollow ugc\">template engine\u003C\u002Fa> to create templates that can be handed off to clients for care-free management\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Markdown Syntax\u003C\u002Fstrong> – Parses \u003Ca href=\"https:\u002F\u002Fwww.markdownguide.org\u002Fbasic-syntax\" rel=\"nofollow ugc\">Markdown Syntax\u003C\u002Fa> for Paragraph Text \u002F WYSIWYG fields\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Advanced Relationships\u003C\u002Fstrong> – Add even more relationship objects including Database Tables, Multisite Networks, Multisite Sites, Themes, Page Templates (in the theme), Sidebars, Post Type Objects, and Taxonomy Objects\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Table Storage\u003C\u002Fstrong> – Enable table-based database storage for custom fields on Post Types, Media, Users, and Comments\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Roles and Capabilities\u003C\u002Fstrong> – Create or edit Roles for your site and customize what they have access to\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Advanced Content Types\u003C\u002Fstrong> – Create entirely custom content types that have their own database table, and they will exist outside the normal WordPress context avoiding meta database tables\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Pods Pages\u003C\u002Fstrong> – Create custom pages that function off of your site’s URL path with wildcard support and choose the Page Template in the theme to use — most useful paired with Advanced Content Types\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Plugins that integrate with Pods\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwplake.org\u002Fadvanced-views-lite\u002F?ref=5\" rel=\"nofollow ugc\">Advanced Views Lite\u003C\u002Fa> – Lets you build templates (views) and queries (cards) so that you can manage your content rendering with less code. (Disclaimer: We have an affiliate link to them to help support our project)\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fbricksbuilder.io\u002F\" rel=\"nofollow ugc\">Bricks Builder\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcodepress-admin-columns\u002F\" rel=\"ugc\">Codepress Admin Columns\u003C\u002Fa> using premium \u003Ca href=\"https:\u002F\u002Fwww.admincolumns.com\u002Fpods\u002F\" rel=\"nofollow ugc\">Admin Columns Pro\u003C\u002Fa> Pods integration\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fconductorplugin.com\u002F\" rel=\"nofollow ugc\">Conductor\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Felementor.com\u002Fpro\u002F\" rel=\"nofollow ugc\">Elementor Pro\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpolylang\u002F\" rel=\"ugc\">Polylang\u003C\u002Fa> has direct integration in Pods itself\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Ftimber-library\u002F\" rel=\"ugc\">Timber\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-graphql\u002F\" rel=\"ugc\">WPGraphQL\u003C\u002Fa> has direct integration in Pods itself\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwpml.org\u002F\" rel=\"nofollow ugc\">WPML\u003C\u002Fa> has direct integration in Pods itself\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fyet-another-related-posts-plugin\u002F\" rel=\"ugc\">YARPP\u003C\u002Fa> has direct integration in Pods itself\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Themes that integrate with Pods\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwww.studiopress.com\u002Fthemes\u002Fgenesis\u002F\" rel=\"nofollow ugc\">Genesis\u003C\u002Fa> (StudioPress) has direct integration in Pods itself\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Extend Pods with Free Add-Ons\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-beaver-builder-themer-add-on\u002F\" rel=\"ugc\">Pods Beaver Themer Add-On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwww.wpbeaverbuilder.com\u002Fbeaver-themer\u002F\" rel=\"nofollow ugc\">Beaver Themer\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-gravity-forms\u002F\" rel=\"ugc\">Pods Gravity Forms Add-On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwww.gravityforms.com\u002F\" rel=\"nofollow ugc\">Gravity Forms\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-alternative-cache\u002F\" rel=\"ugc\">Pods Alternative Cache Add-On\u003C\u002Fa> – Speed up Pods on servers with limited object caching capabilities\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-seo\u002F\" rel=\"ugc\">Pods SEO Add-On\u003C\u002Fa> – Integrates Pods Advanced Content Types with Yoast SEO\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpods-ajax-views\u002F\" rel=\"ugc\">Pods AJAX Views Add-On\u003C\u002Fa> – Adds new functions you can use to output template parts that load via AJAX after other page elements\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Extend Pods with Free Third-party Add-Ons\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpmpro-pods\u002F\" rel=\"ugc\">Paid Memberships Pro – Pods Add On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpaid-memberships-pro\u002F\" rel=\"ugc\">Paid Memberships Pro\u003C\u002Fa> to extend PMPro objects with custom fields added by Pods\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpanda-pods-repeater-field\u002F\" rel=\"ugc\">Panda Pods Repeater Field Add-On\u003C\u002Fa> – Lets you add groups of fields that repeat and are stored in their own custom database table (Advanced setup required)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Pods Pro by SKCDEV Premium Add-Ons\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Flist-tables\u002F\" rel=\"nofollow ugc\">List Tables Add-On\u003C\u002Fa> – A new block and shortcode to list\u002Ffilter content from Pods in a table format\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Fpage-builder-toolkit\u002F\" rel=\"nofollow ugc\">Page Builder Toolkit Add-On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fbeaver-builder-lite-version\u002F\" rel=\"ugc\">Beaver Builder\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwww.wpbeaverbuilder.com\u002Fbeaver-themer\u002F\" rel=\"nofollow ugc\">Beaver Themer\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fconditionalblocks.com\u002F\" rel=\"nofollow ugc\">Conditional Blocks Pro\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwww.elegantthemes.com\u002Fgallery\u002Fdivi\u002F\" rel=\"nofollow ugc\">Divi Theme\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Felementor\u002F\" rel=\"ugc\">Elementor\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fgenerateblocks\u002F\" rel=\"ugc\">GenerateBlocks\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Foxygenbuilder.com\u002F\" rel=\"nofollow ugc\">Oxygen Builder\u003C\u002Fa>, and \u003Ca href=\"https:\u002F\u002Fwpstackable.com\u002Fpremium\u002F\" rel=\"nofollow ugc\">Stackable Blocks (premium)\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Fadvanced-relationship-storage\u002F\" rel=\"nofollow ugc\">Advanced Relationships Storage Add-On\u003C\u002Fa> – Advanced options for relationship storage\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Ftablepress-integration\u002F\" rel=\"nofollow ugc\">TablePress Integration Add-On\u003C\u002Fa> – Integrates Pods with \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Ftablepress\u002F\" rel=\"ugc\">TablePress\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpods-pro.skc.dev\u002Fdownloads\u002Fadvanced-permalinks\u002F\" rel=\"nofollow ugc\">Advanced Permalinks Add-On\u003C\u002Fa> – Advanced permalink structures and taxonomy landing pages\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>How can I translate Pods into my own language?\u003C\u002Fh3>\n\u003Cp>Many thanks go out to the fine folks who have helped us translate the Pods plugin into many other languages.\u003C\u002Fp>\n\u003Cp>Join us in further translating the Pods interface on the official \u003Ca href=\"https:\u002F\u002Ftranslate.wordpress.org\u002Fprojects\u002Fwp-plugins\u002Fpods\" rel=\"nofollow ugc\">Translating WordPress dashboard\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>We are also available through our \u003Ca href=\"https:\u002F\u002Fsupport.pods.io\u002Fchat\u002F\" rel=\"nofollow ugc\">Live Community Slack Chat\u003C\u002Fa> to help our translators get started and to support them on the process.\u003C\u002Fp>\n\u003Cp>Are you looking to translate your Pods and Fields themselves? You’ll want to enable the “Translate Pods” component from Pods Admin > Components.\u003C\u002Fp>\n\u003Ch3>Contributors\u003C\u002Fh3>\n\u003Cp>Pods really wouldn’t be where it is without all the contributions from our \u003Ca href=\"https:\u002F\u002Ffriends.pods.io\" rel=\"nofollow ugc\">donors\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpods-framework\u002Fpods\u002Fgraphs\u002Fcontributors\" rel=\"nofollow ugc\">code\u002Fsupport contributors\u003C\u002Fa>.\u003C\u002Fp>\n","Pods is a framework for creating, managing, and deploying customized content types and fields for any project.",100000,5095152,416,"2026-02-25T14:19:00.000Z","7.0","6.3","7.2",[51,116,52,117,124],"https:\u002F\u002Fpods.io\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpods.3.3.7.zip",87,14,"2025-03-02 00:00:00",{"attackSurface":145,"codeSignals":204,"taintFlows":214,"riskAssessment":215,"analyzedAt":225},{"hooks":146,"ajaxHandlers":200,"restRoutes":201,"shortcodes":202,"cronEvents":203,"entryPointCount":25,"unprotectedCount":25},[147,153,158,165,169,172,175,179,183,187,191,194,197],{"type":148,"name":149,"callback":150,"file":151,"line":152},"filter","acf\u002Flocation\u002Frule_values\u002Fpage_type","acf_page_types_options","includes\\acf.php",8,{"type":148,"name":154,"callback":155,"priority":156,"file":151,"line":157},"acf\u002Flocation\u002Frule_match\u002Fpage_type","acf_page_types_match",10,9,{"type":159,"name":160,"callback":161,"priority":162,"file":163,"line":164},"action","admin_init","hide_editor",5,"includes\\admin-mods.php",7,{"type":159,"name":166,"callback":167,"priority":168,"file":163,"line":152},"theme_page_templates","hide_page_templates",50,{"type":159,"name":170,"callback":171,"file":163,"line":157},"edit_form_after_title","editing_message",{"type":148,"name":173,"callback":174,"priority":156,"file":163,"line":156},"display_post_states","add_display_post_states",{"type":159,"name":176,"callback":177,"file":178,"line":164},"plugins_loaded","load_text_domain","includes\\l10n.php",{"type":148,"name":180,"callback":181,"file":182,"line":152},"wp_nav_menu_objects","current_archive_pages","includes\\menus.php",{"type":148,"name":184,"callback":185,"priority":156,"file":186,"line":156},"register_post_type_args","set_post_type_archive","includes\\permalinks.php",{"type":148,"name":188,"callback":189,"priority":156,"file":186,"line":190},"register_taxonomy_args","set_taxonomy_archive",11,{"type":159,"name":192,"callback":193,"priority":156,"file":186,"line":142},"post_updated","updated_post",{"type":159,"name":160,"callback":195,"file":186,"line":196},"maybe_flush_rules",15,{"type":159,"name":160,"callback":198,"file":199,"line":157},"add_settings_fields","includes\\settings.php",[],[],[],[],{"dangerousFunctions":205,"sqlUsage":206,"outputEscaping":208,"fileOperations":25,"externalRequests":25,"nonceChecks":25,"capabilityChecks":25,"bundledLibraries":213},[],{"prepared":25,"raw":25,"locations":207},[],{"escaped":45,"rawEcho":14,"locations":209},[210],{"file":199,"line":211,"context":212},49,"raw output",[],[],{"summary":216,"deductions":217},"The static analysis of the \"post-type-archive-pages\" plugin version 1.0.4 reveals an exceptionally clean code base with no identified dangerous functions, SQL injection vulnerabilities, or file operations. The plugin also demonstrates good practices by exclusively using prepared statements for its SQL queries. The lack of external HTTP requests and the absence of any taint analysis findings further bolster its security profile.  Furthermore, the plugin has no recorded vulnerability history, including critical or high severity CVEs, suggesting a stable and well-maintained codebase over time.\n\nHowever, a significant concern arises from the complete absence of capability checks and nonce checks. While the plugin currently presents zero entry points without authentication, this lack of built-in security mechanisms means that if any new entry points were to be introduced in future updates, they could be unintentionally exposed and vulnerable.  The 67% output escaping rate, while not critical, also indicates a minor area for improvement to ensure all dynamic output is properly sanitized to prevent potential cross-site scripting (XSS) vulnerabilities.\n\nIn conclusion, the \"post-type-archive-pages\" plugin v1.0.4 exhibits a strong security posture with a clean codebase and no known historical vulnerabilities. Its adherence to secure SQL practices is commendable. The primary weakness lies in the complete reliance on WordPress's core security for entry points, with no specific capability or nonce checks implemented within the plugin itself. This, coupled with a minor output escaping deficiency, presents a slight but notable area for potential future risk if the plugin's attack surface expands without corresponding security controls.",[218,220,222],{"reason":219,"points":162},"Missing capability checks",{"reason":221,"points":162},"Missing nonce checks",{"reason":223,"points":224},"Output escaping not fully implemented (33% unescaped)",3,"2026-03-16T19:58:22.002Z",{"wat":227,"direct":232},{"assetPaths":228,"generatorPatterns":229,"scriptPaths":230,"versionParams":231},[],[],[],[],{"cssClasses":233,"htmlComments":234,"htmlAttributes":235,"restEndpoints":236,"jsGlobals":237,"shortcodeOutput":238},[],[],[],[],[],[]]