|
本帖最后由 luguokankan 于 2013-7-10 19:02 编辑
一般发布文章我都喜欢隐藏发布时间,所以分享一下.
最简单自动的方法是在模板的functions.php中加如下代码:
代码加在开头部分,在 <?php后即可.
- function jl_remove_post_dates() {
- add_filter('the_date', '__return_false');
- add_filter('the_time', '__return_false');
- add_filter('the_modified_date', '__return_false');
- }
- add_action('loop_start', 'jl_remove_post_dates');
复制代码 (Note: This method requires WordPress 3.0 or above)
|
评分
-
查看全部评分
|