- This topic has 9 replies, 2 voices, and was last updated 3 years, 9 months ago by
Tom.
-
AuthorPosts
-
August 19, 2018 at 10:38 am #653672
Immi
hello there, how to display Last update below breadcrumbs
GeneratePress 2.1.3August 19, 2018 at 8:41 pm #653895Tom
Lead DeveloperLead DeveloperHi there,
Where are the breadcrumbs on the page? Anywhere specific I should be looking?
Let me know 🙂
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentAugust 19, 2018 at 9:09 pm #653906Immi
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 **
August 20, 2018 at 9:22 am #654569Tom
Lead DeveloperLead DeveloperHow are you currently adding the breadcrumbs? Using a hook? If so, which one?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentAugust 20, 2018 at 10:31 am #654700Immi
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.**
August 20, 2018 at 5:37 pm #655051Tom
Lead DeveloperLead DeveloperI 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.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentAugust 20, 2018 at 7:33 pm #655107Immi
please have a look on added breadcrumbs in the of section hook
<?php if ( is_page() || is_single() ) : ?>
<?php yoast_breadcrumb( ‘<p id=”breadcrumbs”>’,'</p>’ ); ?><?php endif; ?>
<?php if ( is_page() || is_single() ) : ?>
<?php endif; ?>
August 20, 2018 at 8:20 pm #655122Tom
Lead DeveloperLead DeveloperTry 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/
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentAugust 20, 2018 at 8:25 pm #655126Immi
it’s working fine as expected
Thank You
August 20, 2018 at 8:29 pm #655128Tom
Lead DeveloperLead DeveloperYou’re welcome 🙂
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development -
AuthorPosts
- You must be logged in to reply to this topic.