[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fBS0Ib2HInkxmAhsgCC4gizdw1Vkx6SjpO_u2mdg8rUE":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":24,"download_link":25,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29,"vulnerabilities":30,"developer":45,"crawl_stats":36,"alternatives":53,"analysis":151,"fingerprints":244},"acf-cpt-options-pages","Advanced Custom Fields : CPT Options Pages","2.0.9","Tusko Trush","https:\u002F\u002Fprofiles.wordpress.org\u002Ftusko-trush\u002F","\u003Cp>Small addon for ACF Options. Adds ACF location for each custom post type.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>New feature\u003C\u002Fstrong> in the major version 2!\u003Cbr \u002F>\nImportant!\u003Cbr \u002F>\n\u003Cstrong>After update to v2+ you must reconnect Field Groups to Options Pages\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Now you can activate\u002Fdeactivate CPTs and create custom options pages for each CPT.\u003Cbr \u002F>\nBy default, options pages are activated for all custom post types.\u003C\u002Fp>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>The default functions of \u003Ca href=\"http:\u002F\u002Fwww.advancedcustomfields.com\u002F\" title=\"Advanced Custom Fields\" rel=\"nofollow ugc\">ACF plugin\u003C\u002Fa> (\u003Ccode>get_field, the_field, etc.\u003C\u002Fcode>) can be used to load values from a CPT Options Pages, but second parameter is required to target the CPT options.\u003C\u002Fp>\n\u003Cp>This is similar to passing through a \u003Ccode>$post_id\u003C\u002Fcode> parameter to target a specific post object.\u003C\u002Fp>\n\u003Cp>The \u003Ccode>$post_id\u003C\u002Fcode> parameter needed is a string containing the \u003Ccode>cpt_\u003C\u002Fcode> and CPT name in the following format; \u003Ccode>\"cpt_{CPT_NAME}\"\u003C\u002Fcode> and for subpages you can copy generated ID while creating subpages.\u003C\u002Fp>\n\u003Ch4>Examples\u003C\u002Fh4>\n\u003Cblockquote>\n\u003Cp>In examples Custom Post Type name is \u003Ccode>projects\u003C\u002Fcode>.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>So, let’s go!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Display a field\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003Cp>\u003C?php the_field('field_name', 'cpt_projects'); ?>\u003C\u002Fp>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>and the subpage’s field\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003Cp>\u003C?php the_field('field_name', 'cpt_projects_testpage'); ?>\u003C\u002Fp>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Retrieve a field\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\n    $field = get_field('field_name', 'cpt_projects');\n    \u002F\u002F do something with $field\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Display a sub field\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>    \u003C?php if( have_rows('repeater_name', 'cpt_projects') ): ?>\n        \u003Cul>\n            \u003C?php while( have_rows('repeater_name', 'cpt_projects') ): the_row(); ?>\n                \u003Cli>\u003C?php the_sub_field('the_title'); ?>\u003C\u002Fli>\n            \u003C?php endwhile; ?>\n        \u003C\u002Ful>\n    \u003C?php endif; ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Display with shortcode\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[acf field=\"field_name\" post_id=\"cpt_projects\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cblockquote>\n\u003Cp>Please read documentation about \u003Ca href=\"http:\u002F\u002Fwww.advancedcustomfields.com\u002Fresources\u002Fshortcode\u002F\" title=\"ACF Shortcode\" rel=\"nofollow ugc\">shortcodes with ACF\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch3>Customization\u003C\u002Fh3>\n\u003Cpre>\u003Ccode>    function cpt_projects_customize($cptmenu) {\n        $cptmenu['page_title'] = 'Dev Custom title';\n        $cptmenu['menu_title'] = 'Dev Custom title';\n        return $cptmenu;\n    }\n\n    add_filter('cpt_projects_acf_page_args', 'cpt_projects_customize');\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Don’t forget to replace \u003Ccode>cpt_projects_\u003C\u002Fcode> to your custom post type name 🙂\u003Cbr \u002F>\nIt works only for first level options pages, not for subpages.\u003C\u002Fp>\n\u003Ch4>Donate\u003C\u002Fh4>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fdonatua.com\u002F@tusko\" rel=\"nofollow ugc\">Support plugin\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>License\u003C\u002Fh4>\n\u003Cp>Copyright (c) 2023, \u003Ca href=\"https:\u002F\u002Ffrontend.im\u002F?github\" title=\"Front-End Developer\" rel=\"nofollow ugc\">Tusko Trush\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>Requirements\u003C\u002Fh4>\n\u003Cp>You must buy ACF PRO or ACF Options Page Addon.\u003C\u002Fp>\n\u003Ch4>Translation\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>qTranslate-XT\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This plugin is compatible and has included \u003Ca href=\"https:\u002F\u002Fuk.wordpress.org\u002Fplugins\u002Facf-qtranslate\u002F\" title=\"ACF qTranslate\" rel=\"nofollow ugc\">ACF qTranslate\u003C\u002Fa>.\u003Cbr \u002F>\nJust enjoy!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>qTranslate-X\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>If you are using Qtranslate-X, you must install \u003Ca href=\"https:\u002F\u002Fuk.wordpress.org\u002Fplugins\u002Facf-qtranslate\u002F\" title=\"ACF qTranslate\" rel=\"nofollow ugc\">ACF qTranslate\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>WPML\u002FPolylang\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>If you are using WPML or Polylang, you must add constant \u003Ccode>ICL_LANGUAGE_CODE\u003C\u002Fcode> to \u003Ccode>post_id\u003C\u002Fcode>,\u003Cbr \u002F>\nfor example: \u003Ccode>get_field('archive_title', 'cpt_projects_' . ICL_LANGUAGE_CODE)\u003C\u002Fcode>.\u003C\u002Fp>\n","Small addon for ACF Options. Adds ACF location for each custom post type. New feature in the major version 2! Important! After update to v2+ you must &hellip;",2000,63330,100,7,"2023-04-08T14:30:00.000Z","6.2.9","3.0","",[20,21,22,23],"acf-options","advanced-custom-fields","archive","custom-post-type","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Facf-cpt-options-pages\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Facf-cpt-options-pages.zip",63,1,"2025-09-21 00:00:00","2026-03-15T15:16:48.613Z",[31],{"id":32,"url_slug":33,"title":34,"description":35,"plugin_slug":4,"theme_slug":36,"affected_versions":37,"patched_in_version":36,"severity":38,"cvss_score":39,"cvss_vector":40,"vuln_type":41,"published_date":28,"updated_date":42,"references":43,"days_to_patch":36},"CVE-2025-60208","advanced-custom-fields-cpt-options-pages-cross-site-request-forgery","Advanced Custom Fields : CPT Options Pages \u003C= 2.0.9 - Cross-Site Request Forgery","The Advanced Custom Fields : CPT Options Pages plugin for WordPress is vulnerable to Cross-Site Request Forgery in versions up to, and including, 2.0.9. This is due to missing or incorrect nonce validation on a function. This makes it possible for unauthenticated attackers to perform an unauthorized action via a forged request granted they can trick a site administrator into performing an action such as clicking on a link.",null,"\u003C=2.0.9","medium",4.3,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:N\u002FUI:R\u002FS:U\u002FC:N\u002FI:L\u002FA:N","Cross-Site Request Forgery (CSRF)","2025-11-04 15:30:48",[44],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F24971249-ea45-4477-a219-075fd8a1399c?source=api-prod",{"slug":46,"display_name":7,"profile_url":8,"plugin_count":47,"total_installs":48,"avg_security_score":49,"avg_patch_time_days":50,"trust_score":51,"computed_at":52},"tusko-trush",2,2030,74,30,76,"2026-04-04T06:52:43.021Z",[54,78,100,118,135],{"slug":55,"name":56,"version":57,"author":58,"author_profile":59,"description":60,"short_description":61,"active_installs":62,"downloaded":63,"rating":64,"num_ratings":65,"last_updated":66,"tested_up_to":67,"requires_at_least":68,"requires_php":18,"tags":69,"homepage":18,"download_link":74,"security_score":75,"vuln_count":76,"unpatched_count":27,"last_vuln_date":77,"fetched_at":29},"zippy","Zippy","1.7.0","Gesundheit Bewegt GmbH","https:\u002F\u002Fprofiles.wordpress.org\u002Floyaltymanufaktur\u002F","\u003Cp>Incredibly easy solution to archive pages and posts as zip file and unpack them back even on the other website!\u003C\u002Fp>\n\u003Cp>Archive posts and pages in one click. Transfer them to the other website or simple use this feature to backup you articles on the local computer.\u003C\u002Fp>\n\u003Ch4>Important\u003C\u002Fh4>\n\u003Cp>Please make sure Zip extension is enabled on your web server! Otherwise, the plugin will not work for you.\u003C\u002Fp>\n\u003Cp>More info: https:\u002F\u002Fwww.php.net\u002Fmanual\u002Fen\u002Fbook.zip.php\u003C\u002Fp>\n\u003Ch4>Features:\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>archive posts as zip-files\u003C\u002Fli>\n\u003Cli>extract archives on any website with the installed plugin\u003C\u002Fli>\n\u003Cli>download and store posts as zip archives\u003C\u002Fli>\n\u003Cli>multiple posts support\u003C\u002Fli>\n\u003Cli>custom post types support\u003C\u002Fli>\n\u003C\u002Ful>\n","Incredibly easy solution to archive pages and posts as zip file and unpack them back even on the other website!",10000,227277,92,16,"2025-09-30T21:34:00.000Z","6.8.5","4.9",[22,70,71,72,73],"backup","custom-post-types","migration","zip-files","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fzippy.1.7.0.zip",71,5,"2024-08-27 00:00:00",{"slug":79,"name":80,"version":81,"author":82,"author_profile":83,"description":84,"short_description":85,"active_installs":86,"downloaded":87,"rating":13,"num_ratings":88,"last_updated":89,"tested_up_to":90,"requires_at_least":91,"requires_php":18,"tags":92,"homepage":96,"download_link":97,"security_score":98,"vuln_count":99,"unpatched_count":99,"last_vuln_date":36,"fetched_at":29},"archive-control","Archive Control","1.3.4","Mike Gillihan","https:\u002F\u002Fprofiles.wordpress.org\u002Fmikegillihan\u002F","\u003Cp>A quick easy way to customize archive pages (or pages with lists of posts like custom post types, categories, tags, or custom taxonomy terms). You can add editable content before or after the list, you can add a featured image. It also allows you to set up the order and pagination on these pages separately from the rest of your site. Taxonomies can share settings across all terms, or have specific settings per term. Administrators can change the settings, site editors can easily change the content.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\n\u003Cp>\u003Cstrong>Archive Titles:\u003C\u002Fstrong> If your theme is using the_archive_title() function, then you can modify the your archive titles.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Remove Labels (Archive, Category, Tag, etc.) – Sometimes you just want to get rid of the annoying default words.\u003C\u002Fli>\n\u003Cli>Custom Override – Allow an editor to write something custom for an archive headline.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Featured Image:\u003C\u002Fstrong> You can allow for a custom featured image that applies to an archive page and have it added above the list automatically, or add it yourself via a theme function.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Content Before List:\u003C\u002Fstrong> Give your site editors the ability to edit content directly before the archive list. You can have it automatically added, or use a theme function to give you more control over their placement (see the “Other Notes” tab).\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Content After List:\u003C\u002Fstrong> Give your site editors the ability to edit content directly after the archive list. You can have it automatically added, or use a theme function to give you more control over their placement (see the “Other Notes” tab).\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Archive Order By:\u003C\u002Fstrong> Instead of messing with code to change the order of an archive page, now you can do it in a few clicks.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Date Published\u003C\u002Fli>\n\u003Cli>Title\u003C\u002Fli>\n\u003Cli>Date Modified\u003C\u002Fli>\n\u003Cli>Menu Order\u003C\u002Fli>\n\u003Cli>Random\u003C\u002Fli>\n\u003Cli>ID\u003C\u002Fli>\n\u003Cli>Author\u003C\u002Fli>\n\u003Cli>Post Slug\u003C\u002Fli>\n\u003Cli>Post Type\u003C\u002Fli>\n\u003Cli>Comment Count\u003C\u002Fli>\n\u003Cli>Parent\u003C\u002Fli>\n\u003Cli>Meta Value\u003C\u002Fli>\n\u003Cli>Meta Value (Numeric)\u003C\u002Fli>\n\u003Cli>No Order\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Archive Order:\u003C\u002Fstrong> In addition to the order by setting, you’ll also want to change the sort order direction.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Ascending\u003C\u002Fli>\n\u003Cli>Descending\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Archive Pagination:\u003C\u002Fstrong> The pagination settings are easy to change without changing code.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Show Everything\u003C\u002Fli>\n\u003Cli>Custom Posts Per Page\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Term Edit Options:\u003C\u002Fstrong> For categories, tags, and custom taxonomies, you can choose a few additional things.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Per Term Order & Pagination – Customize the order, and pagination on a per term basis.\u003C\u002Fli>\n\u003Cli>Hide Description Field – You can choose to hide the term description field within the WordPress backend.\u003C\u002Fli>\n\u003Cli>Hide Parent Field – On hierarchal taxonomies, you can choose to hide the parent field within the WordPress backend.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>The plugin doesn’t add any CSS or javascript to the front end. The styling of the archive page is left completely up to you. This plugin should be friendly for power users and developers alike. You can use it entirely without changing theme code, or you can control the placement and functionality more exactly using the provided functions. See the “Other Notes” tab.\u003C\u002Fp>\n\u003Cp>Have an idea that should be added? Let me know at \u003Ca href=\"https:\u002F\u002Fswitchwp.com\u002Fplugins\u002Farchive-control\u002F\" rel=\"nofollow ugc\">SwitchWP\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Functions Provided by the Plugin\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>the_archive_top_content( \u003Cem>boolean\u003C\u002Fem> $html = true )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Displays the \u003Cem>top\u003C\u002Fem> archive content on an archive page. Additional html markup can be removed by setting false.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>\u003Cstrong>archive_top_content( \u003Cem>boolean\u003C\u002Fem> $html = true, \u003Cem>string\u003C\u002Fem> $post_type_slug = null, \u003Cem>string\u003C\u002Fem> $term_id = null )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Displays the \u003Cem>top\u003C\u002Fem> archive content for any post type anywhere on the site. Additional html markup can be removed by setting false. Post type is automatic if on an archive page.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>\u003Cstrong>get_archive_top_content( \u003Cem>string\u003C\u002Fem> $post_type_slug = null, \u003Cem>string\u003C\u002Fem> $term_id = null )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Returns the \u003Cem>top\u003C\u002Fem> archive content for any post type anywhere on the site. Post type or term id is automatic if on an archive page.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>\u003Cstrong>the_archive_bottom_content( \u003Cem>boolean\u003C\u002Fem> $html = true )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Displays the \u003Cem>bottom\u003C\u002Fem> archive content on an archive page. Additional html markup can be removed by setting false.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>\u003Cstrong>archive_bottom_content( \u003Cem>boolean\u003C\u002Fem> $html = true, \u003Cem>string\u003C\u002Fem> $post_type_slug = null, \u003Cem>string\u003C\u002Fem> $term_id = null )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Displays the \u003Cem>bottom\u003C\u002Fem> archive content for any post type anywhere on the site. Additional html markup can be removed by setting false. Post type is automatic if on an archive page.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>\u003Cstrong>get_archive_bottom_content( \u003Cem>string\u003C\u002Fem> $post_type_slug = null, \u003Cem>string\u003C\u002Fem> $term_id = null )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Returns the \u003Cem>top\u003C\u002Fem> archive content for any post type anywhere on the site. Post type  or term id is automatic if on an archive page.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>\u003Cstrong>the_archive_thumbnail( \u003Cem>string\u003C\u002Fem> $size = ‘large’, \u003Cem>string\u003C\u002Fem> $post_type_slug = null, \u003Cem>string\u003C\u002Fem> $term_id = null )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Display the archive thumbnail. Default size is large but first parameter can set any valid image size, or an array of width and height values in pixels (in that order). Post type is automatic if on an archive page.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>\u003Cstrong>get_archive_thumbnail_src( \u003Cem>string\u003C\u002Fem> $size = ‘large’, \u003Cem>string\u003C\u002Fem> $post_type_slug = null, \u003Cem>string\u003C\u002Fem> $term_id = null )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Returns the archive image url source. Default size is large but first parameter can set any valid image size, or an array of width and height values in pixels (in that order). Post type is automatic if on an archive page.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>\u003Cstrong>get_archive_thumbnail_id( \u003Cem>string\u003C\u002Fem> $post_type_slug = null, \u003Cem>string\u003C\u002Fem> $term_id = null )\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>Returns the archive thumbnail id. if you want to use other common WordPress attachment functions to retrieve data about the image. Post type or term id is automatic if on an archive page.\u003C\u002Fp>\n\u003C\u002Fblockquote>\n","Quickly customize your custom post type and taxonomy archives with a custom headline, image, and editable content. Modify order and pagination.",1000,22392,11,"2023-11-30T16:13:00.000Z","6.1.10","4.1",[22,93,94,23,95],"archive-page","archive-template","post-type","https:\u002F\u002Fswitchwp.com\u002Fplugins\u002Farchive-control\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Farchive-control.zip",85,0,{"slug":101,"name":102,"version":103,"author":104,"author_profile":105,"description":106,"short_description":107,"active_installs":86,"downloaded":108,"rating":13,"num_ratings":109,"last_updated":110,"tested_up_to":111,"requires_at_least":112,"requires_php":18,"tags":113,"homepage":18,"download_link":117,"security_score":98,"vuln_count":99,"unpatched_count":99,"last_vuln_date":36,"fetched_at":29},"post-type-archive-descriptions","Post Type Archive Descriptions","1.5.0","mrwweb","https:\u002F\u002Fprofiles.wordpress.org\u002Fmrwweb\u002F","\u003Cp>Enables an editable description to display on post type archive pages. Show the description with WordPress’s \u003Ccode>the_archive_description()\u003C\u002Fcode> function that also displays taxonomy term descriptions. Will work automatically with many themes, including most default WordPress themes.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Translations:\u003C\u002Fstrong> Archive descriptions are translatable via \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpolylang\u002F\" rel=\"ugc\">Polylang\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwpml.org\u002F?aid=255503&affiliate_key=8ZIRtAbJbX4x&dr=post-type-archive-descriptions-plugin\" rel=\"nofollow ugc\">WPML (affiliate link)\u003C\u002Fa>, and \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fqtranslate-x\u002F\" rel=\"ugc\">qTranslate-X\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>The Events Calendar:\u003C\u002Fstrong> The archive description is automatically added above the Events Bar when using the latest templates from \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fthe-events-calendar\u002F\" rel=\"ugc\">The Events Calendar\u003C\u002Fa>. Filter the location of the description or disable it entirely with the \u003Ccode>ptad_tribe_template_before_include\u003C\u002Fcode> filter.\u003C\u002Fp>\n\u003Ch4>Other Plugins by MRWweb\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmrw-web-design-simple-tinymce\u002F\" rel=\"ugc\">MRW Simplified Editor\u003C\u002Fa> – Get rid of bad and obscure TinyMCE buttons. Move the rest to a single top row.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpost-status-menu-items\u002F\" rel=\"ugc\">Post Status Menu Items\u003C\u002Fa> – Adds post status links–e.g. “Draft” (7)–to post type admin menus.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fhawaiian-characters\u002F\" rel=\"ugc\">Hawaiian Characters\u003C\u002Fa> – Adds the correct characters with diacriticals to the WordPress editor Character Map for Hawaiian\u003C\u002Fli>\n\u003C\u002Ful>\n","Enables an editable description to display on post type archive pages. Show the description with WordPress's the_archive_description() function t &hellip;",68267,6,"2023-10-20T17:14:00.000Z","6.3.8","4.6",[114,23,115,71,116],"archives","custom-post-type-archive","post-type-archive","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-type-archive-descriptions.1.5.0.zip",{"slug":119,"name":120,"version":121,"author":122,"author_profile":123,"description":124,"short_description":125,"active_installs":126,"downloaded":127,"rating":13,"num_ratings":47,"last_updated":128,"tested_up_to":129,"requires_at_least":91,"requires_php":130,"tags":131,"homepage":133,"download_link":134,"security_score":98,"vuln_count":99,"unpatched_count":99,"last_vuln_date":36,"fetched_at":29},"acf-archive","Advanced Custom Fields: Archive Templates","1.0.6","Imark Image","https:\u002F\u002Fprofiles.wordpress.org\u002Fimarkimage\u002F","\u003Cp>ACF Archives is a little plugin for helping you attach ACF fields to the archive template.\u003Cbr \u002F>\nThe plugin will add a submenu for each public custom post type with archive defined\u003Cbr \u002F>\nand then you can select under ACF rules box.\u003C\u002Fp>\n\u003Ch3>Want to add or remove the submenu for other custom post types?\u003C\u002Fh3>\n\u003Cp>Here is a code example you can add to to your theme functions.php\u003C\u002Fp>\n\u003Cpre>\u003Ccode>    add_filter( 'acf_archive_post_types', 'change_acf_archive_cpt' );\n    function change_acf_archive_cpt( $cpts ) {\n        \u002F\u002F 'book' and 'movie' are the cpt key.\n\n        \u002F\u002F Remove cpt\n        unset( $cpts['book'] );\n\n        \u002F\u002F Add cpt\n        $cpts['movie'] = Movies Archive;\n\n        return $cpts;\n    }\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch3>Get the acf field on archive page\u003C\u002Fh3>\n\u003Cpre>\u003Ccode>    $object = get_queried_object();\n    $field = get_field( 'field_name', $object->name );\n\n    var_dump( $field );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch3>From within WordPress\u003C\u002Fh3>\n\u003Col>\n\u003Cli>Visit ‘Plugins > Add New’\u003C\u002Fli>\n\u003Cli>Search for ‘acf archive’\u003C\u002Fli>\n\u003Cli>Activate ACF Archive from your Plugins page.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch3>Manually\u003C\u002Fh3>\n\u003Col>\n\u003Cli>Upload the \u003Ccode>acf-archive\u003C\u002Fcode> folder to the \u003Ccode>\u002Fwp-content\u002Fplugins\u002F\u003C\u002Fcode> directory\u003C\u002Fli>\n\u003Cli>Activate the ACF Archive plugin through the ‘Plugins’ menu in WordPress\u003C\u002Fli>\n\u003C\u002Fol>\n","ACF Archive is a little plugin for helping you attach ACF fields to the archive template.",900,12383,"2020-05-25T18:54:00.000Z","5.4.19","5.4",[132,119,21],"acf","https:\u002F\u002Fwww.imark.co.il\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Facf-archive.1.0.6.zip",{"slug":136,"name":137,"version":138,"author":139,"author_profile":140,"description":141,"short_description":142,"active_installs":143,"downloaded":144,"rating":13,"num_ratings":27,"last_updated":145,"tested_up_to":146,"requires_at_least":17,"requires_php":18,"tags":147,"homepage":149,"download_link":150,"security_score":98,"vuln_count":99,"unpatched_count":99,"last_vuln_date":36,"fetched_at":29},"custom-post-type-archives","Custom Post Type Archives","1.5.1","rATRIJS","https:\u002F\u002Fprofiles.wordpress.org\u002Fratrijs\u002F","\u003Cp>\u003Cstrong>Since version 3.1 WordPress has it’s own implementation of custom post type archives so you can create them without this plugin – visit this page for more info -> https:\u002F\u002Fcodex.wordpress.org\u002FPost_Types. Nevertheless I do believe that this plugin is more flexible and you can still use it and it will still work as expected.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This plugin will enable custom post type archives (also yearly, monthly and daily) together with feeds, customizable titles and paging.\u003C\u002Fp>\n\u003Cp>These archives will work the same way as the category or tag archives work when you go to, for example, http:\u002F\u002Fexample.com\u002Fcategory\u002Fexample.\u003C\u002Fp>\n\u003Cp>WordPress 3.0 new custom post type feature is awesome. The only problem is – it lacks archive functionality for these post types so you can’t easely assign one URL to just list your ‘photo’ post type posts. You also won’t be able to get feeds just from this post type. This plugin adds this functionality to WordPress so that you can fully enjoy custom post types. It will also let you to create seperate templates for your post type archives which wasn’t possible before. You will be able to use the same things you are familiar with if you are a theme developer as well as you will be able to enjoy this feature if you are not a developer but just want to enable this feature for your blog.\u003C\u002Fp>\n\u003Cp>With this plugin you will be able to specify:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>URL base for custom post types. Assuming you have a post type named ‘photo’, you can list all your post types in URL http:\u002F\u002Fexample.com\u002Fphoto or http:\u002F\u002Fexample.com\u002Fpost-type\u002Fphoto – whatever you like by simply filling one field.\u003C\u002Fli>\n\u003Cli>Whether to use the custom post type rewrite slug or custom post type name as URL parameter after ‘URL base’. It defaults to true, because that’s the way it should work, but it might be more efficient to disable this option. For more information please read the FAQ. Also if this option is enabled then you will be able to specify a custom rewrite slug for each enabled custom post type archive.\u003C\u002Fli>\n\u003Cli>Title for post type archives. You can use {POST_TYPE_NAME} and {POST_TYPE_SINGULAR_NAME} variables into this option. {POST_TYPE_NAME} will be replaces with current post types name and {POST_TYPE_SINGULAR_NAME} will be replaces with current post types singular name. So if you are in post type ‘photo’ and this option is set to ‘Post Type “{POST_TYPE_SINGULAR_NAME}”‘ then the title will say ‘Post Type “Photos”‘. You can also use {SEP}, {SEP_LEFT_SPACE}, {SEP_RIGHT_SPACE}, {SEP_SPACED}. These will be replaced with seperator specified in wp_title function. Spaced ones will have the space on defined side. {SEP_LEFT_SPACE} will have space in left side and vice verca. {SEP_SPACED} will have spaced on both sides. I had to do this in this way, because WordPress trims variables before saving. If left blank (this option), plugin won’t change the title. You can also specify a custom title for each enabled custom post type archive.\u003C\u002Fli>\n\u003Cli>What template file to use for rendering a custom post type. You can use either one template for all post types or just type ‘post-type-{POST_TYPE}.php’ and for post type ‘photo’ plugin will try to include ‘post-type-photo.php’ to render the custom post type.\u003C\u002Fli>\n\u003Cli>What template file to load if above template file is not found. So it’s easy to use index.php for all post types except ‘photo’ for example.\u003C\u002Fli>\n\u003Cli>Whether to add a feed link for custom post type archive. Will work the same way as any other feed links, for example in category index pages where your visitors can subscribe to your site updates. Plugin will automatically insert the feed link if \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FFunction_Reference\u002Fadd_theme_support\" rel=\"nofollow ugc\">‘automatic-feed-links’\u003C\u002Fa> is enabled for your theme. If that’s true then plugin won’t show this option in plugin settings.\u003C\u002Fli>\n\u003Cli>Post types that gets archives. Just tick the checkboxes next to those post types you want to see archives. Easy as that.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Note that if you update URL base field, disable\u002Fenable post type rewrite tag usage or enable\u002Fdisable some post type archives, then you will have to visit ‘Permalinks’ section under ‘Settings’ to flush old permalinks and enable the changes.\u003C\u002Fp>\n\u003Cp>Also a good thing for theme developers – you have four new functions to use:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>pta_is_post_type_archive – this function will work similary as is_category or is_single and so on. It will return true if this page is a custom post type archive or false if it isn’t. You can also specify an optional argument with post type name and then function will return boolean to say whether you’re in post type archive for that post type or not. Simple and useful!\u003C\u002Fli>\n\u003Cli>get_the_post_type_permalink – this function will return a link to custom post type archive for current post in the WordPress loop. Or you can specify a post type slug or post ID or post object as an argument if you are not in a loop. In this way you can always link to custom post type archives wherever you are.\u003C\u002Fli>\n\u003Cli>the_post_type_permalink – uses get_the_post_type_permalink to echo the link rather than return it.\u003C\u002Fli>\n\u003Cli>wp_get_post_type_archives – will work the same way as \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FFunction_Reference\u002Fwp_get_archives\" rel=\"nofollow ugc\">‘wp_get_archives’\u003C\u002Fa> function that allows you to get yearly, monthly, daily (and so on) archives for custom post types.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If you have any issues at all, please try these steps that hopefully will help you:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>check out the Faq section to search for an answer for your question\u003C\u002Fli>\n\u003Cli>visit plugins homepage (http:\u002F\u002Fratvars.com\u002Fcustom-post-type-archives) for more information (you can also leave a comment there)\u003C\u002Fli>\n\u003Cli>create a new forum topic in here about the issue you’re having\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>I will try to help you as good as I can.\u003C\u002Fp>\n","Enables custom post type archives that will support both paging and feeds. All fully customizable.",200,22962,"2011-08-08T19:57:00.000Z","3.2.1",[22,23,71,95,148],"post-types","http:\u002F\u002Fratvars.com\u002Fcustom-post-type-archives","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-post-type-archives.1.5.1.zip",{"attackSurface":152,"codeSignals":176,"taintFlows":208,"riskAssessment":226,"analyzedAt":243},{"hooks":153,"ajaxHandlers":172,"restRoutes":173,"shortcodes":174,"cronEvents":175,"entryPointCount":99,"unprotectedCount":99},[154,160,163,167],{"type":155,"name":156,"callback":157,"file":158,"line":159},"action","admin_notices","admin_error_notice","class.acf-cpt-options-pages.php",10,{"type":155,"name":161,"callback":162,"priority":13,"file":158,"line":65},"init","load_plugin_textdomain",{"type":155,"name":164,"callback":165,"file":158,"line":166},"admin_menu","options_page_render",17,{"type":155,"name":161,"callback":168,"priority":169,"file":170,"line":171},"acf_cpt_admin_init",99,"cpt-acf.php",45,[],[],[],[],{"dangerousFunctions":177,"sqlUsage":182,"outputEscaping":184,"fileOperations":99,"externalRequests":99,"nonceChecks":99,"capabilityChecks":99,"bundledLibraries":207},[178],{"fn":179,"file":158,"line":180,"context":181},"unserialize",44,"$cpts_enabled     = unserialize($get_cpts_enabled);",{"prepared":99,"raw":99,"locations":183},[],{"escaped":99,"rawEcho":159,"locations":185},[186,189,192,194,196,198,199,201,203,205],{"file":158,"line":187,"context":188},93,"raw output",{"file":190,"line":191,"context":188},"tpl-settings-page.php",23,{"file":190,"line":193,"context":188},25,{"file":190,"line":195,"context":188},26,{"file":190,"line":197,"context":188},38,{"file":190,"line":197,"context":188},{"file":190,"line":200,"context":188},42,{"file":190,"line":202,"context":188},54,{"file":190,"line":204,"context":188},64,{"file":190,"line":206,"context":188},66,[],[209],{"entryPoint":210,"graph":211,"unsanitizedCount":27,"severity":225},"\u003Ctpl-settings-page> (tpl-settings-page.php:0)",{"nodes":212,"edges":222},[213,217],{"id":214,"type":215,"label":216,"file":190,"line":14},"n0","source","$_POST['cpts']",{"id":218,"type":219,"label":220,"file":190,"line":14,"wp_function":221},"n1","sink","update_option() [Settings Manipulation]","update_option",[223],{"from":214,"to":218,"sanitized":224},false,"low",{"summary":227,"deductions":228},"The 'acf-cpt-options-pages' plugin v2.0.9 exhibits a concerning security posture, despite a lack of immediately exploitable entry points identified in the static analysis. The presence of a single dangerous function, 'unserialize', without any apparent sanitization or capability checks, presents a significant risk. This, combined with 100% of its outputs being unescaped, creates a high potential for Cross-Site Scripting (XSS) vulnerabilities if the unserialized data is rendered directly in the browser.\n\nThe taint analysis indicates a flow with an unsanitized path, although it is not classified as critical or high severity. This suggests that while there might be a way to inject data that is not properly cleaned, its impact is currently assessed as low. However, the plugin has a known vulnerability history, including one unpatched medium severity CVE and a common pattern of Cross-Site Request Forgery (CSRF) vulnerabilities. This history indicates a recurring weakness in input validation and state-changing operations, which, when combined with the lack of capability checks and nonce checks on the limited attack surface, can be exploited.\n\nOverall, while the plugin has strengths such as using prepared statements for SQL queries and having no apparent external HTTP requests, the significant risks posed by 'unserialize' without checks, unescaped output, and a history of CSRF vulnerabilities outweigh these positives. The lack of authorization checks on the few potential interaction points, coupled with the aforementioned issues, necessitates caution and prompt remediation.",[229,232,234,237,239,241],{"reason":230,"points":231},"Unpatched medium severity CVE",15,{"reason":233,"points":159},"Dangerous function 'unserialize' without checks",{"reason":235,"points":236},"100% of outputs unescaped",8,{"reason":238,"points":76},"Flow with unsanitized path",{"reason":240,"points":76},"No nonce checks",{"reason":242,"points":76},"No capability checks","2026-03-16T18:31:01.445Z",{"wat":245,"direct":251},{"assetPaths":246,"generatorPatterns":248,"scriptPaths":249,"versionParams":250},[247],"\u002Fwp-content\u002Fplugins\u002Facf-cpt-options-pages\u002Fassets\u002Facf-cpt-logic.js",[],[247],[],{"cssClasses":252,"htmlComments":253,"htmlAttributes":254,"restEndpoints":255,"jsGlobals":256,"shortcodeOutput":257},[],[],[],[],[],[]]