Changing where my author box is printed
You could change the function to echo like this: echo apply_filters(‘the_content’, $content); and then in your template, right before the comments template, place the call to your author box function like this: author_info_box(); also, you would need to remove the add_action(‘the_content’, ‘author_info_box’); Full function example: function author_info_box() { global $post; // Detect if it is … Read more