Home Forums Bee WordPress Theme Standard Blog list custom

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #5344
    SeaTheme
    Keymaster
    Purchased
    Expired

    1. How to hide meta category for standard blog list, and instead display meta author
    2. How do I move up the meta display (author and date) before the post content? Which php document should I edit?

    plz find line 350 of ../bee/functions/functions-view-module.php
    <li class="blog_meta_cate"><i class="m-edit"></i><?php the_category(', '); ?></li>
    change as:
    <li class="blog_meta_date"><i class="m-edit"></i> <?php the_author(); ?></li>

    move the line 348-351 of ../bee/functions/functions-view-module.php

    <ul class="blog_meta">
    <li class="blog_meta_date">...
    <li class="blog_meta_cate">...	
    </ul><!--End .blog_meta-->

    above line 345 <div class="blog-item-excerpt">

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.