[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fv-LWfRlkPEigu5Xepi3jWg_lrIG5NLW4AfUqjhJq7SM":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":37,"analysis":143,"fingerprints":262},"featured-item-metabox","Featured Item Metabox","1.3.2","HelgaTheViking","https:\u002F\u002Fprofiles.wordpress.org\u002Fhelgatheviking\u002F","\u003Cp>I found I constantly needed a way for clients to mark a post as something they wanted to feature and I’ve never found sticky posts particularly inuitive and the UI is pretty hidden for new users.  The simplest solution was a checkbox in prominently located metabox.\u003C\u002Fp>\n\u003Cp>Please note that this plugin, by itself, will not change how your posts are displayed.  It just gives the UI to users and a meta key to theme developers to query for.\u003C\u002Fp>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>This plugin simply adds a \u003Ccode>_featured\u003C\u002Fcode> meta key to every post with a value of \u003Ccode>yes\u003C\u002Fcode> for featured items and \u003Ccode>no\u003C\u002Fcode> for everything else.  Actual display of the featured items is entirely up to the theme developer, but an example ( place in your template where you’d like to display a list of featured “Portfolios”) might be as follows:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F\u002F params for our query\n$args = array(\n    'post_type' => 'portfolio',\n   'posts_per_page'  => 5,\n   'meta_key'        => '_featured',\n   'meta_value'      => 'yes'\n);\n\n\u002F\u002F The Query\n$featured_portfolios = new WP_Query( $args );\n\n\u002F\u002F The Loop\nif ( $featured_portfolios ) :\n\n    echo '\u003Cul class=\"featured\">';\n\n    while ( $featured_portfolios->have_posts() ) :\n        $featured_portfolios->the_post();\n        echo '\u003Cli>' . get_the_title() . '\u003C\u002Fli>';\n    endwhile;\n\n    echo '\u003C\u002Ful>';\n\nelse :\n\n    echo 'No featured portfolios found.';\n\nendif;\n\n\u002F* Restore original Post Data\n * NB: Because we are using new WP_Query we aren't stomping on the\n * original $wp_query and it does not need to be reset.\n*\u002F\nwp_reset_postdata();\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Multiple queries per page load can slow down your site so it is worthwhile to take advantage of the \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FTransients_API\" rel=\"nofollow ugc\">Transients API\u003C\u002Fa>, so an alternate usage would be:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F\u002F Get any existing copy of our transient data\nif ( false === ( $featured_portfolios = get_transient( 'featured_portfolios' ) ) ) {\n    \u002F\u002F It wasn't there, so regenerate the data and save the transient\n\n   \u002F\u002F params for our query\n    $args = array(\n        'post_type' => 'portfolio',\n       'posts_per_page'  => 5,\n       'meta_key'        => '_featured',\n       'meta_value'      => 'yes'\n    );\n\n    \u002F\u002F The Query\n    $featured_portfolios = new WP_Query( $args );\n\n    \u002F\u002F store the transient\n    set_transient( 'featured_portfolios', $featured_portfolios );\n\n}\n\n\u002F\u002F Use the data like you would have normally...\n\n\u002F\u002F The Loop\nif ( $featured_portfolios ) :\n\n    echo '\u003Cul class=\"featured\">';\n\n    while ( $featured_portfolios->have_posts() ) :\n        $featured_portfolios->the_post();\n        echo '\u003Cli>' . get_the_title() . '\u003C\u002Fli>';\n    endwhile;\n\n    echo '\u003C\u002Ful>';\n\nelse :\n\n    echo 'No featured portfolios found.';\n\nendif;\n\n\u002F* Restore original Post Data\n * NB: Because we are using new WP_Query we aren't stomping on the\n * original $wp_query and it does not need to be reset.\n*\u002F\nwp_reset_postdata();\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Then to ensure that your featured posts list is updated, add a function to your theme’s functions.php to delete the transient when a portfolio (in this example) post type is saved.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F\u002F Create a function to delete our transient when a portfolio post is saved\nfunction save_post_delete_featured_transient( $post_id ) {\n   if ( 'portfolio' == get_post_type( $post_id ) )\n    delete_transient( 'featured_portfolios' );\n}\n\u002F\u002F Add the function to the save_post hook so it runs when posts are saved\nadd_action( 'save_post', 'save_post_delete_featured_transient' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Simple queries should only need the \u003Ccode>meta_key\u003C\u002Fcode> and \u003Ccode>meta_value\u003C\u002Fcode> parameters, but if you need something more advanced then you might want to read about how to use the more \u003Ca href=\"http:\u002F\u002Fscribu.net\u002Fwordpress\u002Fadvanced-metadata-queries.html\" rel=\"nofollow ugc\">complex Meta Query parameters\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch4>Support\u003C\u002Fh4>\n\u003Cp>Support is handled in the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Ffeatured-item-metabox\" rel=\"ugc\">WordPress forums\u003C\u002Fa>.  Please note that support is limited and does not cover any custom implementation of the plugin.\u003C\u002Fp>\n\u003Cp>Please report any bugs, errors, warnings, code problems at \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fhelgatheviking\u002FFeatured-Item-Metabox\u002Fissues\" rel=\"nofollow ugc\">Github\u003C\u002Fa>\u003C\u002Fp>\n","Quickly add a metabox to any post type for marking a post as featured.  Toggle featured status even more quickly from the posts lists\u002F quick edit scre &hellip;",90,4054,60,2,"2020-02-17T23:38:00.000Z","5.3.21","3.8","",[20,21],"featured","metabox","http:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Ffeatured-item-metabox\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffeatured-item-metabox.1.4.0.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":30,"display_name":7,"profile_url":8,"plugin_count":31,"total_installs":32,"avg_security_score":33,"avg_patch_time_days":34,"trust_score":35,"computed_at":36},"helgatheviking",6,99090,91,657,73,"2026-04-05T09:48:40.299Z",[38,55,76,99,121],{"slug":39,"name":40,"version":41,"author":42,"author_profile":43,"description":44,"short_description":45,"active_installs":46,"downloaded":47,"rating":25,"num_ratings":25,"last_updated":48,"tested_up_to":49,"requires_at_least":50,"requires_php":18,"tags":51,"homepage":53,"download_link":54,"security_score":24,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"custom-featured-image-metabox","Custom Featured Image Metabox","1.0.1","Yoren Chang","https:\u002F\u002Fprofiles.wordpress.org\u002F1fixdotio\u002F","\u003Cp>With this plugin, you can custom the Featured Image metabox by:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Set the title text instead of the default “Featured Image”.\u003C\u002Fli>\n\u003Cli>Add instructions for the image, like the image dimensions.\u003C\u002Fli>\n\u003Cli>Set a custom set \u002F remove link text, instead of the default “Set \u002F Remove featured image”.\u003C\u002Fli>\n\u003Cli>Custom the metabox by post types. Each post type has its own custom settings.\u003C\u002Fli>\n\u003C\u002Ful>\n","Custom the title, content and set \u002F remove link text in the Featured Image metabox.",70,3209,"2015-01-01T05:58:00.000Z","4.1.42","3.5",[52,21],"featured-image","http:\u002F\u002F1fix.io\u002Fcustom-featured-image-metabox","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-featured-image-metabox.1.0.1.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":18,"tags":70,"homepage":74,"download_link":75,"security_score":65,"vuln_count":25,"unpatched_count":25,"last_vuln_date":26,"fetched_at":27},"drag-drop-featured-image-improved","Drag & Drop Featured Image Improved","2.0","wpgenie2","https:\u002F\u002Fprofiles.wordpress.org\u002Fwpgenie2\u002F","\u003Cp>Drag & Drop Featured Image Improved is a plugin made to save you time when setting a featured image. What it does is simple, it replaces the default “Set featured image” metabox with a new one containing a Plupload drop area just like the one found in the media uploader. Based on Jonathan Lundström work and improved a little bit.\u003C\u002Fp>\n\u003Cp>Since it uses the default WordPress functions it will compress all sizes just as the regular upload method would and it also respects any custom image sizes.\u003C\u002Fp>\n","Drag and Drop Featured Image Improved replaces the default featured image box with a drag and drop zone for faster and more convenient uploads.",50,1999,100,1,"2026-01-15T14:18:00.000Z","6.9.4","4.0",[52,71,21,72,73],"image","replacement","upload","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fdrag-drop-featured-image-improved\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdrag-drop-featured-image-improved.2.0.zip",{"slug":77,"name":78,"version":79,"author":80,"author_profile":81,"description":82,"short_description":83,"active_installs":84,"downloaded":85,"rating":86,"num_ratings":87,"last_updated":88,"tested_up_to":68,"requires_at_least":89,"requires_php":90,"tags":91,"homepage":95,"download_link":96,"security_score":33,"vuln_count":97,"unpatched_count":25,"last_vuln_date":98,"fetched_at":27},"ocean-extra","Ocean Extra","2.5.4","oceanwp","https:\u002F\u002Fprofiles.wordpress.org\u002Foceanwp\u002F","\u003Cp>Ocean Extra adds extra features and flexibility to the \u003Ca href=\"https:\u002F\u002Foceanwp.org\u002F\" rel=\"nofollow ugc\">OceanWP\u003C\u002Fa> theme for a turbocharged experience.\u003C\u002Fp>\n\u003Cp>Build any type of a professional looking website without any coding knowledge and by controlling every aspect of it with ease. With Ocean Extra you’re in command and have full authority over available features and options.\u003C\u002Fp>\n\u003Cp>👉 \u003Ca href=\"https:\u002F\u002Foceanwp.org\u002Fcore-extensions-bundle\u002F\" rel=\"nofollow ugc\">Ocean Core Extensions Bundle\u003C\u002Fa>\u003Cbr \u002F>\n👉 \u003Ca href=\"https:\u002F\u002Foceanwp.org\u002Fdemos\u002F\" rel=\"nofollow ugc\">Ocean Full Website Templates\u003C\u002Fa>\u003Cbr \u002F>\n📘 \u003Ca href=\"https:\u002F\u002Fdocs.oceanwp.org\u002F\" rel=\"nofollow ugc\">Documentation\u003C\u002Fa>\u003Cbr \u002F>\n🎬 \u003Ca href=\"https:\u002F\u002Fwww.youtube.com\u002F@OceanWP\" rel=\"nofollow ugc\">Video Tutorials\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>💙 Join the \u003Ca href=\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Foceanwptheme\" rel=\"nofollow ugc\">official OceanWP Facebook community\u003C\u002Fa> and always be up to speed with the latest news.\u003C\u002Fp>\n\u003Cp>Check out the video when Ocean Extra’s Theme Panel received a makeover to become OceanWP Panel and an overview of its capabilities \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\u002FtwUc0rHnBo0?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>\u003C\u002Fp>\n\u003Cp>Ocean Extra is a 100% free WordPress plugin that enriches your website building experience by adding extra features to the OceanWP free theme. Save time and effort, and reduce the need for additional plugins or custom codes.\u003C\u002Fp>\n\u003Cp>Everyone deserves a polished website with expert features, and so do you.\u003C\u002Fp>\n\u003Cp>🔥 \u003Ca href=\"https:\u002F\u002Foceanwp.org\u002Fcore-extensions-bundle\u002F\" rel=\"nofollow ugc\">Check out the Premium Features\u003C\u002Fa> for additional power, energy and ability.\u003C\u002Fp>\n\u003Ch3>Copyright\u003C\u002Fh3>\n\u003Cp>Ocean Extra, Copyright 2016-2025 OceanWP LLC\u003Cbr \u002F>\nOcean Extra is distributed under the terms of the GNU GPL.\u003C\u002Fp>\n\u003Cp>Ocean Extra uses the following third-party resources:\u003C\u002Fp>\n\u003Cp>Font Awesome Fonts, Copyright Fonticons, Inc.\u003Cbr \u002F>\nLicense: SIL OFL 1.1 License – https:\u002F\u002Fscripts.sil.org\u002FOFL\u003Cbr \u002F>\nSource: https:\u002F\u002Ffontawesome.com\u002F\u003C\u002Fp>\n\u003Cp>Font Awesome Icons, Copyright Fonticons, Inc.\u003Cbr \u002F>\nLicense: CC BY 4.0 License – https:\u002F\u002Fcreativecommons.org\u002Flicenses\u002Fby\u002F4.0\u002F\u003Cbr \u002F>\nSource: https:\u002F\u002Ffontawesome.com\u002F\u003C\u002Fp>\n\u003Cp>Font Awesome Code, Copyright Fonticons, Inc.\u003Cbr \u002F>\nLicense: MIT License – https:\u002F\u002Fopensource.org\u002Flicenses\u002FMIT\u003Cbr \u002F>\nSource: https:\u002F\u002Ffontawesome.com\u002F\u003C\u002Fp>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Cp>Features listed below are just a fraction of the most significant Ocean Extra possibilities:\u003Cbr \u002F>\n* Host Google fonts locally\u003Cbr \u002F>\n* Adobe Fonts integration\u003Cbr \u002F>\n* Custom templates support\u003Cbr \u002F>\n* Individual page \u002F post control\u003Cbr \u002F>\n* Freemium website templates import\u003Cbr \u002F>\n* WordPress widgets\u003Cbr \u002F>\n* Mega Menu\u003Cbr \u002F>\n* Menu icons\u003Cbr \u002F>\n* Various shortcodes\u003Cbr \u002F>\n* Customizer sections control\u003Cbr \u002F>\n* Customizer search\u003Cbr \u002F>\n* Customizer reset\u003Cbr \u002F>\n* Customizer styling import \u002F export\u003Cbr \u002F>\n* Integration\u003Cbr \u002F>\n* Extra settings\u003Cbr \u002F>\n* Admin settings\u003Cbr \u002F>\n* Website preloader\u003Cbr \u002F>\n* Premium licenses panel & more\u003C\u002Fp>\n\u003Ch4>HOST GOOGLE FONTS LOCALLY\u003C\u002Fh4>\n\u003Cp>1-click solution, no font upload required. (Any Google font you apply from the Customizer)[https:\u002F\u002Fdocs.oceanwp.org\u002Farticle\u002F808-host-google-fonts-locally] will load from your site automatically, making your website faster and GDPR friendly in an instant. This feature also supports the Elementor page builder and Google fonts applied through it.\u003C\u002Fp>\n\u003Ch4>ADOBE FONTS INTEGRATION\u003C\u002Fh4>\n\u003Cp>Add Adobe Fonts (Typekit) to your OceanWP theme. The (integration supports Adobe fonts usage)[https:\u002F\u002Fdocs.oceanwp.org\u002Farticle\u002F849-how-to-add-adobe-fonts-typekit] with the OceanWP theme and plugins (Customizer), as well as Elementor.\u003C\u002Fp>\n\u003Ch4>CUSTOM TEMPLATES SUPPORT\u003C\u002Fh4>\n\u003Cp>Create as many templates as you like, using any page builder you want, including Gutenberg. Create and apply a custom header or footer directly through the Customizer. Display custom templates using shortcodes, hooks or even custom codes.\u003C\u002Fp>\n\u003Ch4>INDIVIDUAL PAGE \u002F POST CONTROL\u003C\u002Fh4>\n\u003Cp>This feature is enabled through the metabox settings and gives you full control over every page or post on your website independantly from your global Customizer settings. For example, you can apply a different page layout or a custom sidebar; you can enable or disable the Header, Top Bar, Page Title, Footer Widgets, Footer Copyright. You can apply a different navigation menu, header style, page title style, play with colors, custom titles, apply templates through shortcodes and much, much, much more.\u003C\u002Fp>\n\u003Ch4>FREEMIUM WEBSITE TEMPLATES\u003C\u002Fh4>\n\u003Cp>Don’t feel like starting a website from scratch? Import one of the freemium full website templates and edit content and styling as you go. Depending on the template type, each contains sample pages, sample posts and Customizer styling. Website templates are also known as demos or site kits.\u003C\u002Fp>\n\u003Ch4>WORDPRESS WIDGETS\u003C\u002Fh4>\n\u003Cp>Enrich your widget areas such as sidebars or footer with additional widgets like: About Me, Contact Info, Recent Posts (with thumbnails), Custom Menu, Social Icons, Social Share and more.\u003C\u002Fp>\n\u003Ch4>MEGA MENU\u003C\u002Fh4>\n\u003Cp>Turn your website navigation into a mega menu with a simple setup directly through the WordPress Menus option.\u003C\u002Fp>\n\u003Ch4>MENU ICONS\u003C\u002Fh4>\n\u003Cp>Add icons to some or all of your menu items. Several icon libraries are supported, like Font Awesome, Simple Line Icons, Dashicons and more.\u003C\u002Fp>\n\u003Ch4>VARIOUS SHORTCODES\u003C\u002Fh4>\n\u003Cp>Use \u003Ca href=\"https:\u002F\u002Fdocs.oceanwp.org\u002Fcategory\u002F369-shortcodes\" rel=\"nofollow ugc\">OceanWP shortcodes\u003C\u002Fa> to display dynamic content on your website, such as: current year, current user, login \u002F logout link, breadcrumbs, WooCommerce cart and more.\u003C\u002Fp>\n\u003Ch4>CUSTOMIZER SECTIONS CONTROL\u003C\u002Fh4>\n\u003Cp>Disable any of the Customizer panels from loading, to increase the Customizer loading time or focus on your tasks. This feature allows you to disable only those panels created by the OceanWP theme or any of the Ocean plugins. Likewise, you can enable all panels back again.\u003C\u002Fp>\n\u003Ch4>CUSTOMIZER SEARCH\u003C\u002Fh4>\n\u003Cp>The search option within the Customizer helps you find all relevant settings instantly. Enable or disable per need.\u003C\u002Fp>\n\u003Ch4>CUSTOMIZER RESET\u003C\u002Fh4>\n\u003Cp>Unhappy with your Customizer settings and styling? Or you would like to import different styling? Reset all current settings to OceanWP’s default values and apply your design.\u003C\u002Fp>\n\u003Ch4>CUSTOMIZER STYLING IMPORT \u002F EXPORT\u003C\u002Fh4>\n\u003Cp>Export your Customizer styling options to use on other sites, to save as backup or simply speed up the design process. Likewise, import an existing Customizer styling file and apply all settings in a breeze.\u003C\u002Fp>\n\u003Ch4>INTEGRATION\u003C\u002Fh4>\n\u003Cp>The Integration panel helps you enable SVG file upload support for the WordPress Media Library, connect with MailChimp, Google reCaptcha, Google Maps and more.\u003C\u002Fp>\n\u003Ch4>EXTRA SETTINGS\u003C\u002Fh4>\n\u003Cp>The Extra Settings panel allows you to disable or enable Ocean Extra plugin components, like the meta box, custom templates support, widgets, etc.\u003C\u002Fp>\n\u003Ch4>ADMIN SETTINGS\u003C\u002Fh4>\n\u003Cp>The Admin Settings panel offers control over additional features, like regenerating the local Google fonts CSS file, disabling the “edit” link on post archive pages which is visible to admins, and more.\u003C\u002Fp>\n\u003Ch4>WEBSITE PRELOADER\u003C\u002Fh4>\n\u003Cp>Dealing with heavy page content such as videos or slow hosting? Enable the (website preloader feature)[https:\u002F\u002Fdocs.oceanwp.org\u002Farticle\u002F851-oceanwp-website-preloader] on your website to reduce bounce rate, entertain visitors, brand site or more.\u003C\u002Fp>\n\u003Ch4>PREMIUM OCEAN FEATURES\u003C\u002Fh4>\n\u003Cp>Some of the most outsanding premium features controled by the Ocean Extra’s OceanWP Panel include:\u003Cbr \u002F>\n* Ocean Images: Import royalty free images and icons directly to your Media Library, a feature that is included in the Ocean Core Extensions Bundle and the Ocean Pro Demos plugin.\u003Cbr \u002F>\n* Full Website Templates: Import any of the 220+ full website templates (demos, site kits) to kick start your website fast.\u003Cbr \u002F>\n* Elementor Widgets: Disable or enable any of the widgets that come with the Ocean Elementor Widgets plugin.\u003Cbr \u002F>\n* Elementor Library: Control the settings of the Elementor Sections Library, that counts over 60 various designs. Create your page content as you. This feature is included in the Ocean Core Extensions Bundle and the Ocean Pro Demos plugin.\u003Cbr \u002F>\n* Gutenberg Blocks: Disable or enable any of the blocks that come with the Ocean Gutenberg Blocks plugin.\u003Cbr \u002F>\n* White Label: Whitelabel your OceanWP theme, personalize it and make it your own, with the Ocean White Label plugin.\u003C\u002Fp>\n","Ocean Extra adds extra features and flexibility to the OceanWP theme for a turbocharged experience.",500000,26558550,66,67,"2026-03-09T09:03:00.000Z","5.6","7.4",[92,21,93,80,94],"meta-box","metaboxes","widgets","https:\u002F\u002Foceanwp.org\u002Fextension\u002Focean-extra\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Focean-extra.2.5.4.zip",17,"2025-08-29 16:24:26",{"slug":100,"name":101,"version":102,"author":103,"author_profile":104,"description":105,"short_description":106,"active_installs":107,"downloaded":108,"rating":65,"num_ratings":33,"last_updated":109,"tested_up_to":110,"requires_at_least":111,"requires_php":90,"tags":112,"homepage":117,"download_link":118,"security_score":119,"vuln_count":66,"unpatched_count":25,"last_vuln_date":120,"fetched_at":27},"cmb2","CMB2","2.11.0","Justin Sternberg","https:\u002F\u002Fprofiles.wordpress.org\u002Fjtsternberg\u002F","\u003Cp>CMB2 is a developer’s toolkit for building metaboxes, custom fields, and forms for WordPress that will blow your mind. Easily manage meta for posts, terms, users, comments, or create custom option pages.\u003C\u002Fp>\n\u003Cp>CMB2 is a complete rewrite of Custom Metaboxes and Fields for WordPress. To get started, please follow the examples in the included \u003Ccode>example-functions.php\u003C\u002Fcode> file and have a look at the \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fwiki\u002FBasic-Usage\" rel=\"nofollow ugc\">basic usage instructions\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>You can see a list of available field types \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fwiki\u002FField-Types#types\" rel=\"nofollow ugc\">here\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Contribution\u003C\u002Fh3>\n\u003Cp>Development occurs on Github, and all contributions welcome. Please read the \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fblob\u002Fmaster\u002FCONTRIBUTING.md\" rel=\"nofollow ugc\">CONTRIBUTING\u003C\u002Fa> doc for more details.\u003C\u002Fp>\n\u003Cp>A complete list of all our awesome contributors found here: \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fgraphs\u002Fcontributors\" rel=\"nofollow ugc\">github.com\u002FCMB2\u002FCMB2\u002Fgraphs\u002Fcontributors\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Features:\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Create metaboxes to be used on post edit screens.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fwiki\u002FUsing-CMB-to-create-an-Admin-Theme-Options-Page\" rel=\"nofollow ugc\">Create forms to be used on an options pages\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>Create forms to handle user meta and display them on user profile add\u002Fedit pages.\u003C\u002Fli>\n\u003Cli>Create forms to handle term meta and display wherever your taxonomies are used.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fwiki\u002FBringing-Metaboxes-to-the-Front-end\" rel=\"nofollow ugc\">Flexible API that allows you to use CMB forms almost anywhere, even on the front-end\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fwiki\u002FField-Types\" rel=\"nofollow ugc\">Several field types are included\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fwiki\u002FAdding-your-own-field-types\" rel=\"nofollow ugc\">Custom API hook that allows you to create your own field types\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>There are numerous hooks and filters, allowing you to modify many aspects of the library (without editing it directly).\u003C\u002Fli>\n\u003Cli>Repeatable fields for most field types are supported, as well as repeatable field groups.\u003C\u002Fli>\n\u003Cli>CMB2 is safe to bundle with any project. It will only load the newest version in the system.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Translation\u003C\u002Fh3>\n\u003Cp>If you are looking to provide language translation files, Please do so via \u003Ca href=\"https:\u002F\u002Ftranslate.wordpress.org\u002Fprojects\u002Fwp-plugins\u002Fcmb2\" rel=\"nofollow ugc\">WordPress Plugin Translations\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Documentation\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>CMB2 documentation can be found at \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fwiki\" rel=\"nofollow ugc\">the CMB2 wiki\u003C\u002Fa> on github. Also, If you’re into reading code and inline documentation, we tried to keep all functions and methods fully inline-documented.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>3rd Party Resources\u003C\u002Fh3>\n\u003Cp>Custom Field Types\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoreymcollins\u002Fcmb-attached-posts\" rel=\"nofollow ugc\">CMB2 Field Type: CMB Attached Posts Field\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoreymcollins\" rel=\"nofollow ugc\">coreymcollins\u003C\u002Fa>: \u003Ccode>custom_attached_posts\u003C\u002Fcode>, for attaching posts to a page.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Falexis-magina\u002Fcmb2-field-post-search-ajax\" rel=\"nofollow ugc\">CMB2 Field Type: Post Search Ajax\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Falexis-magina\" rel=\"nofollow ugc\">alexis-magina\u003C\u002Fa>: \u003Ccode>post_search_ajax\u003C\u002Fcode> Attach posts to each other. Same approach as \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoreymcollins\u002Fcmb-attached-posts\" rel=\"nofollow ugc\">CMB2 Attached Posts Field\u003C\u002Fa> but with Ajax request, multiple\u002Fsingle option, and different UI.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\u002Fcmb2-field-ajax-search\" rel=\"nofollow ugc\">CMB2 Field Type: Ajax Search\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\" rel=\"nofollow ugc\">rubengc\u003C\u002Fa>: 3 different fields with the same UI in AJAX to search (with query parameters) to users, post type and taxonomy terms.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FMte90\u002FCMB2-User-Search-field\" rel=\"nofollow ugc\">CMB2 Field Type: CMB2 User Search field\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FMte90\" rel=\"nofollow ugc\">Mte90\u003C\u002Fa>: \u003Ccode>user_search_text\u003C\u002Fcode> adds a user-search dialog for searching\u002Fattaching other User IDs.\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FmustardBees\u002Fcmb_field_map\" rel=\"nofollow ugc\">CMB2 Field Type: Google Maps\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FmustardBees\" rel=\"nofollow ugc\">mustardBees\u003C\u002Fa>: Custom field type for Google Maps.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>The \u003Ccode>pw_map\u003C\u002Fcode> field stores the latitude\u002Flongitude values which you can then use to display a map in your theme.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fvilleristi\u002FCMB2-field-Leaflet-Geocoder\" rel=\"nofollow ugc\">CMB2 Field Type: Leaflet Maps\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fvilleristi\" rel=\"nofollow ugc\">villeristi\u003C\u002Fa>: Custom field type for \u003Ca href=\"https:\u002F\u002Fleafletjs.com\u002F\" rel=\"nofollow ugc\">Leaflet\u003C\u002Fa> Maps.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FmustardBees\u002Fcmb-field-select2\" rel=\"nofollow ugc\">CMB2 Field Type: Select2\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FmustardBees\" rel=\"nofollow ugc\">mustardBees\u003C\u002Fa>: Custom field types which use the \u003Ca href=\"https:\u002F\u002Fselect2.org\u002F\" rel=\"nofollow ugc\">Select2\u003C\u002Fa> script:\u003C\u002Fp>\n\u003Cblockquote>\n\u003Col>\n\u003Cli>The \u003Ccode>pw_select field\u003C\u002Fcode> acts much like the default select field. However, it adds typeahead-style search allowing you to quickly make a selection from a large list\u003C\u002Fli>\n\u003Cli>The \u003Ccode>pw_multiselect\u003C\u002Fcode> field allows you to select multiple values with typeahead-style search. The values can be dragged and dropped to reorder\u003C\u002Fli>\n\u003C\u002Fol>\n\u003C\u002Fblockquote>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fqmatt\u002Fcmb2-field-slider\" rel=\"nofollow ugc\">CMB Field Type: Slider\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fmattkrupnik\u002F\" rel=\"nofollow ugc\">mattkrupnik\u003C\u002Fa>: Adds a jQuery UI Slider field.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2-Date-Range-Field\" rel=\"nofollow ugc\">WDS CMB2 Date Range Field\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fdustyf\" rel=\"nofollow ugc\">dustyf\u003C\u002Fa> of \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FWebDevStudios\" rel=\"nofollow ugc\">WebDevStudios\u003C\u002Fa>: Adds a date range field.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2-Remote-Image-Select-Field\" rel=\"nofollow ugc\">CMB2 Remote Image Select\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FJayWood\" rel=\"nofollow ugc\">JayWood\u003C\u002Fa> of \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FWebDevStudios\" rel=\"nofollow ugc\">WebDevStudios\u003C\u002Fa>: Allows users to enter a URL in a text field and select a single image for use in post meta. Similar to Facebook’s featured image selector.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcmb-field-type-sorter\u002F\" rel=\"ugc\">CMB Field Type: Sorter\u003C\u002Fa>: This plugin gives you two CMB field types based on the Sorter script.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fflorianbeck\u002Fcmb2-field-type-tags\" rel=\"nofollow ugc\">CMB Field Type: Tags\u003C\u002Fa>: WordPress-Tags-like field type for CMB2. \u003Cem>note: this does not set the post tags, but simply provides a unique text input\u003C\u002Fem>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Flink-picker-for-cmb2\u002F\" rel=\"ugc\">CMB Field Type: Link Picker\u003C\u002Fa>: Using the Link Picker for CMB2 control, you can choose a link from your WordPress site, or manually enter a link. You can also identify if the link should open in a new window, or not.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Foriggami\u002Fcmb2-multidates-picker\" rel=\"nofollow ugc\">CMB Field Type: MultidatesPicker\u003C\u002Fa>: Creates a CMB2 field type that enables a multiple date calendar. It uses a plugin called \u003Ca href=\"https:\u002F\u002Fdubrox.github.io\u002FMultiple-Dates-Picker-for-jQuery-UI\u002F\" rel=\"nofollow ugc\">MultiDatesPicker v1.6.3 for jQuery UI\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fsatwinderrathore\u002FCMB2-radio-image\" rel=\"nofollow ugc\">CMB Field Type: CMB2-radio-image\u003C\u002Fa>: Image as radio buttons.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fflorianbeck\u002Fcmb2-field-type-tags\" rel=\"nofollow ugc\">CMB2 Term Select\u003C\u002Fa>: Special CMB2 Field that allows users to define an autocomplete text field for terms. \u003Cem>Note: this will set the taxonomy terms, but has the option (\u003Ccode>'apply_term' => false\u003C\u002Fcode>) to disable and save the term ids as data instead (like for options pages, etc).\u003C\u002Fem>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fjtsternberg\u002FCMB2-Related-Links\" rel=\"nofollow ugc\">CMB2 Related Links\u003C\u002Fa>: Allows users to add a related links via a repeating field group. Field inputs are powered by the \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2-Post-Search-field\" rel=\"nofollow ugc\">CMB2 Field Type: CMB2 Post Search field\u003C\u002Fa> documented above, and so each link can be populated with existing WordPress content by clicking on the search button. \u003Cem>Note: this is not a standard field type, but instead a function you use in combination with CMB2::add_field().\u003C\u002Fem>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\u002Fcmb2-field-order\" rel=\"nofollow ugc\">CMB2 Field Type: Order\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\" rel=\"nofollow ugc\">rubengc\u003C\u002Fa>: Allows users to define custom order of predefined options.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\u002Fcmb2-field-animation\" rel=\"nofollow ugc\">CMB2 Field Type: Animation\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\" rel=\"nofollow ugc\">rubengc\u003C\u002Fa>: Allows users to pickup an animation from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fdaneden\u002Fanimate.css\" rel=\"nofollow ugc\">Animate.css\u003C\u002Fa> (includes preview of chosen animation).\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\u002Fcmb2-field-ajax-search\" rel=\"nofollow ugc\">CMB2 Field Type: Ajax Search\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\" rel=\"nofollow ugc\">rubengc\u003C\u002Fa>: Based on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Falexis-magina\u002Fcmb2-field-post-search-ajax\" rel=\"nofollow ugc\">CMB2 Field Type: Post Search Ajax\u003C\u002Fa>, adds the ability to attach posts\u002Fusers\u002Fterms, and the ability to limit the maximum number of attached objects.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\u002Fcmb2-field-visual-style-editor\" rel=\"nofollow ugc\">CMB2 Field Type: Visual Style Editor\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\" rel=\"nofollow ugc\">rubengc\u003C\u002Fa>: Custom field for CMB2 which allows customizing style from a small set of controls.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\u002Fcmb2-field-content-wrap\" rel=\"nofollow ugc\">CMB2 Field Type: Content Wrap\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\" rel=\"nofollow ugc\">rubengc\u003C\u002Fa>: Custom field for CMB2 to store a content wrap values (padding, margin or border width).\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\u002Fcmb2-field-js-controls\" rel=\"nofollow ugc\">CMB2 Field JS Controls\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\" rel=\"nofollow ugc\">rubengc\u003C\u002Fa>: Show any field similar to WordPress publishing actions (Post\u002FPage post_status, visibility and post_date submit box field).\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\u002Fcmb2-field-position\" rel=\"nofollow ugc\">CMB2 Field Type: Position\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frubengc\" rel=\"nofollow ugc\">rubengc\u003C\u002Fa>: CMB2 field type to setup a jquery UI position values.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpixelwatt\u002Fcmb2-roadway-segments\" rel=\"nofollow ugc\">CMB2 Field Type: CMB2 Roadway Segments\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpixelwatt\" rel=\"nofollow ugc\">pixelwatt\u003C\u002Fa>: This plugin adds a new CMB2 fieldtype for drawing roadway segments onto a map and provides a shortcode for display.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fserkanalgur\u002Fcmb2-field-faiconselect\" rel=\"nofollow ugc\">CMB2 Field Type: Font Awesome\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fserkanalgur\" rel=\"nofollow ugc\">serkanalgur\u003C\u002Fa>: This plugin adds a new CMB2 field type for selecting Font Awesome icons.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Feduplessis\u002Fcmb2-typography\" rel=\"nofollow ugc\">CMB2 Field Type: Typography\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Feduplessis\" rel=\"nofollow ugc\">eduplessis\u003C\u002Fa>: This plugin adds a new CMB2 field type “Typography” and it use jQuery fontselect for the font-family selection.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FRekenna\u002Fcmb2-markdown\" rel=\"nofollow ugc\">CMB2 Field Type: Markdown\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FRekenna\" rel=\"nofollow ugc\">Rekenna\u003C\u002Fa>: This plugin adds a new CMB2 field type “CMB2 Markdown” where you can type in markdown and view a live preview of the results or convert to html with a button.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fthemevan\u002FCMB2-Switch-Button\" rel=\"nofollow ugc\">CMB2 Field Type: Switch Button\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fthemevan\" rel=\"nofollow ugc\">themevan\u003C\u002Fa>: This plugin adds a Custom Switch Button field type for CMB2.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fmanzoorwanijk\u002Fcmb2-select-plus\" rel=\"nofollow ugc\">CMB2 Field Type: select_plus\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fmanzoorwanijk\u002F\" rel=\"nofollow ugc\">manzoorwanijk\u003C\u002Fa>: Select field type which acts much like the default \u003Ccode>select\u003C\u002Fcode> field. However, it adds the support for \u003Ccode>optgroup\u003C\u002Fcode> and saving of values with \u003Ccode>multiple\u003C\u002Fcode> attribute.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fscottsawyer\u002Fcmb2-field-address\" rel=\"nofollow ugc\">CMB2 Field Type: Address\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fscottsawyer\" rel=\"nofollow ugc\">scottsawyer\u003C\u002Fa>: Just a simple, repeatable address field.  It’s really just the snippet from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2-Snippet-Library\" rel=\"nofollow ugc\">CMB2 Snippet Library\u003C\u002Fa> converted to a plugin.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fscottsawyer\u002Fcmb2-field-link\" rel=\"nofollow ugc\">CMB2 Field Type: Link\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fscottsawyer\" rel=\"nofollow ugc\">scottsawyer\u003C\u002Fa>: Create a link field with some attributes. Very nice for styling links.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fscottsawyer\u002Fcmb2-field-widget-selector\" rel=\"nofollow ugc\">CMB2 Field Type: Widget Selector\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fscottsawyer\" rel=\"nofollow ugc\">scottsawyer\u003C\u002Fa>: Need a field that lets you ( or your editor ) select \u002F display an existing widget instance? Then this is the plugin for you.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Other Helpful Resources\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002Fcmb2-woocommerce-hpos-orders\" rel=\"nofollow ugc\">CMB2 WooCommerce HPOS Orders\u003C\u002Fa>: Adds the ability to add custom fields to the new WooCommerce HPOS orders page.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Ftwoelevenjay\u002FCMB2-Admin-Extension\" rel=\"nofollow ugc\">CMB2 Admin Extension\u003C\u002Fa>: Adds a UI to create CMB2 meta boxes from the WordPress admin. Also on \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcmb2-admin-extension\u002F\" rel=\"ugc\">wordpress.org\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fjtsternberg\u002FShortcode_Button\" rel=\"nofollow ugc\">WordPress Shortcode Button\u003C\u002Fa>: Uses CMB2 fields to generate fields for shortcode input modals.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FWebDevStudios\u002FWDS-Simple-Page-Builder\" rel=\"nofollow ugc\">WDS-Simple-Page-Builder\u003C\u002Fa>: Uses existing template parts in the currently-active theme to build a customized page with rearrangeable elements. Built with CMB2.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2-Example-Theme\" rel=\"nofollow ugc\">CMB2 Example Theme\u003C\u002Fa>: Demonstrate how to include CMB2 in your theme, as well as some cool tips and tricks.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002F\u002FWebDevStudios\u002Ffacetwp-cmb2\" rel=\"nofollow ugc\">facetwp-cmb2\u003C\u002Fa>: FacetWP integration with CMB2.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Foriggami\u002FCMB2-grid\" rel=\"nofollow ugc\">CMB2-grid\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Foriggami\u002F\" rel=\"nofollow ugc\">origgami\u003C\u002Fa>: A grid system for WordPress CMB2 library that allows the creation of columns for a better layout in the admin.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frogerlos\u002Fcmb2-metatabs-options\" rel=\"nofollow ugc\">CMB2 Metatabs Options\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Frogerlos\u002F\" rel=\"nofollow ugc\">rogerlos\u003C\u002Fa>: CMO makes it easy to create options pages with multiple metaboxes–and optional WordPress admin tabs.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fjcchavezs\u002Fcmb2-conditionals\" rel=\"nofollow ugc\">CMB2 Conditionals\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fjcchavezs\u002F\" rel=\"nofollow ugc\">jcchavezs\u003C\u002Fa>: Allows developers to relate fields so the display of one is conditional on the value of another.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwillthemoor.github.io\u002Fcmb2-metabox-generator\u002F\" rel=\"nofollow ugc\">CMB2 Metabox Code Generator\u003C\u002Fa> from \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fwillthemoor\u002F\" rel=\"nofollow ugc\">willthemoor\u003C\u002Fa>: Skip the boring bits. Use this generator to create fully functional CMB2 metaboxes easily. Now with bulk entry!\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcaldera-metaplate\u002F\" rel=\"ugc\">Caldera Metaplate\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fcalderawp.com\u002F\" rel=\"nofollow ugc\">CalderaWP\u003C\u002Fa>: Not specific to CMB2, but allows creating templates for outputting your custom fields.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Falexis-magina\u002Fyoast-cmb2-field-analysis\" rel=\"nofollow ugc\">Yoast CMB2 Field Analysis WP Plugin\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Falexis-magina\" rel=\"nofollow ugc\">alexis-magina\u003C\u002Fa>: This plugin adds in a js based method of recalculating Yoast SEO’s content scores when updating page content, specifically custom meta fields added via the CMB2 library.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fawethemes\u002Fskeleton\" rel=\"nofollow ugc\">Skeleton\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fawethemes\" rel=\"nofollow ugc\">awethemes\u003C\u002Fa>: A complete framework for WordPress, uses CMB2 engine.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-simple-iconfonts\u002F\" rel=\"ugc\">WP Simple Iconfonts\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fawethemes\" rel=\"nofollow ugc\">awethemes\u003C\u002Fa>: An icon fonts manager and provides a font icon picker for CMB2.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fnsrosenqvist\u002Fcmb2-nav-menus\" rel=\"nofollow ugc\">CMB2 Nav Menus\u003C\u002Fa> by \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fnsrosenqvist\" rel=\"nofollow ugc\">nsrosenqvist\u003C\u002Fa>: Lets you use CMB2 in nav menu entries..\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Links\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fcmb2.io\" rel=\"nofollow ugc\">Project Homepage\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\" rel=\"nofollow ugc\">Github project page\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fwiki\" rel=\"nofollow ugc\">Documentation (GitHub wiki)\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2-Snippet-Library\u002F\" rel=\"nofollow ugc\">Snippet Library\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2\u002Fblob\u002Fmaster\u002FCHANGELOG.md\" rel=\"nofollow ugc\">View CHANGELOG\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch3>Known Issues\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Metabox containing WYSIWYG editor cannot be moved or used in a repeatable way at this time (this is a TinyMCE issue).\u003C\u002Fli>\n\u003Cli>Not all fields work well in a repeatable group.\u003C\u002Fli>\n\u003C\u002Ful>\n","CMB2 is a metabox, custom fields, and forms library for WordPress that will blow your mind.",300000,4979472,"2024-04-02T19:36:00.000Z","6.4.8","3.8.0",[113,114,93,115,116],"fields","forms","options","settings","https:\u002F\u002Fgithub.com\u002FCMB2\u002FCMB2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcmb2.zip",84,"2024-04-03 00:00:00",{"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":68,"requires_at_least":89,"requires_php":18,"tags":134,"homepage":138,"download_link":139,"security_score":140,"vuln_count":141,"unpatched_count":25,"last_vuln_date":142,"fetched_at":27},"featured-image-from-url","Featured Image from URL (FIFU)","5.3.3","fifu.app","https:\u002F\u002Fprofiles.wordpress.org\u002Fmarceljm\u002F","\u003Ch3>WordPress plugin for remote featured images, videos, audios and more\u003C\u002Fh3>\n\u003Cp>FIFU plugin has helped thousands of websites worldwide save money on storage, processing, and copyright since 2015.\u003C\u002Fp>\n\u003Cp>If you are tired of wasting time and resources with thumbnail regeneration, image optimization, and never-ending imports, this plugin is for you.\u003C\u002Fp>\n\u003Ch4>Featured image\u003C\u002Fh4>\n\u003Cp>Use a remote image as featured image of your post, page or custom post type.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Remote featured image\u003C\u002Fli>\n\u003Cli>Optimized images\u003C\u002Fli>\n\u003Cli>Make all images square\u003C\u002Fli>\n\u003Cli>Image search (Unsplash)\u003C\u002Fli>\n\u003Cli>Default featured image\u003C\u002Fli>\n\u003Cli>Hide featured media\u003C\u002Fli>\n\u003Cli>Modify post content\u003C\u002Fli>\n\u003Cli>Auto set image title\u003C\u002Fli>\n\u003Cli>Column for featured image\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Image search (search engine)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Disable right-click\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Save in the media library\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Replace not found image\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Custom popup\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> bbPress and BuddyBoss Platform integration\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Page redirection\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Automatic featured media\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Auto set featured media from post content\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Auto set featured image using post title and a search engine\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Auto set featured media using web page address\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Auto set product images from ASIN\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Auto set featured media from custom field\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Auto set featured image using ISBN\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Auto set screenshot as featured image\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Auto set featured image from Unsplash using tags\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Auto-share on social media\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Automation\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>WP-CLI integration\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Add-on for WP All Import\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> WooCommerce import\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> WP REST API\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> WooCommerce REST API\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Schedule metadata generation\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>WooCommerce\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Remote product image\u003C\u002Fli>\n\u003Cli>Lightbox and zoom\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Gallery for remote images\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Gallery for remote videos\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Category images auto set\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Variable product\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Variation image\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Gallery for variation image\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Save in the media library\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> FIFU product gallery\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Quick Buy\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Add image to order email\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Featured video\u003C\u002Fh4>\n\u003Cp>Supports URLs from YouTube, Vimeo, Twitter, 9GAG, Cloudinary, Tumblr, Publitio, JW Player, VideoPress, Sprout, Odysee, Rumble, Dailymotion, Cloudflare Stream, Bunny Stream, Amazon, BitChute, Brighteon, Google Drive, Spotify and SoundCloud. External and local video files are supported as well.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Featured video\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Watch later\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Video thumbnail\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Play button\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Minimum width\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Video controls\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Autoplay on mouseover\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Autoplay\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Playback loop\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Mute\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Privacy enhanced mode\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Background video\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Widgets for Elementor\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Featured image \u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Featured video\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Widgets for WordPress\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Featured media \u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Featured grid\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Product gallery\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Fields for Gravity-Forms\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Featured image \u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Featured video\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Featured slider\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Fields for Dokan\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Featured image \u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Product gallery\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Others\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Quick edit\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Featured audio\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Featured slider\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Shortcode\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> Taxonomy image\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Functions for developers\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>fifu_dev_set_image($post_id, $image_url)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> fifu_dev_set_video($post_id, $video_url)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> fifu_dev_set_slider($post_id, $url_list, $alt_list) \u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> fifu_dev_set_image_list($post_id, $image_url_list)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> fifu_dev_set_video_list($post_id, $video_url_list)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> fifu_dev_set_category_image($term_id, $image_url)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[PRO]\u003C\u002Fstrong> fifu_dev_set_category_video($term_id, $video_url)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>FIFU Cloud\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Cloud storage (never lose an image again)\u003C\u002Fli>\n\u003Cli>Global CDN (images loaded much faster)\u003C\u002Fli>\n\u003Cli>Optimized thumbnails (processed in the cloud)\u003C\u002Fli>\n\u003Cli>Usage-based billing (per stored image)\u003C\u002Fli>\n\u003Cli>Smart cropping (detects people and objects before cropping)\u003C\u002Fli>\n\u003Cli>Hotlink protection (sites can’t embed your images)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Links\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Ffifu.app\u002F\" rel=\"nofollow ugc\">FIFU PRO\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Ftastewp.com\u002Fnew?pre-installed-plugin-slug=featured-image-from-url&redirect=admin.php%3Fpage%3Dfeatured-image-from-url&ni=true\" rel=\"nofollow ugc\">Dummy site for testing\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fchrome.google.com\u002Fwebstore\u002Fdetail\u002Ffifu-scraper\u002Fpccimcccbkdeeadhejdmnffmllpicola\" rel=\"nofollow ugc\">Extension for Google Chrome\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fplugintests.com\u002Fplugins\u002Fwporg\u002Ffeatured-image-from-url\u002Flatest\" rel=\"nofollow ugc\">Smoke Test\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fli>\n\u003C\u002Ful>\n","Use remote media as the featured image and beyond.",70000,7205175,92,258,"2026-02-02T19:44:00.000Z",[20,71,135,136,137],"url","video","woocommerce","https:\u002F\u002Ffifu.app\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffeatured-image-from-url.5.3.3.zip",89,13,"2026-01-09 00:00:00",{"attackSurface":144,"codeSignals":217,"taintFlows":237,"riskAssessment":255,"analyzedAt":261},{"hooks":145,"ajaxHandlers":207,"restRoutes":214,"shortcodes":215,"cronEvents":216,"entryPointCount":66,"unprotectedCount":25},[146,151,154,158,164,169,173,177,181,184,186,190,194,199,203],{"type":147,"name":148,"callback":149,"file":150,"line":65},"action","plugins_loaded","load_text_domain","featured-item-metabox.php",{"type":147,"name":152,"callback":152,"file":150,"line":153},"admin_init",111,{"type":147,"name":155,"callback":156,"file":150,"line":157},"admin_menu","add_options_page",114,{"type":159,"name":160,"callback":161,"priority":162,"file":150,"line":163},"filter","plugin_action_links","add_action_links",10,117,{"type":147,"name":165,"callback":166,"file":167,"line":168},"wp_loaded","get_post_type_object","inc\\class.Featured_Item_Metabox.php",34,{"type":147,"name":170,"callback":171,"file":167,"line":172},"add_meta_boxes","add_meta_box",37,{"type":159,"name":152,"callback":174,"priority":175,"file":167,"line":176},"add_columns_init",20,43,{"type":147,"name":178,"callback":179,"file":167,"line":180},"save_post","save_meta",46,{"type":147,"name":182,"callback":179,"file":167,"line":183},"edit_attachment",47,{"type":147,"name":185,"callback":185,"priority":162,"file":167,"line":63},"quick_edit_custom_box",{"type":147,"name":187,"callback":188,"file":167,"line":189},"admin_enqueue_scripts","admin_script",53,{"type":159,"name":191,"callback":192,"file":167,"line":193},"manage_media_columns","add_column",232,{"type":147,"name":195,"callback":196,"priority":197,"file":167,"line":198},"manage_media_custom_column","custom_column",99,233,{"type":159,"name":200,"callback":201,"file":167,"line":202},"manage_upload_sortable_columns","register_sortable",234,{"type":159,"name":204,"callback":205,"file":167,"line":206},"request","column_orderby",241,[208],{"action":209,"nopriv":210,"callback":211,"hasNonce":212,"hasCapCheck":212,"file":167,"line":213},"featured_items_quickedit",false,"ajax_callback",true,40,[],[],[],{"dangerousFunctions":218,"sqlUsage":219,"outputEscaping":221,"fileOperations":25,"externalRequests":25,"nonceChecks":14,"capabilityChecks":235,"bundledLibraries":236},[],{"prepared":25,"raw":25,"locations":220},[],{"escaped":25,"rawEcho":222,"locations":223},5,[224,227,229,231,234],{"file":167,"line":225,"context":226},106,"raw output",{"file":167,"line":228,"context":226},291,{"file":167,"line":230,"context":226},356,{"file":232,"line":233,"context":226},"inc\\plugin-options.php",35,{"file":232,"line":233,"context":226},4,[],[238],{"entryPoint":239,"graph":240,"unsanitizedCount":25,"severity":254},"\u003Cclass.Featured_Item_Metabox> (inc\\class.Featured_Item_Metabox.php:0)",{"nodes":241,"edges":252},[242,247],{"id":243,"type":244,"label":245,"file":167,"line":246},"n0","source","$_REQUEST",177,{"id":248,"type":249,"label":250,"file":167,"line":228,"wp_function":251},"n1","sink","echo() [XSS]","echo",[253],{"from":243,"to":248,"sanitized":212},"low",{"summary":256,"deductions":257},"The \"featured-item-metabox\" plugin version 1.3.2 presents a generally good security posture based on the static analysis. The plugin demonstrates strong adherence to secure coding practices by having no SQL queries that are not prepared, and it implements a healthy number of nonce and capability checks.  Furthermore, the absence of known vulnerabilities in its history is a significant positive indicator of its security.\n\nHowever, a notable concern arises from the output escaping. With 100% of its observed outputs unescaped, this plugin is susceptible to Cross-Site Scripting (XSS) vulnerabilities. Any data displayed to users, if not properly sanitized, could be manipulated by an attacker to inject malicious scripts. While there are no critical taint flows or dangerous functions identified, the lack of output escaping represents a significant and immediate risk that needs to be addressed.\n\nIn conclusion, the \"featured-item-metabox\" plugin benefits from robust input validation and a clean vulnerability history. Nevertheless, the complete absence of output escaping is a critical weakness that significantly elevates its risk profile. Addressing this specific issue should be the highest priority to improve its overall security.",[258],{"reason":259,"points":260},"0% of outputs properly escaped",8,"2026-03-16T21:17:19.292Z",{"wat":263,"direct":272},{"assetPaths":264,"generatorPatterns":267,"scriptPaths":268,"versionParams":269},[265,266],"\u002Fwp-content\u002Fplugins\u002Ffeatured-item-metabox\u002Fcss\u002Fadmin.css","\u002Fwp-content\u002Fplugins\u002Ffeatured-item-metabox\u002Fjs\u002Fadmin.js",[],[266],[270,271],"featured-item-metabox\u002Fcss\u002Fadmin.css?ver=","featured-item-metabox\u002Fjs\u002Fadmin.js?ver=",{"cssClasses":273,"htmlComments":275,"htmlAttributes":276,"restEndpoints":278,"jsGlobals":279,"shortcodeOutput":281},[274],"featured-item-metabox-wrap",[],[277],"data-featured-item-metabox-nonce",[],[280],"FeaturedItemMetabox",[]]