[Resolved] Move category meta

Home Forums Support [Resolved] Move category meta

Home Forums Support Move category meta

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • #816771
    Tom
    Lead Developer
    Lead Developer

    To remove the one on the bottom, you can disable categories in “Customize > Layout > Blog”.

    No problem!

    #820052
    epickenyan

    Hi Tom. Or better yet, kindly suggest for me how to move the category next to the date in blog layout (except single posts and pages). http://prntscr.com/mpkc47

    #820187
    Tom
    Lead Developer
    Lead Developer

    Try this:

    add_filter( 'generate_post_date_output', function( $output ) {
        echo $output;
    
        if ( ! is_single() ) {
            $categories_list = get_the_category_list( ', ' );
        
            if ( $categories_list ) {
                echo '<span class="cat-links">' . $categories_list . '</span>';
            }
        }
    } );

    Then disable the category option in Customize > Layout > Blog.

    #820292
    epickenyan

    That worked (added float: right).

    #821080
    Tom
    Lead Developer
    Lead Developer

    Awesome 🙂

Viewing 5 posts - 16 through 20 (of 20 total)
  • You must be logged in to reply to this topic.