我们的knowhow的其中一个文件可能会需要修改。
文件1
这个文件在 htdocs\wordpress\wp-content\themes\konwhow\content-meta.php
我将文件改成下面的那个了。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <?php $st_post_meta = of_get_option('st_article_meta' ); $number = get_comments_number(get_the_ID()); ?>
<ul class="entry-meta clearfix">
<li class="date"> <i class="icon-time"></i> <time datetime="<?php the_time('Y-m-d')?>" itemprop="datePublished"><?php the_time( get_option('date_format') ); ?></time> </li>
<li class="author"> <i class="icon-user"></i> <?php the_author(); ?> </li>
<li class="category"> <i class="icon-folder-close"></i> <?php the_category('/ '); ?> </li>
<?php if ( comments_open() ){ ?> <li class="comments"> <i class="icon-comment"></i> <?php comments_popup_link( __( '0 Comments', 'framework' ), __( '1 Comment', 'framework' ), __( '% Comments', 'framework' ) ); ?><?php } ?> </li>
</ul>
|