[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fYixGFvWlC3h_W-aXBV8Bz09YZ-IcmZIk4aGZW7ZxsTI":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},"navzme","Navneil Naicker","https:\u002F\u002Fprofiles.wordpress.org\u002Fnavzme\u002F",4,61040,91,240,73,"2026-04-04T02:46:06.872Z",[14,40,61,80],{"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":34,"download_link":35,"security_score":36,"vuln_count":7,"unpatched_count":37,"last_vuln_date":38,"fetched_at":39},"navz-photo-gallery","ACF Photo Gallery Field","3.1","\u003Cp>\u003Cstrong>Important Notice for New Users of ACF Photo Gallery Field\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>If you are installing the ACF Photo Gallery Field for the first time on your WordPress website, we’d like to inform you that this plugin will no longer be maintained as of October 2024. As an alternative, we have launched a new and improved plugin called \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Facf-galerie-4\u002F\" rel=\"ugc\">ACF Galerie 4\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>We encourage you to check out \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Facf-galerie-4\u002F\" rel=\"ugc\">ACF Galerie 4\u003C\u002Fa> for enhanced features and ongoing support. ACF Galerie 4 includes a built-in migration tool that seamlessly transfers data from ACF Photo Gallery Field or ACF Gallery Pro to ACF Galerie 4. \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fmigrate-from-acf-photo-gallery-field-to-acf-galerie-4\u002F\" rel=\"ugc\">Learn more\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Thanks\u003C\u002Fp>\n\u003Cp>A lightweight extension of Advanced Custom Field (ACF) that adds \u003Cstrong>Photo Gallery\u003C\u002Fstrong> field to any post\u002Fpages on your WordPress website.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Visually create your Fields\u003C\u002Fli>\n\u003Cli>Add multiple photos and you can also modify title, caption and link to anything\u003C\u002Fli>\n\u003Cli>Assign your fields to multiple edit pages (via custom location rules)\u003C\u002Fli>\n\u003Cli>Easily load data through a simple and friendly API\u003C\u002Fli>\n\u003Cli>Uses the native WordPress custom post type for ease of use and fast processing\u003C\u002Fli>\n\u003Cli>Uses the native WordPress metadata for ease of use and fast processing\u003C\u002Fli>\n\u003Cli>Supports WordPress classic and Gutenberg editor\u003C\u002Fli>\n\u003Cli>RESTFul API\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Donation\u003C\u002Fh4>\n\u003Cp>Navneil Naicker is the sole developer working on this free WordPress Plugin in his leisure time. He would like to integrate it with premium plugins like Elementor Pro and Advanced Custom Fields Pro. Please donate to support Navneil in continuing further development of this plugin. Click on the link “\u003Ca href=\"https:\u002F\u002Fwww.buymeacoffee.com\u002Fnavzme\" rel=\"nofollow ugc\">https:\u002F\u002Fwww.buymeacoffee.com\u002Fnavzme\u003C\u002Fa>” to donate.\u003C\u002Fp>\n\u003Ch4>Usage\u003C\u002Fh4>\n\u003Cp>\u003Cem>acf_photo_gallery\u003C\u002Fem> is a helper function that takes in \u003Cstrong>ACF_FIELD_NAME\u003C\u002Fstrong> and \u003Cstrong>POST_ID\u003C\u002Fstrong> will query the database and compile the images for you. The output of this function will be an array.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>acf_photo_gallery(ACF_FIELD_NAME, POST_ID);\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Example\u003C\u002Fh4>\n\u003Cp>The following example is using Twitter Bootstrap framework to layout. You can use any framework of your choice.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\n    \u002F\u002FGet the images ids from the post_metadata\n    $images = acf_photo_gallery('vacation_photos', $post->ID);\n    \u002F\u002FCheck if return array has anything in it\n    if( count($images) ):\n        \u002F\u002FCool, we got some data so now let's loop over it\n        foreach($images as $image):\n            $id = $image['id']; \u002F\u002F The attachment id of the media\n            $title = $image['title']; \u002F\u002FThe title\n            $caption= $image['caption']; \u002F\u002FThe caption\n            $full_image_url= $image['full_image_url']; \u002F\u002FFull size image url\n            $full_image_url = acf_photo_gallery_resize_image($full_image_url, 262, 160); \u002F\u002FResized size to 262px width by 160px height image url\n            $thumbnail_image_url= $image['thumbnail_image_url']; \u002F\u002FGet the thumbnail size image url 150px by 150px\n            $url= $image['url']; \u002F\u002FGoto any link when clicked\n            $target= $image['target']; \u002F\u002FOpen normal or new tab\n            $alt = get_field('photo_gallery_alt', $id); \u002F\u002FGet the alt which is a extra field (See below how to add extra fields)\n            $class = get_field('photo_gallery_class', $id); \u002F\u002FGet the class which is a extra field (See below how to add extra fields)\n?>\n\u003Cdiv class=\"col-xs-6 col-md-3\">\n    \u003Cdiv class=\"thumbnail\">\n        \u003C?php if( !empty($url) ){ ?>\u003Ca href=\"\u003C?php echo $url; ?>\" \u003C?php echo ($target == 'true' )? 'target=\"_blank\"': ''; ?>>\u003C?php } ?>\n            \u003Cimg src=\"\u003C?php echo $full_image_url; ?>\" alt=\"\u003C?php echo $title; ?>\" title=\"\u003C?php echo $title; ?>\">\n        \u003C?php if( !empty($url) ){ ?>\u003C\u002Fa>\u003C?php } ?>\n    \u003C\u002Fdiv>\n\u003C\u002Fdiv>\n\u003C?php endforeach; endif; ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Add Extra Fields\u003C\u002Fh4>\n\u003Cp>To add extra fields add the following to your themes functions.php file.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F\u002FCreate extra fields called Altnative Text and Status\nfunction my_extra_gallery_fields( $args, $attachment_id, $acf_key ){\n    $args['alt'] = array(\n        'type' => 'text', \n        'label' => 'Altnative Text', \n        'name' => 'alt', \n        'value' => get_field($field . '_alt', $attachment_id)\n    );\n    $args['status'] = array(\n        'type' => 'select', \n        'label' => 'Status', \n        'name' => 'status', \n        'value' => array(\n            array(\n                '1' => 'Active',\n                 '2' => 'Inactive'\n            ), \n            get_field($field . '_status', $attachment_id)\n        )\n    );\n    return $args;\n}\nadd_filter( 'acf_photo_gallery_image_fields', 'my_extra_gallery_fields', 10, 3 );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Supported field types:\u003Cbr \u002F>\n* text, date, color, datetime-local, email, number, tel, time, url, week, range, checkbox, radio, textarea, select\u003C\u002Fp>\n\u003Ch4>How to get values of extra fields\u003C\u002Fh4>\n\u003Cp>You can use ACF helper function \u003Ccode>get_field\u003C\u002Fcode>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>get_field('photo_gallery_alt', $id);\nget_field('photo_gallery_class', $id);\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Pull caption from attachment caption field\u003C\u002Fh4>\n\u003Cp>By default the caption is being pulled from description field. Add the following filter to your \u003Ccode>function.php\u003C\u002Fcode> to pull the caption from attachment caption field.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'acf_photo_gallery_caption_from_attachment', '__return_true' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>REST API\u003C\u002Fh4>\n\u003Cp>Send HTTP Request to URL to get JSON response of all posts\u003C\u002Fp>\n\u003Cpre>\u003Ccode>http:\u002F\u002F{domain}\u002Fwp-json\u002Fwp\u002Fv2\u002F{POST_TYPE}\u002F\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Send HTTP Request to URL to get JSON response of specific post\u003C\u002Fp>\n\u003Cpre>\u003Ccode>http:\u002F\u002F{domain}\u002Fwp-json\u002Fwp\u002Fv2\u002F{POST_TYPE}\u002F{POST_ID}\u002F\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>When you receive the response, see the ACF item which contains ACF photo gallery name and array of images.\u003C\u002Fp>\n\u003Ch4>Installation and basic usage tutorial\u003C\u002Fh4>\n\u003Cp>\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\u002Fc7u9FwVLe9Q?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\u003Ch4>ACF Photo Gallery Field on WordPress Custom Post Type tutorial\u003C\u002Fh4>\n\u003Cp>\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\u002F5iTV0JVFFOE?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\u003Ch4>How to use Elementor dynamic tags with ACF Photo Gallery Field plugin tutorial\u003C\u002Fh4>\n\u003Cp>\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\u002FXlSx_weZXoU?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\u003Ch4>Compatibility\u003C\u002Fh4>\n\u003Cp>This ACF field type is compatible with: ACF 4, 5 and 6\u003C\u002Fp>\n\u003Ch4>Issues\u003C\u002Fh4>\n\u003Cp>Just like any other WordPress plugin, this plugin can also cause issues with other themes and plugins. If you are facing issues making this plugin work on your WordPress site, please do ask for help in the support forum. This way we can help you out and prevent this issue from happening to someone else. If you want to talk to me directly, you can contact me via my website \u003Ca href=\"http:\u002F\u002Fwww.navz.me\u002F\" rel=\"nofollow ugc\">http:\u002F\u002Fwww.navz.me\u002F\u003C\u002Fa>\u003C\u002Fp>\n","A lightweight extension of Advanced Custom Field (ACF) that adds Photo Gallery field to any post\u002Fpages on your WordPress website.",60000,634703,80,29,"2025-12-26T22:25:00.000Z","6.9.4","5.8","7.0",[29,30,31,32,33],"acf","custom","fields","gallery","photo","http:\u002F\u002Fwww.navz.me\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fnavz-photo-gallery.3.1.zip",95,0,"2026-02-18 14:58:38","2026-03-15T15:16:48.613Z",{"slug":41,"name":42,"version":43,"author":5,"author_profile":6,"description":44,"short_description":45,"active_installs":46,"downloaded":47,"rating":48,"num_ratings":49,"last_updated":50,"tested_up_to":25,"requires_at_least":51,"requires_php":52,"tags":53,"homepage":57,"download_link":58,"security_score":59,"vuln_count":37,"unpatched_count":37,"last_vuln_date":60,"fetched_at":39},"acf-galerie-4","ACF Galerie 4","1.4.3","\u003Cp>ACF Galerie 4 is a versatile WordPress plugin designed to simplify the creation and management of media galleries on your website. With its intuitive interface and robust features, you can effortlessly showcase your media in a visually appealing and engaging way.\u003C\u002Fp>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fte2HOJOF1e4?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Col>\n\u003Cli>\u003Cstrong>Effortless Gallery Creation\u003C\u002Fstrong>: Build stunning galleries with ease using Advanced Custom Fields (ACF).\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Versatile Content\u003C\u002Fstrong>: Showcase documents, images, videos, and more in your galleries.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Seamless Integration\u003C\u002Fstrong>: Leverage the power of WordPress’ Restful API for flexible data handling.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>User-Friendly Forms\u003C\u002Fstrong>: Allow visitors to submit content directly through front-end forms powered by \u003Ca href=\"https:\u002F\u002Fwww.advancedcustomfields.com\u002Fresources\u002Facf_form\u002F\" rel=\"nofollow ugc\">acf_form()\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Elementor and Bricks Builder Compatibility (Available in ACF Galerie 4 Pro)\u003C\u002Fstrong>: Enjoy a seamless integration with Elementor and Bricks Builder for even more customization options.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>GraphQL Support\u003C\u002Fstrong>: Unlock powerful and flexible queries for your custom galleries with \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-graphql\u002F\" rel=\"ugc\">WPGraphQL\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwpgraphql-acf\u002F\" rel=\"ugc\">WPGraphQL for ACF\u003C\u002Fa> integration.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch3>Links\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgalerie4.com\u002F?utm_source=wordpress.org&utm_medium=free\" rel=\"nofollow ugc\">Website\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgalerie4.com\u002Fsupport\" rel=\"nofollow ugc\">Support\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fgalerie4.com\u002F?utm_source=wordpress.org&utm_medium=free&utm_campaign=upgrade\" rel=\"nofollow ugc\">ACF Galerie 4 Pro\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>PRO\u003C\u002Fh4>\n\u003Cp>The ACF Galerie 4 plugin is also available in a professional version, offering more features, enhanced functionality, and greater flexibility. ACF Galerie 4 Pro includes:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Support for Elemetor\u003C\u002Fli>\n\u003Cli>Support for Bricks Builder\u003C\u002Fli>\n\u003Cli>Lifetime updates\u003C\u002Fli>\n\u003Cli>Priority Support\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fgalerie4.com\u002F?utm_source=wordpress.org&utm_medium=free&utm_campaign=upgrade\" rel=\"nofollow ugc\">Upgrade to ACF Galerie 4 Pro 🚀\u003C\u002Fa>\u003C\u002Fp>\n","Enhance your WordPress website with ACF Galerie 4, a powerful and customizable gallery plugin.",1000,10719,68,5,"2025-12-31T21:44:00.000Z","6.0","7.4",[29,32,54,55,56],"images","media","videos","https:\u002F\u002Fnavz.me","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Facf-galerie-4.1.4.3.zip",100,null,{"slug":62,"name":63,"version":64,"author":5,"author_profile":6,"description":65,"short_description":66,"active_installs":67,"downloaded":68,"rating":59,"num_ratings":69,"last_updated":70,"tested_up_to":71,"requires_at_least":72,"requires_php":73,"tags":74,"homepage":77,"download_link":78,"security_score":79,"vuln_count":37,"unpatched_count":37,"last_vuln_date":60,"fetched_at":39},"acf-page-grandchildren","ACF Page Grandchildren","1.0.1","\u003Cp>There are times when you want to show group of fields on grandchildren page only yet you dont know how to code or have less time, thats where we come in. ACF Page Grandchildren is a Custom Advanced Field extended plugin which Is a great way to show group of fields only on grandchildren pages.\u003C\u002Fp>\n\u003Ch4>Required\u003C\u002Fh4>\n\u003Cp>This plugin works as an extension of Advanced Custom Fields, make sure you have it before you install this plugin.\u003C\u002Fp>\n\u003Ch4>Website\u003C\u002Fh4>\n\u003Cp>http:\u002F\u002Fwww.navz,me\u002F\u003C\u002Fp>\n\u003Ch4>Bug Submission and Support\u003C\u002Fh4>\n\u003Cp>http:\u002F\u002Fwww.navz,me\u002F\u003C\u002Fp>\n\u003Ch4>Please Vote and Enjoy\u003C\u002Fh4>\n\u003Cp>Your votes really make a difference! Thanks.\u003C\u002Fp>\n","A great way to show group of fields only on grandchildren pages",30,2294,1,"2022-11-02T19:40:00.000Z","6.1.10","3.5.0","",[29,75,30,31,76],"advanced","page","http:\u002F\u002Fwww.navz.me","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Facf-page-grandchildren.zip",85,{"slug":81,"name":82,"version":83,"author":5,"author_profile":6,"description":84,"short_description":85,"active_installs":86,"downloaded":87,"rating":37,"num_ratings":37,"last_updated":88,"tested_up_to":71,"requires_at_least":89,"requires_php":73,"tags":90,"homepage":95,"download_link":96,"security_score":79,"vuln_count":37,"unpatched_count":37,"last_vuln_date":60,"fetched_at":39},"acf-page-level","ACF Page Level","1.0.0","\u003Cp>You might be having a complex project where you have to show the field groups based on the page level. Thanks to ACF (Advanced Custom Fields), there is a way to make our work less painful. This plugin is very lightweight and adds functionality to show field groups depending on the page level. You can also set the page ancestor to more specific.\u003C\u002Fp>\n\u003Ch4>Website\u003C\u002Fh4>\n\u003Cp>http:\u002F\u002Fwww.navz.me\u002F\u003C\u002Fp>\n\u003Ch4>Please Vote and Enjoy\u003C\u002Fh4>\n\u003Cp>Your votes really make a difference! Thanks.\u003C\u002Fp>\n","Sometimes you want to show the field groups based on the page level right? Well here you go. Enjoy!",10,2262,"2022-11-02T19:37:00.000Z","3.8",[29,91,92,93,94],"admin","core","frontend","site","http:\u002F\u002Fwww.navz.me\u002Fplugins\u002Fwp-pages-advanced","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Facf-page-level.zip"]