Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    To remove the categories from the example, remove this part of the code:

    in <?php generate_do_post_meta_item( 'categories' ); ?>

    Just to confirm, you want a user icon as well as the avatar? Do you have anything on your site that’s using an icon library, like Font Awesome?

    To remove categories from the footer meta, try this:

    add_filter( 'generate_footer_entry_meta_items', function( $items ) {
        return array_diff( $items, array( 'categories' ) );
    } );
    Thread Starter link1921u

    (@link1921u)

    Just to confirm, you want a user icon as well as the avatar? Do you have anything on your site that’s using an icon library, like Font Awesome?

    – Yes, I have Font Awesome, and thanks for the codes, I am a beginner and I feel overwhelmed

    I have already managed to show the labels, so I only need the icons and, if you can, help me remove the “Por” that appears next to the name, and put the date next to the name, as normal

    This is my idea:

    I’m sorry if I ask a lot, really, but I’ve been with this for days

    • This reply was modified 5 years, 4 months ago by link1921u.
    Thread Starter link1921u

    (@link1921u)

    My idea:

    (I dont know why my link is not visible)

    • This reply was modified 5 years, 4 months ago by link1921u.
    Theme Author Tom

    (@edge22)

    To add the icons and remove the “by” text, try this:

    add_filter( 'generate_inside_post_meta_item_output', function( $output, $item ) {
        if ( 'date' === $item ) {
            $output = '<i class="far fa-clock"></i> ';
        }
    
        if ( 'author' === $item ) {
            $output = '<i class="fas fa-user"></i> ';
        }
    
        return $output;
    }, 50, 2 );

    Of course, you can adjust the icons to whatever you like 🙂

    Thread Starter link1921u

    (@link1921u)

    Tom … I’ll be honest, I love you so much hahaha

    Theme Author Tom

    (@edge22)

    hahah I’m glad I could help! 🙂

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Entry Meta Style’ is closed to new replies.