Site logo

[Support request] display tags under the title

Home Forums Support [Support request] display tags under the title

Home Forums Support display tags under the title

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2419038
    takkularapsis

    Hi,

    I would like to move tags to under the title.
    I have tryis php snippets i found from forum but had no luck with it.

    #2419100
    Fernando
    Customer Support

    Hi Takkularapsis,

    Which location are you wanting to place it in? Is it under the Headline in the Page Hero or under this one?: https://share.getcloudapp.com/jkuOdb2P

    #2419108
    takkularapsis

    Hi,

    Thanks,

    Yes, under that one.

    #2419115
    Fernando
    Customer Support

    Which one? Under the Headline in the Page Hero or the screenshot I shared?

    #2419119
    takkularapsis

    Sorry, yes i knew it wasnt clear 🙂 So under screenshot you shared.

    #2419141
    Fernando
    Customer Support

    I see. Thank you for clarifying.

    Can you try adding this Snippet?:

    add_filter( 'generate_header_entry_meta_items', function() {
        return array(
            'author',
            'date',
            'categories',
            'tags',
        );
    } );
    
    add_filter( 'generate_footer_entry_meta_items', function( $items ) {
        return array_diff( $items, [ 'categories', 'tags' ] );
    } );

    Adding PHP: https://docs.generatepress.com/article/adding-php/#code-snippets

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.