Move post title

Hello i would like to move my post title from the top of the post to below my first image(not a featured image). Is there something i can do to make this happen?
Thanks

Hi There,

You have to install and activate the child theme first: https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57.

After that add this custom code under functions.php file locates in your child theme:

function create_title_shortcode(){
  return get_the_title();
}
add_shortcode('title', 'create_title_shortcode');

This function will create the [title] shortcode. You can add this shortcode below your first image in the post content.

Next step, we should hide the post title in the single post as well. Please add this custom CSS under Theme Options > CSS:

.single-post .entry-title {
display: none;
}

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.