We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Add ACF to WPSP #33428
    Zlatan
    Participant

    Actually I figured it out, I think.

    Used this code

    add_action( 'wpsp_before_header','wpsp_add_custom_meta' );
    function wpsp_add_custom_meta()
    {
        $meta = get_post_meta( get_the_ID(), 'multiple_images', true );
        if ( isset( $meta ) && '' !== $meta )
            echo '<div class="badge"><span>Gallery</span></div>';
    }

    and it works 🙂

Viewing 1 post (of 1 total)