TAG list of post right under the post-text

as much as i like the dropdown TAGLIST in the header of the post I found that the reader is not getting it and finding it. So I want the usual style of TAG-LIST of the post underneath the posts content

 

/clickandbuilds/Homeopathy/wp-content/themes/betheme/functions/builder/front.php

Line 24 edit this function MFN_BUILDER_PRINT_CONTENT as is shown underneath


*/
function mfn_builder_print_content( $post_id, $content_field = false ){

$class = get_post_field( 'post_content', $post_id ) ? 'has_content' : 'no_content' ;

echo '<div class="section the_content '. $class .'">';
if( ! get_post_meta( $post_id, 'mfn-post-hide-content', true )){
echo '<div class="section_wrapper">';
echo '<div class="the_content_wrapper">';
if( $content_field ){
echo apply_filters( 'the_content', get_post_field( 'post_content', $post_id ) );
} else {
the_content();
}
echo '<div class="heli_tags">' ; the_tags(); echo '</div>' ;     /* added by heli */
echo '</div>';
echo '</div>';
}
echo '</div>';
}
}

While waiting for a response from one of our team members, we recommend to check Support Center where it is highly likely that you will find the answer to your question in no time.

Sign In or Register to comment.