[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$f6shLVXwxeK4eIZPAN0MhARXb_AUcbGsdewg0yb8oRsg":3},{"slug":4,"display_name":5,"profile_url":6,"plugin_count":7,"total_installs":8,"avg_security_score":9,"avg_patch_time_days":10,"trust_score":11,"computed_at":12,"plugins":13},"tusko-trush","Tusko Trush","https:\u002F\u002Fprofiles.wordpress.org\u002Ftusko-trush\u002F",2,2030,74,30,76,"2026-04-04T08:32:15.534Z",[14,39],{"slug":15,"name":16,"version":17,"author":5,"author_profile":6,"description":18,"short_description":19,"active_installs":20,"downloaded":21,"rating":22,"num_ratings":23,"last_updated":24,"tested_up_to":25,"requires_at_least":26,"requires_php":27,"tags":28,"homepage":33,"download_link":34,"security_score":35,"vuln_count":36,"unpatched_count":36,"last_vuln_date":37,"fetched_at":38},"acf-cpt-options-pages","Advanced Custom Fields : CPT Options Pages","2.0.9","\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","",[29,30,31,32],"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",{"slug":40,"name":41,"version":42,"author":5,"author_profile":6,"description":43,"short_description":44,"active_installs":10,"downloaded":45,"rating":46,"num_ratings":46,"last_updated":47,"tested_up_to":48,"requires_at_least":26,"requires_php":27,"tags":49,"homepage":50,"download_link":51,"security_score":52,"vuln_count":46,"unpatched_count":46,"last_vuln_date":53,"fetched_at":38},"acf-field-name-copier","Advanced Custom Fields : Field Name Copier","1.0.3","\u003Cp>Plugin helps you to quick copy field name of created ACF field.\u003Cbr \u002F>\nCreates inputs with fields name to quick copy it.\u003C\u002Fp>\n","Plugin helps you to quick copy field name of created ACF field.",1634,0,"2019-06-13T08:50:00.000Z","5.0.25",[30],"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Facf-field-name-copier\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Facf-field-name-copier.zip",85,null]