标签归档:说说

WordPress首页不显示特定类型的文章或者页面只显示特定类型的文章

WordPress首页隐藏特定分类文章,在主题index.php中查找 if (have_posts()) 或 while (have_posts()) ,将查找到的这一整行改成: if ( have_posts() ) : query_posts($query_string .’&cat=-6′); while ( have_posts() ) : the_post();6 即为不想显示的分类ID,多个用半角逗号隔开。 wordpress页面显示指定分类文章: 首先需要创建一个特殊页面模板,直接复制主题中的index.php 文件,把文件名修改为你想要的模板名 […]

阅读全文

WordPress添加微博/说说/碎语/状态功能

微博,QQ空间的状态流行,所以也想在WordPress上添加这么一个功能。然后看到别人的设置,所以就搬运过来,体验了一下,效果如:我的说说 首先把下面的代码放到主题的functions.php里面。 //shuoshuo add_action (‘init’, ‘my_custom_init’); function my_custom_init() { $labels = array( ‘name’ => ‘说说’, ‘singular_name’ => ‘说说’, ‘add_new’ => ‘发表说说’, ‘add_new_item’ => ‘发表说说’, ‘edit […]

阅读全文