• I am using below code to to move the tag after the post content. But the meta separator (that is “/”) is still on the top . How to remove that separator.
    View here: https://ibb.co/fr50BnC

    Here the code [from Here]

    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 . '';
    }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Move Tags after content in single blog post’ is closed to new replies.