[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fkugyijY_b612Qe4BPSCeYMGRxuLSGj6Za0oVIwYcj74":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":25,"download_link":26,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30,"vulnerabilities":31,"developer":32,"crawl_stats":29,"alternatives":39,"analysis":141,"fingerprints":296},"super-cpt","SuperCPT","0.2.1","Matthew Boynes","https:\u002F\u002Fprofiles.wordpress.org\u002Fmboynes\u002F","\u003Ch4>UPGRADE NOTICE\u003C\u002Fh4>\n\u003Cp>SuperCPT now uses Font Awesome instead of Glyphicons. Some icon names will carry over, but not all. If this is a considerable inconvenience for you for a project, simply do not update it. It’s not a security release, so updating isn’t necessary.\u003C\u002Fp>\n\u003Ch4>Overview\u003C\u002Fh4>\n\u003Cp>SuperCPT is an object wrapper for Custom Post Types, Custom Taxonomies, and Custom Post Meta “for coders, by coders.” Simply put, SuperCPT:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>DRYs up the Custom Post Type and Custom Taxonomy process (e.g. automatically adds the name to all the labels),\u003C\u002Fli>\n\u003Cli>allows you to set default options for all your Custom Post Types and Taxonomies,\u003C\u002Fli>\n\u003Cli>significantly simplifies the process of creating, saving, and displaying Custom Post Meta,\u003C\u002Fli>\n\u003Cli>is sexy! Your custom fields are styled to look great and SuperCPT comes with 361 awesome icons courtesy of \u003Ca href=\"http:\u002F\u002Ffontawesome.io\u002F\" rel=\"nofollow ugc\">Font Awesome\u003C\u002Fa>.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Demo Video\u003C\u002Fh4>\n\u003Cdiv class=\"embed-vimeo\" style=\"text-align: center;\">\u003Ciframe loading=\"lazy\" src=\"https:\u002F\u002Fplayer.vimeo.com\u002Fvideo\u002F59368054\" width=\"750\" height=\"422\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen>\u003C\u002Fiframe>\u003C\u002Fdiv>\n\u003Ch4>TextMate\u002FSublime Text 2 Bundle\u003C\u002Fh4>\n\u003Cp>If you use TextMate, Sublime Text 2, or another editor which supports TextMate bundles, check out \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fmboynes\u002Fsuper-cpt-bundle\" rel=\"nofollow ugc\">this set of snippets\u003C\u002Fa> to turbo-charge your development.\u003C\u002Fp>\n\u003Ch4>And more…\u003C\u002Fh4>\n\u003Cp>See the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fsuper-cpt\u002Fother_notes\u002F\" rel=\"ugc\">Other Notes tab\u003C\u002Fa> for instructions and demo code. Find more demos and a full reference \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fmboynes\u002Fsuper-cpt\u002Fwiki\" rel=\"nofollow ugc\">at GitHub\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Since you’re a hard-core coder, \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fmboynes\u002Fsuper-cpt\" rel=\"nofollow ugc\">check this out on GitHub\u003C\u002Fa> if you want to contribute!\u003C\u002Fp>\n\u003Ch3>Instructions\u003C\u002Fh3>\n\u003Cp>Depending on when and where you’re declaring your Custom Post Types and Taxonomies, you have different options for which action to hook onto. \u003Ccode>after_setup_theme\u003C\u002Fcode> is the safest bet, but if you’re referencing this in another plugin, \u003Ccode>plugins_loaded\u003C\u002Fcode> is a good choice. To avoid a fatal error if something goes awry, you should check to see if the class \u003Ccode>Super_Custom_Post_Type\u003C\u002Fcode> exists before referencing it. Don’t worry about keeping up, reference code is below.\u003C\u002Fp>\n\u003Ch4>Custom Post Types\u003C\u002Fh4>\n\u003Cp>To define a new Custom Post Type, instantiate the \u003Ccode>Super_Custom_Post_Type\u003C\u002Fcode> class with a string for the post type. For example,\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$movies = new Super_Custom_Post_Type( 'movie' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>It works very much like \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FFunction_Reference\u002Fregister_post_type\" rel=\"nofollow ugc\">\u003Ccode>register_post_type\u003C\u002Fcode>\u003C\u002Fa>. The first thing you gained by using this is that the labels all got setup with either ‘Movie’ or ‘Movies’. If our post type were ‘indie-film’, the labels would have “Indie Film” and “Indie Films” as appropriate. Of course, you do have the ability to set the plural word in cases such as goose\u002Fgeese. You also gained the ability to define your own custom post type defaults through a filter. Lastly, you gained access to \u003Ccode>Super_Custom_Post_Type\u003C\u002Fcode>‘s parent class, \u003Ccode>Super_Custom_Post_Meta\u003C\u002Fcode>, for fast, clean, intuitive custom post meta, which we’ll go into shortly.\u003C\u002Fp>\n\u003Cp>Lastly, if you’ve built a lot of custom post types, you’re probably sick and tired of the pushpin icon. SuperCPT comes with 350 gorgeous icons courtesy of \u003Ca href=\"http:\u002F\u002Ffontawesome.io\u002F\" rel=\"nofollow ugc\">Font Awesome\u003C\u002Fa> that are extremely easy to implement. Here’s what it looks like:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$movies->set_icon( 'film' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Custom Taxonomies\u003C\u002Fh4>\n\u003Cp>To define a new Custom Taxonomy, much like with Custom Post Types, you instantiate \u003Ccode>Super_Custom_Taxonomy\u003C\u002Fcode> with a string for the term name. For example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$actors = new Super_Custom_Taxonomy( 'actor' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Again, we got free labels for doing this, using either ‘Actor’ or ‘Actors’ as appropriate, without needing to specify the 16 labels individually.\u003C\u002Fp>\n\u003Ch4>Custom Post Meta\u003C\u002Fh4>\n\u003Cp>Custom Post Meta is where SuperCPT shines the brightest, because this process is typically the most time-consuming. \u003Ccode>Super_Custom_Post_Meta\u003C\u002Fcode> is a free-standing class that can be added to any post type, even built-in post types (posts and pages). This class has a method \u003Ccode>add_meta_box\u003C\u002Fcode> which does the bulk of the work, and somewhat mimics the WordPress function. Here’s an example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$movies->add_meta_box( array(\n    'id' => 'features',\n    'fields' => array(\n        'tagline' => array( 'type' => 'text' )\n    )\n) );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The method \u003Ccode>add_meta_box\u003C\u002Fcode> takes an array of parameters (unlike the core function which takes normal ordered arguments). \u003Ccode>id\u003C\u002Fcode> is the only required attribute, and that becomes the ID of the meta box as well as the title (this will get converted into “words” for the title, e.g. \u003Ccode>\"movie_details\"\u003C\u002Fcode> would become “Movie Details”). \u003Ccode>fields\u003C\u002Fcode> is an array of all the fields in the meta box. It’s an associative array, where the keys in the array are the field names and the values are another associative array of attributes for the field. The keys closely reflect the HTML attributes in the resulting field, and any key not known by the plugin will in fact become an HTML attribute (e.g. passing \u003Ccode>'data-src' => 'foo'\u003C\u002Fcode> would become the HTML attribute \u003Ccode>data-src=\"foo\"\u003C\u002Fcode> in the field). See the reference for the full gamut of options, both for the \u003Ccode>add_meta_box\u003C\u002Fcode> argument array and the fields array.\u003C\u002Fp>\n\u003Cp>Long story short, using this class means you don’t have to do any additional work to store data, retrieve data, style the boxes, and so on.\u003C\u002Fp>\n\u003Ch4>Helper Functions\u003C\u002Fh4>\n\u003Cp>SuperCPT has a couple of helper functions for displaying your post meta. \u003Ccode>get_scpt_formatted_meta\u003C\u002Fcode> and \u003Ccode>the_scpt_formatted_meta\u003C\u002Fcode>\u003C\u002Fp>\n\u003Ch3>Demo Code\u003C\u002Fh3>\n\u003Cp>Here is the full demo code:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function scpt_demo() {\n    if ( ! class_exists( 'Super_Custom_Post_Type' ) )\n        return;\n\n    $demo_posts = new Super_Custom_Post_Type( 'demo-post' );\n\n    # Test Icon. Should be a square grid.\n    $demo_posts->set_icon( 'th-large' );\n\n    # Taxonomy test, should be like tags\n    $tax_tags = new Super_Custom_Taxonomy( 'tax-tag' );\n\n    # Taxonomy test, should be like categories\n    $tax_cats = new Super_Custom_Taxonomy( 'tax-cat', 'Tax Cat', 'Tax Cats', 'category' );\n\n    # Connect both of the above taxonomies with the post type\n    connect_types_and_taxes( $demo_posts, array( $tax_tags, $tax_cats ) );\n\n    # Add a meta box with every field type\n    $demo_posts->add_meta_box( array(\n        'id' => 'demo-fields',\n        'context' => 'normal',\n        'fields' => array(\n            'textbox-demo' => array(),\n            'textarea-demo' => array( 'type' => 'textarea' ),\n            'wysiwyg-demo' => array( 'type' => 'wysiwyg' ),\n            'boolean-demo' => array( 'type' => 'boolean' ),\n            'checkboxes-demo' => array( 'type' => 'checkbox', 'options' => array( 'one', 'two', 'three' ) ),\n            'radio-buttons-demo' => array( 'type' => 'radio', 'options' => array( 'one', 'two', 'three' ) ),\n            'select-demo' => array( 'type' => 'select', 'options' => array( 1 => 'one', 2 => 'two', 3 => 'three' ) ),\n            'multi-select-demo' => array( 'type' => 'select', 'options' => array( 'one', 'two', 'three' ), 'multiple' => 'multiple' ),\n            'date-demo' => array( 'type' => 'date' ),\n            'label-override-demo' => array( 'label' => 'Label Demo' )\n        )\n    ) );\n\n    # Add another CPT to test one-to-one (it could just as easily be one-to-many or many-to-many)\n    $linked_posts = new Super_Custom_Post_Type( 'linked-post', 'Other Post', 'Other Posts' );\n    $linked_posts->add_meta_box( array(\n        'id' => 'one-to-one',\n        'title' => 'Testing One-to-One relationship',\n        'context' => 'side',\n        'fields' => array(\n            'demo-posts' => array( 'type' => 'select', 'data' => 'demo-post' ),\n            'side-wysiwyg' => array( 'type' => 'wysiwyg' )\n        )\n    ) );\n    $linked_posts->set_icon( 'cogs' );\n\n}\nadd_action( 'after_setup_theme', 'scpt_demo' );\u003Ch3>To-Do\u003C\u002Fh3>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>1. Add better support for multiple fields for one meta key\u003Cbr \u002F>\n2. Add easy RSS feeds, e.g. in fields array, a parameter might be \u003Ccode>'rss' => 'PubDate'\u003C\u002Fcode> to prefer that field’s data over the post’s publication date.\u003C\u002Fp>\n","Insanely easy and attractive custom post types, custom post meta, and custom taxonomies",700,18930,100,14,"2013-08-10T20:33:00.000Z","3.6.1","3.0","",[20,21,22,23,24],"cms","custom-field","custom-fields","custom-post-type","custom-post-types","http:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fsuper-cpt\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsuper-cpt.0.2.1.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":33,"display_name":7,"profile_url":8,"plugin_count":34,"total_installs":35,"avg_security_score":27,"avg_patch_time_days":36,"trust_score":37,"computed_at":38},"mboynes",6,8130,30,84,"2026-04-04T07:00:48.721Z",[40,58,79,100,121],{"slug":41,"name":42,"version":43,"author":44,"author_profile":45,"description":46,"short_description":47,"active_installs":48,"downloaded":49,"rating":28,"num_ratings":28,"last_updated":50,"tested_up_to":51,"requires_at_least":52,"requires_php":18,"tags":53,"homepage":56,"download_link":57,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"kontrolwp","KontrolWP – Kontrol WordPress Developer Kit","2.0.7","Techunits Research & Development Solutions","https:\u002F\u002Fprofiles.wordpress.org\u002Fskall\u002F","\u003Cp>KontrolWP – Kontrol WordPress Developer Kit is an advanced WordPress plugin for developers. Create custom CMS sites quickly and easily using advanced custom fields, custom post types, custom taxonomies, admin menu editors, SEO and much more through an easy to use interface.\u003C\u002Fp>\n\u003Cp>Ever wanted to just install just one WordPress plugin in order to whip out an awesome custom CMS or blog for a client quickly and easily? We know we did! This plugin is made by developers, for developers.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fkontrolwp\u002Fscreenshots\u002F\" rel=\"ugc\">View our screenshots for a quick peek of what Kontrol can do\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>KontrolWP now supports full internationalisation (i18n) and can be easily translated to any other language supported by WordPress –  At the moment we only support English in full, but we currently have partial language support for over 20 languages – \u003Ca href=\"https:\u002F\u002Fwww.kontrolwp.com\u002Fplugin\u002Fwordpress-developer-kit\u002Flanguages-supported\" rel=\"nofollow ugc\">View our site for more information\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>For more screenshots, documentation, information and support, please visit our website at \u003Ca href=\"https:\u002F\u002Fwww.kontrolwp.com\" rel=\"nofollow ugc\">https:\u002F\u002Fwww.kontrolwp.com\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Cp>~~~~~~~~~~~~~~~~~~~~~~~~\u003C\u002Fp>\n\u003Ch4>Advanced Custom Fields\u003C\u002Fh4>\n\u003Cp>Create incredibly powerful and flexible custom fields for use in your clients CMS or blog.\u003C\u002Fp>\n\u003Cp>From a simple text field with validation to advanced image and file inline uploads, you will be able to create virtually any type of custom field easily and quickly. All custom fields come with a wealth of configurable options and also support many types of advanced field validation methods on them such as ‘required’, ’email address’, ‘URL’ and many more.\u003C\u002Fp>\n\u003Ch4>Custom Settings \u002F Options\u003C\u002Fh4>\n\u003Cp>The custom settings module allows you to use the power of our custom fields to create your own sets of custom settings \u002F options for your CMS.\u003C\u002Fp>\n\u003Cp>These are highly useful for creating and storing information \u002F images \u002F files that don’t need to be tied to any post, but instead help control how the site works. All custom settings fields support a wide array of validation methods (required, email, URL etc) and can be organised into categories with their own admin menu entry for ease of access. From simple text fields, to an advanced image upload or even a ‘repeatable’ field, you’ll find the field type you need for virtually any type of custom setting you need to add to your CMS.\u003C\u002Fp>\n\u003Ch4>Custom Post Types\u003C\u002Fh4>\n\u003Cp>Creating and managing WordPress custom post types has never been easier, use our new advanced and easy to use custom post type manager for all your post type needs.\u003C\u002Fp>\n\u003Cp>Create, hide, edit, disable all your own new custom content post types using our advanced module. Add, Edit, Move any columns that show up when all the posts are listed under that post type – even add in data from custom fields, taxonomies and more post information than you can shake a stick at. Upload icons for the custom post type menu entries, set permissions and automatically generate all labels for a new custom post type in just seconds.\u003C\u002Fp>\n\u003Ch4>Custom Taxonomies\u003C\u002Fh4>\n\u003Cp>Taxonomies allow you to group or categorise your post type content. These are very powerful and essential in any advanced WordPress CMS or Blog.\u003C\u002Fp>\n\u003Cp>Using our custom taxonomy manager, you can create new taxonomies, edit \u002F disable current ones, assign them to selected post types, set permissions and automatically generate all labels for a new custom taxonomies in just seconds.\u003C\u002Fp>\n\u003Ch4>Post Duplicator\u003C\u002Fh4>\n\u003Cp>Post duplicator will allow you to Clone any existing post\u002Fpage\u002Fcustom post type along with it’s custom fields data to a new editable post draft. Then you can make minor changes to the new draft post and publish live faster.\u003C\u002Fp>\n\u003Cp>This will help content editors to create\u002Fmanage artciles ever than before. As we have integrated this exciting features into KontrolWP itself so developers don’t need to install or look for any other plugin for this purpose only.\u003C\u002Fp>\n\u003Ch4>Custom Post Type Widgets\u003C\u002Fh4>\n\u003Cp>KontrolWP is now equipped with Custom Post Type widgets for most recent posts for Custom Post Types created by developers. This will help customers show most recent post entries to frontend sidebar. It’s also highly customizable due use of “kwp” prefixxed CSS property names.\u003C\u002Fp>\n\u003Ch3>Installation, Screenshots and Support\u003C\u002Fh3>\n\u003Cp>For more information, screenshots and support, please visit our website at \u003Ca href=\"https:\u002F\u002Fwww.kontrolwp.com\" rel=\"nofollow ugc\">https:\u002F\u002Fwww.kontrolwp.com\u003C\u002Fa>\u003C\u002Fp>\n","KontrolWP is an advanced Wordpress plugin for developers. Easily create CMS sites using advanced custom fields, custom post types, SEO and more.",10,1470,"2016-12-13T09:59:00.000Z","4.7.32","3.5",[54,20,22,24,55],"advanced-custom-fields","custom-taxonomies","http:\u002F\u002Fwww.kontrolwp.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fkontrolwp.zip",{"slug":59,"name":60,"version":61,"author":60,"author_profile":62,"description":63,"short_description":64,"active_installs":65,"downloaded":66,"rating":67,"num_ratings":68,"last_updated":69,"tested_up_to":70,"requires_at_least":71,"requires_php":72,"tags":73,"homepage":75,"download_link":76,"security_score":77,"vuln_count":34,"unpatched_count":28,"last_vuln_date":78,"fetched_at":30},"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.9.4","6.5","7.1",[22,24,55,59,74],"post-type","https:\u002F\u002Fmetabox.io","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmeta-box.5.11.2.zip",89,"2026-03-06 19:09:12",{"slug":80,"name":81,"version":82,"author":83,"author_profile":84,"description":85,"short_description":86,"active_installs":87,"downloaded":88,"rating":67,"num_ratings":89,"last_updated":90,"tested_up_to":91,"requires_at_least":92,"requires_php":93,"tags":94,"homepage":96,"download_link":97,"security_score":98,"vuln_count":14,"unpatched_count":28,"last_vuln_date":99,"fetched_at":30},"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",[95,22,24,55,80],"content-types","https:\u002F\u002Fpods.io\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpods.3.3.7.zip",87,"2025-03-02 00:00:00",{"slug":101,"name":102,"version":103,"author":104,"author_profile":105,"description":106,"short_description":107,"active_installs":108,"downloaded":109,"rating":110,"num_ratings":111,"last_updated":112,"tested_up_to":113,"requires_at_least":114,"requires_php":18,"tags":115,"homepage":117,"download_link":118,"security_score":77,"vuln_count":119,"unpatched_count":28,"last_vuln_date":120,"fetched_at":30},"sydney-toolbox","Sydney Toolbox","1.36","Syed Balkhi","https:\u002F\u002Fprofiles.wordpress.org\u002Fsmub\u002F","\u003Cp>\u003Cstrong>The Sydney Toolbox plugin is meant to be used only with the Sydney WordPress theme.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This plugin registers custom post types and custom fields that are needed in the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fsydney\u002F\" rel=\"ugc\">Sydney theme\u003C\u002Fa>\u003C\u002Fp>\n","Registers custom post types and custom fields for the Sydney theme",60000,2515301,46,15,"2024-12-17T16:12:00.000Z","6.7.5","4.0",[22,24,116],"sydney","http:\u002F\u002Fathemes.com\u002Fplugins\u002Fsydney-toolbox","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsydney-toolbox.1.36.zip",5,"2024-05-13 23:40:54",{"slug":122,"name":123,"version":124,"author":125,"author_profile":126,"description":127,"short_description":128,"active_installs":129,"downloaded":130,"rating":131,"num_ratings":132,"last_updated":133,"tested_up_to":134,"requires_at_least":135,"requires_php":18,"tags":136,"homepage":18,"download_link":138,"security_score":13,"vuln_count":139,"unpatched_count":28,"last_vuln_date":140,"fetched_at":30},"wck-custom-fields-and-custom-post-types-creator","Custom Post Types and Custom Fields creator – WCK","2.3.8","madalin.ungureanu","https:\u002F\u002Fprofiles.wordpress.org\u002Fmadalinungureanu\u002F","\u003Cp>\u003Cstrong>\u003Ca href=\"http:\u002F\u002Fwww.cozmoslabs.com\u002Fwck-custom-fields-custom-post-types-plugin\u002F?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree\" rel=\"nofollow ugc\">WordPress Creation Kit\u003C\u002Fa>\u003C\u002Fstrong> consists of three tools that can help you create and maintain custom post types, custom taxonomies and most importantly, custom fields and metaboxes for your posts, pages or CPT’s.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>WCK Custom Fields Creator\u003C\u002Fstrong> offers an UI for setting up custom meta boxes with custom fields for your posts, pages or custom post types. Uses standard custom fields to store data. You can \u003Ca href=\"https:\u002F\u002Fwww.cozmoslabs.com\u002F25322-show-custom-fields-wordpress\u002F\" rel=\"nofollow ugc\">show custom fields\u003C\u002Fa> using code or with the Swift Templates module.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>WCK Custom Post Type Creator\u003C\u002Fstrong> facilitates creating custom post types by providing an UI for most of the arguments of register_post_type() function.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>WCK Taxonomy Creator\u003C\u002Fstrong> allows you to easily create and edit custom taxonomies for WordPress without any programming knowledge. It provides an UI for most of the arguments of register_taxonomy() function.\u003C\u002Fp>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F_ueYKlP_i7w?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>Custom Fields\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Custom fields types: WYSIWYG editor, upload, text, textarea, select, checkbox, radio, number, HTML, time-picker, phone, currency select, color picker, heading\u003C\u002Fli>\n\u003Cli>Easy to create custom fields for any post type.\u003C\u002Fli>\n\u003Cli>Support for \u003Cstrong>Repeater Fields\u003C\u002Fstrong> and \u003Cstrong>Repeater Groups\u003C\u002Fstrong> of custom fields.\u003C\u002Fli>\n\u003Cli>Drag and Drop to sort the Repeater Fields.\u003C\u002Fli>\n\u003Cli>Support for all input custom fields: text, textarea, select, checkbox, radio.\u003C\u002Fli>\n\u003Cli>Image \u002F File upload supported via the WordPress Media Uploader.\u003C\u002Fli>\n\u003Cli>Possibility to target only certain page-templates, target certain custom post types and even unique ID’s.\u003C\u002Fli>\n\u003Cli>All data handling is done with Ajax\u003C\u002Fli>\n\u003Cli>Data is saved as postmeta\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Custom Post Types and Taxonomy\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Create and edit Custom Post Types from the Admin UI\u003C\u002Fli>\n\u003Cli>Advanced Labeling Options\u003C\u002Fli>\n\u003Cli>Attach built in or custom taxonomies to post types\u003C\u002Fli>\n\u003Cli>Create and edit Custom Taxonomy from the Admin UI\u003C\u002Fli>\n\u003Cli>Attach the taxonomy to built in or custom post types\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>WCK PRO\u003C\u002Fh4>\n\u003Cp>The \u003Ca href=\"http:\u002F\u002Fwww.cozmoslabs.com\u002Fwck-custom-fields-custom-post-types-plugin\u002F?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree\" rel=\"nofollow ugc\">WCK PRO version\u003C\u002Fa> offers:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Swift Templates\u003C\u002Fstrong> – Build your front-end templates directly from the WordPress admin UI, without writing any PHP code. Easily display registered custom post types, custom fields and taxonomies in your current theme.\u003C\u002Fli>\n\u003Cli>Front-end Posting – form builder for content creation and editing\u003C\u002Fli>\n\u003Cli>Options Page Creator – create option pages for your theme or your plugin\u003C\u002Fli>\n\u003Cli>More field types: Date-picker, Country Select, User Select, CPT Select\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Premium Email Support for your project\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"http:\u002F\u002Fwww.cozmoslabs.com\u002Fwck-custom-fields-custom-post-types-plugin\u002F?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree\" rel=\"nofollow ugc\">See complete list of PRO features\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Website\u003C\u002Fh4>\n\u003Cp>http:\u002F\u002Fwww.cozmoslabs.com\u002Fwck-custom-fields-custom-post-types-plugin\u002F\u003C\u002Fp>\n\u003Ch4>Announcement Post and Video\u003C\u002Fh4>\n\u003Cp>http:\u002F\u002Fwww.cozmoslabs.com\u002F3747-wordpress-creation-kit-a-sparkling-new-custom-field-taxonomy-and-post-type-creator\u002F\u003C\u002Fp>\n","A must have tool for creating custom fields, custom post types and taxonomies, fast and without any programming knowledge.",10000,556858,94,97,"2025-08-13T15:52:00.000Z","6.8.5","3.1",[21,22,23,24,137],"wordpress-custom-fields","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwck-custom-fields-and-custom-post-types-creator.2.3.8.zip",1,"2022-12-21 00:00:00",{"attackSurface":142,"codeSignals":220,"taintFlows":289,"riskAssessment":290,"analyzedAt":295},{"hooks":143,"ajaxHandlers":216,"restRoutes":217,"shortcodes":218,"cronEvents":219,"entryPointCount":28,"unprotectedCount":28},[144,150,155,159,164,168,173,176,180,183,187,190,193,195,199,204,208,212],{"type":145,"name":146,"callback":147,"file":148,"line":149},"action","admin_menu","super_cpt_menu_menu","includes\\class-scpt-admin.php",7,{"type":145,"name":151,"callback":152,"file":153,"line":154},"admin_print_styles","add_styles","includes\\class-scpt-font-awesome.php",37,{"type":145,"name":156,"callback":157,"file":153,"line":158},"scpt_plugin_icon_demos","icon_demo",38,{"type":160,"name":161,"callback":162,"priority":48,"file":153,"line":163},"filter","scpt_plugin_icon_font_awesome","set_font_awesome_icon",39,{"type":145,"name":165,"callback":166,"file":153,"line":167},"scpt_plugin_icon_css","output_font_awesome",90,{"type":145,"name":169,"callback":170,"file":171,"line":172},"save_post","save_meta","includes\\class-super-custom-post-meta.php",194,{"type":160,"name":174,"callback":174,"priority":48,"file":171,"line":175},"teeny_mce_before_init",352,{"type":145,"name":177,"callback":178,"file":171,"line":179},"admin_print_styles-post-new.php","add_datepicker_css",689,{"type":145,"name":181,"callback":178,"file":171,"line":182},"admin_print_styles-post.php",690,{"type":145,"name":184,"callback":185,"file":171,"line":186},"admin_print_scripts-post-new.php","add_datepicker_js",691,{"type":145,"name":188,"callback":185,"file":171,"line":189},"admin_print_scripts-post.php",692,{"type":145,"name":184,"callback":191,"file":171,"line":192},"add_media_js",706,{"type":145,"name":188,"callback":191,"file":171,"line":194},707,{"type":160,"name":196,"callback":197,"priority":48,"file":171,"line":198},"scpt_plugin_formatted_meta","format_meta_for_list",784,{"type":145,"name":200,"callback":201,"file":202,"line":203},"init","register_cpt","includes\\class-super-custom-post-type.php",167,{"type":145,"name":200,"callback":205,"file":206,"line":207},"register_tax","includes\\class-super-custom-taxonomy.php",159,{"type":145,"name":200,"callback":209,"file":210,"line":211},"admin_hooks","super-cpt.php",51,{"type":145,"name":213,"callback":214,"file":210,"line":215},"admin_enqueue_scripts","load_js_and_css",65,[],[],[],[],{"dangerousFunctions":221,"sqlUsage":222,"outputEscaping":224,"fileOperations":28,"externalRequests":28,"nonceChecks":139,"capabilityChecks":225,"bundledLibraries":288},[],{"prepared":28,"raw":28,"locations":223},[],{"escaped":225,"rawEcho":226,"locations":227},2,33,[228,231,233,234,235,236,237,239,240,242,243,245,246,248,250,252,254,256,258,260,261,263,265,267,269,271,273,275,277,279,281,283,286],{"file":153,"line":229,"context":230},128,"raw output",{"file":153,"line":232,"context":230},911,{"file":153,"line":232,"context":230},{"file":153,"line":232,"context":230},{"file":153,"line":232,"context":230},{"file":153,"line":232,"context":230},{"file":153,"line":238,"context":230},914,{"file":153,"line":238,"context":230},{"file":153,"line":241,"context":230},920,{"file":153,"line":241,"context":230},{"file":171,"line":244,"context":230},266,{"file":171,"line":244,"context":230},{"file":171,"line":247,"context":230},271,{"file":171,"line":249,"context":230},292,{"file":171,"line":251,"context":230},296,{"file":171,"line":253,"context":230},318,{"file":171,"line":255,"context":230},322,{"file":171,"line":257,"context":230},355,{"file":171,"line":259,"context":230},401,{"file":171,"line":259,"context":230},{"file":171,"line":262,"context":230},435,{"file":171,"line":264,"context":230},438,{"file":171,"line":266,"context":230},467,{"file":171,"line":268,"context":230},470,{"file":171,"line":270,"context":230},492,{"file":171,"line":272,"context":230},495,{"file":171,"line":274,"context":230},530,{"file":171,"line":276,"context":230},533,{"file":171,"line":278,"context":230},534,{"file":171,"line":280,"context":230},541,{"file":171,"line":282,"context":230},780,{"file":284,"line":285,"context":230},"includes\\scpt-helpers.php",103,{"file":284,"line":287,"context":230},105,[],[],{"summary":291,"deductions":292},"The super-cpt plugin version 0.2.1 exhibits a generally positive security posture based on the static analysis. There are no identified dangerous functions, file operations, or external HTTP requests, which significantly reduces the attack surface. The complete absence of raw SQL queries, with 100% of them using prepared statements, is a strong indicator of good database interaction practices. Furthermore, the presence of nonce and capability checks, even with a limited attack surface, suggests an attempt to implement basic access controls.\n\nHowever, a significant concern arises from the extremely low percentage of properly escaped output (6%). This indicates a high likelihood of cross-site scripting (XSS) vulnerabilities, as user-supplied or dynamic data may be rendered directly in the browser without sufficient sanitization. The lack of identified taint flows might be due to the limited attack surface or the scope of the analysis, but the output escaping issue is a concrete and significant risk.\n\nThe plugin's vulnerability history is clean, with no recorded CVEs. This is a positive sign, suggesting the developers may have a proactive approach to security or that the plugin has not yet been a target for in-depth vulnerability research. However, a clean history does not guarantee future security, especially given the identified output escaping weakness. The overall conclusion is that while the plugin avoids many common pitfalls, the severe lack of output escaping presents a substantial risk that requires immediate attention.",[293],{"reason":294,"points":111},"Low percentage of properly escaped output","2026-03-16T19:25:45.728Z",{"wat":297,"direct":306},{"assetPaths":298,"generatorPatterns":301,"scriptPaths":302,"versionParams":303},[299,300],"\u002Fwp-content\u002Fplugins\u002Fsuper-cpt\u002Fcss\u002Fsupercpt.css","\u002Fwp-content\u002Fplugins\u002Fsuper-cpt\u002Fjs\u002Fsupercpt.js",[],[300],[304,305],"supercpt.css?ver=0.2.0","supercpt.js?ver=0.2.1",{"cssClasses":307,"htmlComments":308,"htmlAttributes":309,"restEndpoints":310,"jsGlobals":311,"shortcodeOutput":312},[],[],[],[],[],[]]