[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fcUCOFbNDIKsJAe0QqoUQmBfBgQlUjhWh1IfrHMD4-L4":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":144,"fingerprints":221},"text-modules","Text Modules","1.0.1","Thorsten Frommen","https:\u002F\u002Fprofiles.wordpress.org\u002Ftfrommen\u002F","\u003Cp>\u003Cstrong>Use the new Text Modules custom post type and display a text module by either shortcode or widget.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Have you ever wanted to use some pieces of text information more than once? For instance, contact information such as a postal address? Or some slogan, motto or claim?\u003C\u002Fp>\n\u003Cp>This is exactly when \u003Cem>Text Modules\u003C\u002Fem> kicks in.\u003C\u002Fp>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>This plugin registers a simple post type for text modules. A text module can be accessed either via shortcode (by means of the text module’s ID or slug) or via a new Tex Modules widget.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Filters\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>In order to customize certain aspects of the plugin, it provides you with several filters. For each of these, a short description as well as a code example on how to alter the default behavior is given below. Just put the according code snippet in your theme’s \u003Ccode>functions.php\u003C\u002Fcode> file or your \u003Cem>customization\u003C\u002Fem> plugin, or to some other appropriate place.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_after_widget_content\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This filter lets you alter the HTML after the widget content.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the HTML after the widget content.\n *\n * @param string $after_widget_content Some HTML after the widget content.\n *\u002F\nadd_filter( 'text_modules_after_widget_content', function() {\n\n    return '\u003C!-- End of Text Modules widget content -->';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_before_widget_content\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This filter lets you alter the HTML before the widget content.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the HTML before the widget content.\n *\n * @param string $before_widget_content Some HTML before the widget content.\n *\u002F\nadd_filter( 'text_modules_before_widget_content', function() {\n\n    return '\u003C!-- Start of Text Modules widget content -->';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_post_type\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Yes, you can alter the post type (slug).\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the post type.\n *\n * @param string $post_type Post type.\n *\u002F\nadd_filter( 'text_modules_post_type', function() {\n\n    return 'exotic_stuff';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_post_type_args\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>If you want to alter a specific post type argument but you can’t find a fitting filter, there’s \u003Ccode>text_modules_post_type_args\u003C\u002Fcode>, which provides you with the complete args array.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the post type args.\n *\n * @param array $args Post type args.\n *\u002F\nadd_filter( 'text_modules_post_type_args', function( $args ) {\n\n    \u002F\u002F Use hierarchical external content\n    $args[ 'hierarchical' ] = TRUE;\n\n    return $args;\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_post_type_description\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The post type description can be customized by using the \u003Ccode>text_modules_post_type_description\u003C\u002Fcode> filter.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the post type description.\n *\n * @param string $description Post type description.\n *\u002F\nadd_filter( 'text_modules_post_type_description', function() {\n\n    \u002F\u002F Provide a description\n    return 'Simple post type for text modules.';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_post_type_labels\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>In case you don’t like the labels, easily adapt them to your liking.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the post type labels.\n *\n * @param array $labels Post type labels.\n *\u002F\nadd_filter( 'text_modules_post_type_labels', function( $labels ) {\n\n    \u002F\u002F A little more horror, please...\n    $labels[ 'not_found' ] = 'ZOMG, no text module found!!1!!1!!oneone!!!1!eleven!1!';\n\n    return $labels;\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_post_type_supports\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This filter provides you with the post type supports.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the post type supports.\n *\n * @param array $supports Post type supports.\n *\u002F\nadd_filter( 'text_modules_post_type_supports', function( $supports ) {\n\n    \u002F\u002F Let's add revisions for our post type\n    if ( ! in_array( 'revisions', $supports ) ) {\n        $supports[] = 'revisions';\n    }\n\n    return $supports;\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_shortcode_apply_do_shortcode\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>By default, do_shortcode() will be called on the shortcode output. Of course, you can change that.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter if the shortcode should apply do_shortcode() to the output.\n *\n * @param bool $do_shortcode Should the shortcode apply do_shortcode()?\n *\u002F\nadd_filter( 'text_modules_shortcode_apply_do_shortcode', '__return_false' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_shortcode_callback\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>In case you would like to adapt how the shortcode data is handled, you can provide your own shortcode callback. This can either be a string holding the function name, or an array with either a class name or an object, and the according method.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the shortcode callback.\n *\n * @param array|string $callback Shortcode callback.\n *\u002F\nadd_filter( 'text_modules_shortcode_callback', function() {\n\n    return 'my_text_modules_shortcode_callback';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_shortcode_id_attribute_name\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This filter lets you alter the shortcode’s ‘id’ attribute name.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the 'id' shortcode attribute name.\n *\n * @param string $name Attribute name.\n *\u002F\nadd_filter( 'text_modules_shortcode_id_attribute_name', function() {\n\n    return 'post_id';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_shortcode_output\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This filter lets you alter the shortcode output. The second parameter holds the shortcode attributes array.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the shortcode output.\n *\n * @param string $output Shortcode output.\n * @param array  $atts   Shortcode attributes array.\n *\u002F\nadd_filter( 'text_modules_shortcode_output', function( $output ) {\n\n    return $output . ' Over and out.';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_shortcode_query_args\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Also, there’s \u003Ccode>text_modules_shortcode_query_args\u003C\u002Fcode>, which provides you with the complete args array for the shortcode’s query.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the shortcode query args.\n *\n * @param array $args Shortcode query args.\n *\u002F\nadd_filter( 'text_modules_shortcode_query_args', function( $args ) {\n\n    \u002F\u002F Exclude some text modules by ID\n    $args[ 'post__not_in' ] = array( 4, 8, 15, 16, 23, 42 );\n\n    return $args;\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_shortcode_slug_attribute_name\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This filter lets you alter the shortcode’s ‘slug’ attribute name.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the 'slug' shortcode attribute name.\n *\n * @param string $name Attribute name.\n *\u002F\nadd_filter( 'text_modules_shortcode_slug_attribute_name', function() {\n\n    return 'post_slug';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_shortcode_tag\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This filter lets you alter the shortcode’s tag.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the shortcode tag.\n *\n * @param string $shortcode_tag Shortcode tag.\n *\u002F\nadd_filter( 'text_modules_shortcode_tag', function() {\n\n    return 'text_block';\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_shortcode_use_slug\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>By default, text modules are being queried by their post ID first. Of course, you can change that and use the post slug instead.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter if the shortcode (query) should use the post slug instead of the post ID.\n *\n * @param bool $use_slug Use slug instead of ID?\n *\u002F\nadd_filter( 'text_modules_shortcode_use_slug', '__return_true' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>\u003Ccode>text_modules_widget_form_query_args\u003C\u002Fcode>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Also, there’s \u003Ccode>text_modules_widget_form_query_args\u003C\u002Fcode>, which provides you with the complete args array for the widget form’s query.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Filter the widget form query args.\n *\n * @param array $args Query args.\n *\u002F\nadd_filter( 'text_modules_widget_form_query_args', function( $args ) {\n\n    \u002F\u002F Exclude some text modules by ID\n    $args[ 'post__not_in' ] = array( 4, 8, 15, 16, 23, 42 );\n\n    return $args;\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Contribution\u003C\u002Fh4>\n\u003Cp>To \u003Cstrong>contribute\u003C\u002Fstrong> to this plugin, please see its \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Ftfrommen\u002Ftext-modules\" rel=\"nofollow ugc\">\u003Cstrong>GitHub repository\u003C\u002Fstrong>\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>If you have a feature request, or if you have developed the feature already, please feel free to use the Issues and\u002For Pull Requests section.\u003C\u002Fp>\n\u003Cp>Of course, you can also provide me with translations if you would like to use the plugin in another not yet included language.\u003C\u002Fp>\n","Use the new Text Modules custom post type and display a text module by either shortcode or widget.",50,2326,100,1,"2015-08-20T00:32:00.000Z","4.3.34","3.0.0","",[20,21,22,23,24],"custom-post-type","module","modules","post","text","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Ftext-modules\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ftext-modules.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},"tfrommen",6,2140,30,84,"2026-04-05T01:59:49.585Z",[40,59,79,97,123],{"slug":41,"name":42,"version":43,"author":44,"author_profile":45,"description":46,"short_description":47,"active_installs":48,"downloaded":49,"rating":13,"num_ratings":14,"last_updated":50,"tested_up_to":51,"requires_at_least":52,"requires_php":18,"tags":53,"homepage":18,"download_link":58,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"mbaierl-projects-cpt","Projects Custom Post Type by mbaierl","0.1","mbaierl","https:\u002F\u002Fprofiles.wordpress.org\u002Fmbaierl\u002F","\u003Cp>In case you ever want to switch from Divi to any other theme you will figure out\u003Cbr \u002F>\nthat the “projects” custom post type is gone. Instead of using the Divi Builder Plugin,\u003Cbr \u002F>\nwhich still includes all the Divi bloat, you can use this plugin.\u003C\u002Fp>\n\u003Cp>It simply restores the custom post type, so you can continue to use your content.\u003C\u002Fp>\n\u003Cp>Feel free to style it using Elementor Pro 🙂\u003C\u002Fp>\n","The Divi \"Projects\" Custom Post Type - in case you move away from Divi but still want to use the Projects.",10,1070,"2021-08-02T16:27:00.000Z","5.8.0","5.0",[20,54,55,56,57],"divi","divi-library","divi-modules","divi-theme","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmbaierl-projects-cpt.zip",{"slug":60,"name":61,"version":62,"author":63,"author_profile":64,"description":65,"short_description":66,"active_installs":67,"downloaded":68,"rating":28,"num_ratings":28,"last_updated":69,"tested_up_to":70,"requires_at_least":71,"requires_php":72,"tags":73,"homepage":76,"download_link":77,"security_score":78,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"post-grid-module-for-divi","Squad Post Grid Module for Divi Theme, Extra Theme and Divi Builder","1.1.0","The WP Squad","https:\u002F\u002Fprofiles.wordpress.org\u002Fwpsquad\u002F","\u003Cp>\u003Cstrong>Unleash the Power of Divi: Create Stunning Blog Layouts with the Squad Post Grid Module\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Take your Divi website’s blog section to the next level with the Squad Post Grid Module!\u003C\u002Fstrong> This intuitive plugin for Divi Builder empowers you to effortlessly design captivating and organized post grids, perfectly complementing your Divi theme’s aesthetics. Say goodbye to clunky shortcodes and limited customization options. With the Post Grid Module, you’re in complete control.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Effortless Grid Creation:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Drag-and-Drop Simplicity:\u003C\u002Fstrong>  The Divi Post Grid Module seamlessly integrates with the Divi Builder interface you know and love. Simply drag and drop the module onto your page, configure its settings, and watch your beautiful post grid take shape.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>No Shortcode Hassles:\u003C\u002Fstrong> Forget about complicated shortcodes and their limitations. The Divi Post Grid Module utilizes Divi’s intuitive visual editor, allowing you to focus on crafting stunning visuals without getting bogged down in code.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Customization Freedom:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Tailored Grid Layouts:\u003C\u002Fstrong>  Choose from a variety of pre-designed grid layouts to kickstart your creative process.  Furthermore, the module offers extensive customization options, allowing you to refine the grid’s structure, spacing, and column configuration to perfectly match your website’s design.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Style Every Detail:\u003C\u002Fstrong>  Dive deep into the customization options and personalize every aspect of your post grid. Take control of colors, fonts, typography, borders, and more. Create a visually cohesive and captivating presentation for your blog content.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Enhanced User Engagement:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Category Filtering:\u003C\u002Fstrong>  Streamline navigation for your visitors with category filtering options. Allow them to explore specific blog categories effortlessly, keeping them engaged and finding the content they’re most interested in.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Post Excerpts & Featured Images:\u003C\u002Fstrong>  Integrate captivating featured images and post excerpts within your grid layout. This entices visitors to delve deeper into your blog posts, boosting user engagement and potentially increasing website traffic.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Beyond the Basics:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Effortless Pagination:\u003C\u002Fstrong>  The Divi Post Grid Module seamlessly integrates pagination functionalities, ensuring a smooth browsing experience for your visitors, especially when dealing with extensive blog archives.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Mobile-Responsive Design:\u003C\u002Fstrong>  Rest assured that your stunning post grids will showcase beautifully across all devices. The Divi Post Grid Module prioritizes responsive design, delivering a perfect viewing experience on desktops, tablets, and mobile phones.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Exploring the Powerhouse: Squad Modules Lite\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The Divi Post Grid Module is just a taste of the incredible functionalities offered by Squad Modules Lite. This comprehensive plugin equips you with a library of advanced modules and extensions to elevate your Divi website building experience to new heights.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Ready to Dive In?\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Showcase your blog content in all its glory with the Post Grid Module for Divi. Visit the website for detailed product information and captivating demos: \u003Ca href=\"https:\u002F\u002Fsquadmodules.com\u002F\" rel=\"nofollow ugc\">Divi Post Grid Module\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Love what you see?\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Don’t forget to check out \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fsquad-modules-for-divi\u002F\" rel=\"ugc\">Squad Modules Lite\u003C\u002Fa>, a treasure trove of Divi modules and extensions to unleash the full potential of your Divi website: \u003Ca href=\"https:\u002F\u002Fsquadmodules.com\u002Fmodules\" rel=\"nofollow ugc\">Squad Modules Lite\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>We Value Your Feedback!\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>If the Post Grid Module has helped you streamline your Divi blog design process, we’d be incredibly grateful for a 5-star rating on WordPress.org. It takes less than a minute and means the world to us: Rate us on WordPress: [link]\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Brought to You by a Trusted Team\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The Divi Post Grid Module is proudly developed by the \u003Ca href=\"https:\u002F\u002Fsquadmodules.com\u002F\" rel=\"nofollow ugc\">Divi Squad\u003C\u002Fa> and WP Squad Team, a dedicated WordPress product company committed to providing you with the tools you need to build incredible websites.\u003C\u002Fp>\n\u003Ch3>Support\u003C\u002Fh3>\n\u003Cp>Support for this plugin is primarily provided within the volunteer-based \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fpost-grid-module-for-divi\u002F\" rel=\"ugc\">WordPress support forum\u003C\u002Fa>. The official website also provides custom development and professional support services. See \u003Ca href=\"https:\u002F\u002Fsquadmodules.com\u002Fsupport\" rel=\"nofollow ugc\">Support\u003C\u002Fa> for more information.\u003C\u002Fp>\n","The Squad Post Grid Module for Divi Builder allows you to display your blog posts in a stylish and organized grid layout.",90,2619,"2024-04-29T15:23:00.000Z","6.6.5","5.0.0","5.6.40",[54,74,56,57,75],"divi-builder","post-grid","https:\u002F\u002Fsquadmodules.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-grid-module-for-divi.1.1.0.zip",92,{"slug":80,"name":81,"version":82,"author":83,"author_profile":84,"description":85,"short_description":86,"active_installs":28,"downloaded":87,"rating":28,"num_ratings":28,"last_updated":88,"tested_up_to":89,"requires_at_least":90,"requires_php":91,"tags":92,"homepage":18,"download_link":96,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"ada2go-text-modules","Ada2go – Text Modules","1.8","Heiko","https:\u002F\u002Fprofiles.wordpress.org\u002Fada2go\u002F","\u003Cp>(DE) Text Modules gibt im Frontend ein anklickbares Formular aus um vordefinierten Text auszugeben. Du kannst in den Einstellungen Texte speichern, Kategorien erstelle und im Customizer das Design vollst&auml;ndig anpassen! Wenn du Hilfe ben&ouml;tigst, kontaktiere mich &uuml;ber https:\u002F\u002Fada2go-plugins.de\u002F\u003C\u002Fp>\n\u003Cp>(EN) Text Modules outputs a clickable form in the frontend to output predefined text. You can save texts in the settings, create categories and completely adapt the design in the customizer! If you need help, contact me via https:\u002F\u002Fada2go-plugins.de\u002F – Critical error? Write on Instagram @ ada2go\u003C\u002Fp>\n","ada2go - Text Modules outputs a clickable form in the frontend to output predefined text.",7630,"2024-03-09T09:24:00.000Z","6.4.8","4.7","7.0",[93,94,22,95,24],"generator","modul","shortcode","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fada2go-text-modules.zip",{"slug":98,"name":99,"version":100,"author":101,"author_profile":102,"description":103,"short_description":104,"active_installs":105,"downloaded":106,"rating":78,"num_ratings":107,"last_updated":108,"tested_up_to":109,"requires_at_least":110,"requires_php":111,"tags":112,"homepage":118,"download_link":119,"security_score":120,"vuln_count":121,"unpatched_count":28,"last_vuln_date":122,"fetched_at":30},"custom-post-type-ui","Custom Post Type UI","1.18.3","webdevstudios","https:\u002F\u002Fprofiles.wordpress.org\u002Fwebdevstudios\u002F","\u003Cp>Custom Post Type UI provides an easy-to-use interface for registering and managing custom post types and taxonomies for your website.\u003C\u002Fp>\n\u003Ch4>Custom Post Type UI Extended\u003C\u002Fh4>\n\u003Cp>CPTUI helps create custom content types, but displaying that content can be a whole new challenge. \u003Ca href=\"https:\u002F\u002Fpluginize.com\u002Fplugins\u002Fcustom-post-type-ui-extended\u002F?utm_source=cptui-desription&utm_medium=text&utm_campaign=wporg\" rel=\"nofollow ugc\">Custom Post Type UI Extended\u003C\u002Fa> was created to help with displaying your crafted content. \u003Ca href=\"https:\u002F\u002Fpluginize.com\u002Fcpt-ui-extended-features\u002F?utm_source=cptui-description-examples&utm_medium=text&utm_campaign=wporg\" rel=\"nofollow ugc\">View our Layouts page\u003C\u002Fa> to see available layout examples with Custom Post Type UI Extended.\u003C\u002Fp>\n\u003Ch4>Plugin development\u003C\u002Fh4>\n\u003Cp>Custom Post Type UI development is managed on GitHub, with official releases published on WordPress.org. The GitHub repo can be found at \u003Ca href=\"https:\u002F\u002Fgithub.com\u002FWebDevStudios\u002Fcustom-post-type-ui\" rel=\"nofollow ugc\">https:\u002F\u002Fgithub.com\u002FWebDevStudios\u002Fcustom-post-type-ui\u003C\u002Fa>. Please use the WordPress.org support tab for potential bugs, issues, or enhancement ideas.\u003C\u002Fp>\n","Admin UI for creating custom content types like post types and taxonomies",1000000,22529808,273,"2026-01-08T20:43:00.000Z","6.9.4","6.6","7.4",[113,114,115,116,117],"content-types","custom-post-types","post-type","taxonomy","types","https:\u002F\u002Fgithub.com\u002FWebDevStudios\u002Fcustom-post-type-ui\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-post-type-ui.1.18.3.zip",93,4,"2025-12-12 00:00:00",{"slug":124,"name":125,"version":126,"author":125,"author_profile":127,"description":128,"short_description":129,"active_installs":130,"downloaded":131,"rating":132,"num_ratings":133,"last_updated":134,"tested_up_to":109,"requires_at_least":135,"requires_php":136,"tags":137,"homepage":140,"download_link":141,"security_score":142,"vuln_count":34,"unpatched_count":28,"last_vuln_date":143,"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.5","7.1",[138,114,139,124,115],"custom-fields","custom-taxonomies","https:\u002F\u002Fmetabox.io","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmeta-box.5.11.2.zip",89,"2026-03-06 19:09:12",{"attackSurface":145,"codeSignals":176,"taintFlows":213,"riskAssessment":214,"analyzedAt":220},{"hooks":146,"ajaxHandlers":172,"restRoutes":173,"shortcodes":174,"cronEvents":175,"entryPointCount":28,"unprotectedCount":28},[147,153,157,161,164,167],{"type":148,"name":149,"callback":150,"file":151,"line":152},"action","add_meta_boxes","add","inc\\Controllers\\MetaBox.php",36,{"type":148,"name":154,"callback":155,"file":156,"line":152},"wp_loaded","register","inc\\Controllers\\PostType.php",{"type":148,"name":158,"callback":159,"file":160,"line":152},"admin_print_scripts-edit.php","enqueue","inc\\Controllers\\Style.php",{"type":148,"name":162,"callback":159,"file":160,"line":163},"admin_print_scripts-post.php",37,{"type":148,"name":165,"callback":155,"file":166,"line":152},"widgets_init","inc\\Controllers\\Widget.php",{"type":148,"name":168,"callback":169,"file":170,"line":171},"plugins_loaded","anonymous","text-modules.php",24,[],[],[],[],{"dangerousFunctions":177,"sqlUsage":178,"outputEscaping":180,"fileOperations":28,"externalRequests":28,"nonceChecks":28,"capabilityChecks":28,"bundledLibraries":212},[],{"prepared":28,"raw":28,"locations":179},[],{"escaped":181,"rawEcho":182,"locations":183},7,13,[184,188,191,193,196,199,201,202,204,205,207,208,210],{"file":185,"line":186,"context":187},"inc\\Views\\MetaBox.php",71,"raw output",{"file":189,"line":190,"context":187},"inc\\Views\\ShortcodePostsColumn.php",54,{"file":189,"line":192,"context":187},60,{"file":194,"line":195,"context":187},"inc\\Views\\Widget.php",94,{"file":197,"line":198,"context":187},"inc\\Views\\WidgetForm.php",59,{"file":197,"line":200,"context":187},62,{"file":197,"line":200,"context":187},{"file":197,"line":203,"context":187},63,{"file":197,"line":78,"context":187},{"file":197,"line":206,"context":187},95,{"file":197,"line":206,"context":187},{"file":197,"line":209,"context":187},98,{"file":197,"line":211,"context":187},113,[],[],{"summary":215,"deductions":216},"The 'text-modules' plugin version 1.0.1 demonstrates a strong initial security posture with no identified vulnerabilities in its history or critical issues flagged during static and taint analysis. The absence of any detected CVEs, dangerous functions, file operations, or external HTTP requests is a positive indicator. Furthermore, all SQL queries are secured using prepared statements. However, a significant concern arises from the low percentage (35%) of properly escaped output. This indicates a potential for cross-site scripting (XSS) vulnerabilities, especially if user-supplied data is not consistently sanitized before being displayed.\n\nThe plugin's attack surface is currently zero, meaning there are no apparent entry points like AJAX handlers, REST API routes, shortcodes, or cron events. This is an excellent characteristic for minimizing risk. The lack of any taint analysis findings is also promising, suggesting no obvious data manipulation flaws were detected. Despite these strengths, the insufficient output escaping represents a tangible risk that could be exploited. Future development should prioritize addressing this by ensuring all dynamic output is properly escaped to prevent potential security breaches.",[217],{"reason":218,"points":219},"Low percentage of properly escaped output",15,"2026-03-16T22:02:12.503Z",{"wat":222,"direct":230},{"assetPaths":223,"generatorPatterns":226,"scriptPaths":227,"versionParams":228},[224,225],"\u002Fwp-content\u002Fplugins\u002Ftext-modules\u002Fassets\u002Fcss\u002Fadmin.css","\u002Fwp-content\u002Fplugins\u002Ftext-modules\u002Fassets\u002Fcss\u002Fadmin.min.css",[],[],[229],"text-modules-admin",{"cssClasses":231,"htmlComments":232,"htmlAttributes":233,"restEndpoints":234,"jsGlobals":235,"shortcodeOutput":236},[],[],[],[],[],[237,238],"[text_module id=","[text_module slug="]