Archived topic
entry meta below breadcrumbs
9 replies · Started by Immi on August 19, 2018
hello there, how to display Last update below breadcrumbs
Hi there,
Where are the breadcrumbs on the page? Anywhere specific I should be looking?
Let me know :)
hello Tom,
breadcrumbs is on the single page post and I would like to know how to display Last update Date below breadcrumbs.
like this attachment **
How are you currently adding the breadcrumbs? Using a hook? If so, which one?
i'm not talking about adding adding the breadcrumbs?
I want to put last updated date below breadcrumbs. – not adding the breadcrumbs
If you look attached screen page below link you’ll see the kind of thing I’m referring too.
**
I need to know how the breadcrumbs are added in order to know what method we need to use to add the date after them.
For example, if they're added using a hook, I need to know which hook in order to move the date.
please have a look on added breadcrumbs in the of section hook
<?php if ( is_page() || is_single() ) : ?>
<?php endif; ?>
<?php if ( is_page() || is_single() ) : ?>
<?php endif; ?>
Try adding this function:
add_action( 'after_setup_theme', function() {
remove_action( 'generate_after_entry_title', 'generate_post_meta' );
add_action( 'generate_after_entry_header', 'generate_post_meta' );
} );
Adding PHP: https://docs.generatepress.com/article/adding-php/
it's working fine as expected
Thank You
You're welcome :)