• WP Migrate
  • WP Offload Media
  • WP Offload SES
  • About
  • Podcast
  • Advanced Custom Fields

  • Documentation
  • PRO
  • Blog
  • Support
  • Account
  • Purchase
  • WP Migrate
  • WP Offload Media
  • WP Offload SES

acf/field_group/admin_footer

Documentation Actions acf/field_group/admin_footer

Description

Used to output additional <body> HTML to the field group admin edit page.

This action is similar to the WordPress admin_footer, except that it is only fired on the field group admin edit page.

Changelog

  • Added in version 5.0.0

Example

This example demonstrates how to output additional inline style and script tags to customize field group settings.

functions.php

<?php
add_action('acf/field_group/admin_footer', 'my_acf_field_group_admin_footer');
function my_acf_field_group_admin_footer() {
    ?>
    <style type="text/css">
        /* CSS here. */
    </style>
    <script type="text/javascript">
    (function( $ ){
        // Javascript here.
    })(jQuery);
    </script>
    <?php
}

On this page

    In this category

    • acf/field_group/admin_enqueue_scripts
    • acf/field_group/admin_footer
    • acf/field_group/admin_head
    • acf/init
    • acf/input/admin_enqueue_scripts
    • acf/input/admin_footer
    • acf/input/admin_head
    • acf/input/form_data
    • acf/render_field
    • acf/save_post
    • acf/validate_save_post

    About

    • PRO
    • Blog
    • Account

    Help

    • Docs
    • FAQs
    • Forums
    • Contact
    • Changelog

    Community

    • WordPress
    • Github
    • Twitter
    • AwesomeACF

    Products

    • WP Migrate
    • WP Offload Media
    • WP Offload SES

    © 2023 Delicious Brains Inc. All rights reserved.

    Privacy Policy | Terms and Conditions

    We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Cookie Policy. If you continue to use this site, you consent to our use of cookies.

    Got it