Site logo

Archived topic

excerpt inside a Page before title

5 replies · Started by FunkyCss on April 12, 2020

Viewing posts 1–6 of 6

Hi, so i have used the add_post_type_support( 'page', 'excerpt' ); inside the child theme so i can use excerpts in my site .

What i need to do is to show them after the title and before the image in the Pages is this possible ?

UPDATE **

So i have used a hook <?php echo the_excerpt(); ?> and i can display it but there is a way after the Page title before the featured image ?

Hi , i found the solution - > after-entry-header will do the job ,

But if there is no excerpt how can i make it not to be displayed , as i see if there is no excerpt will show the first paragraph of the content . this is a problem , is any possible solution ?

Hi there,

You could do this:

<?php
if ( has_excerpt() ) {
    the_excerpt();
}
?>

Let me know :)

Yeap ! that did the trick , works like charm ! :D

Awesome :)

This archived topic is closed to new replies.