• We utilize a lot of tags and its getting too much to show them on single page up with the normal meta.

    How can move the tags specifically down to after the content

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @tworak,

    Would you please try adding this custom PHP code to your site

    add_filter( 'astra_post_tags', 'remove_tags_callback' );
    function remove_tags_callback(){
        return ' ';
    }
    
    add_action( 'astra_entry_bottom' , 'add_tags_callback');
    function add_tags_callback(){
            $output = '';
            
            $tags_list = get_the_tag_list( '', __( ', ', 'astra' ) );
            if ( $tags_list ) {
                $output .= '<span class="tags-links">' . $tags_list . '</span>';
            }
           echo 'Tags: ' . $output . '';
    }

    ?Please refer to this doc to know how to add custom PHP code in Astra.

    ?I hope that will help.

    ??Kind regards,
    ?Herman ??

Viewing 1 replies (of 1 total)
  • The topic ‘Move Tags on blog single to after content’ is closed to new replies.