Site logo

Archived topic

Remove footer entry-meta

3 replies · Started by Fabien on November 4, 2021

Viewing posts 1–4 of 4

Hi,

On an archive page, is there a way to totaly remove the <footer class="entry-meta" ....</footer> ?

When I say totaly I mean using PHP in order to remove the HTML code (not with CSS the hide the element).

Thanks !

Hi there,

try this snippet:

add_action( 'wp', function() {
    if (!is_single() ) {
        remove_action( 'generate_after_entry_content', 'generate_footer_meta' );
    }
} );

Awesome, works like a charm !

Glad to hear that!

This archived topic is closed to new replies.