We're merging with GenerateBlocks! Learn more here.

[Support request] Modifying show meta order

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Modifying show meta order

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #30458
    Lorenzo
    Participant

    I want show meta info in this order: date, author, categories.
    How can I do?
    My page: https://crismhom.xyz/#inicio-novedades
    Thanks!

    #30532
    elvin
    Moderator

    Hi there,

    There’s no way to edit the post meta order by default, unfortunately.

    But you can try going the CSS approach.

    Try this CSS:

    .wp-show-posts-entry-meta {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    
    span.wp-show-posts-posted-on {
        order: -1;
    }
    
    .wp-show-posts-entry-meta > :nth-child(2){
        order: 0;
    }
    
    .wp-show-posts-entry-meta > :nth-child(4){
        order: 4;
    }
    
    .wp-show-posts-entry-meta > span.wp-show-posts-separator {
        padding: 0 5px;
    }
    
    span.wp-show-posts-byline {
        order: 3;
    }
    
    span.wp-show-posts-terms {
        order: 5;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.