第一,如何删除post的发表日期?
两个问题,第一,如何删除post的发表日期?
第二,在原日期处显示所属post的类别
谢谢!
在WordPress的右上角有相关的选项的。
yangjianfeng 发表于 2014-7-8 13:14 static/image/common/back.gif
在WordPress的右上角有相关的选项的。
没有啊?
single.php里面删除一行代码即可。
本帖最后由 uper 于 2014-7-8 14:32 编辑
非常小黑 发表于 2014-7-8 14:26 static/image/common/back.gif
single.php里面删除一行代码即可。
谢谢,那如何把原日期处显示为类别呢?
换句话说,我就是想把日期变为类别。
登陆后台找到 content.php 然后编辑 <footer class="entry-meta">
<?php twentytwelve_entry_meta(); ?>
<?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
<?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?>
<div class="author-info">
<div class="author-avatar">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ) ); ?>
</div><!-- .author-avatar -->
<div class="author-description">
<h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
<p><?php the_author_meta( 'description' ); ?></p>
<div class="author-link">
<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
<?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentytwelve' ), get_the_author() ); ?>
</a>
</div><!-- .author-link -->
</div><!-- .author-description -->
</div><!-- .author-info -->
<?php endif; ?>
</footer>删除这段就可以了 在末尾部分很好找
本帖最后由 uper 于 2014-7-8 14:44 编辑
fake-x 发表于 2014-7-8 14:35 static/image/common/back.gif
登陆后台找到 content.php 然后编辑
...
感谢,其实我的问题是,如何用类别替换日期,而不是简单地删除日期。
谢谢!
另外,没有content.php这个文件,有single.php
批量替换the_time('F j, Y')
为the_category(', ')
justfan 发表于 2014-7-8 14:46 static/image/common/back.gif
批量替换the_time('F j, Y')
为the_category(', ')
是在single.php文件中替换吗?
谢谢!
如果你所有的页面都不想显示时间,你就全部替换。每个主题不一样,要修改的地方就不一样,总之index.php,single.php及content中的你先修改下。然后你再看问题解决了没有。如果某些地方 还显示时间。你在其他如category,archive等中模板里查找替换和修改。
justfan 发表于 2014-7-8 15:35 static/image/common/back.gif
如果你所有的页面都不想显示时间,你就全部替换。每个主题不一样,要修改的地方就不一样,总之index.php,si ...
谢谢!
这些真的不叫问题
这种问题,不是蠢,就是懒!
justfan 发表于 2014-7-8 14:46 static/image/common/back.gif
批量替换the_time('F j, Y')
为the_category(', ')
所有的文件都己查找,只有在single.php有,the_time('F j, Y') , 所以只能替换它,但不起作用。
因此在此再次寻求帮助。
希望有会的朋友帮忙。
谢谢
顶起,求帮!
谢谢大家的热心分享~~~~~~~~~~~~~~~~~~
页:
[1]