WordPress教程

WordPress自定义文章类型添加文章置顶功能选项

阿里云

WordPress 默认文章类型 post 在编辑窗口的“发布”以及文章列表的“快捷编辑”中提供了“将文章置于首页顶端”的选项设置,即我们常说的置顶功能。但在 WordPress 的自定义文章类型中并没有发布该选项,刚开始以为是创建自定义文章类型时没有设置对应的参数,但查找资料发现,原来 wordpress 自定义文章类型是真的没有置顶选项,但是通过代码或插件给它可以添加一个。

PS:以下代码针对 TinyMCE 编辑测试使用

也想出现在这里?联系我们
创客主机

下面是给 wordpress 自定义文章类型添加置顶选项设置的实现代码,可根据步骤添加:

第一步:

在主题的 functions.php 文件添加代码:

  1. <?php 
  2. add_action( 'add_meta_boxes', 'add_product_box' );
  3. function add_product_box(){
  4.     add_meta_box( 'product_sticky', '文章置顶', 'product_sticky', 'product_type', 'side', 'high' );
  5. }
  6. function product_sticky (){
  7. ?>
  8. <ul>
  9.     <li style="margin-top:6px;">
  10.         <input id="super-sticky" name="sticky" type="checkbox" value="sticky" <?php checked( is_sticky() ); ?>/> <label for="super-sticky" class="selectit" style="vertical-align: top">推荐阅读</label>
  11.     </li>    
  12. </ul>
  13. <?php } ?>

说明:

修改第三行 add_meta_box()里的 product_type 为自己的自定义文章类型即可,其余参数可以根据需要修改。

第二步:

调用代码与 wordpress 默认文章类型的置顶文章调用一致,代码如下:

  1. <?php 
  2. 	$sticky = get_option('sticky_posts');			
  3. 	query_posts( array('showposts'=>'10', 'post__in' => $sticky, 'ignore_sticky_posts' => 1,'post_status' => 'publish','post_type' => 'product_type' ) );
  4. 	if (have_posts()) :
  5. 		while (have_posts()) : the_post();
  6. ?>
  7. <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
  8. <?php 
  9. 		endwhile;
  10. 	endif; 
  11. 	wp_reset_query();
  12. ?>

WordPress 自定义文章类型添加文章置顶功能选项

已有 433 人购买
查看演示升级 VIP立刻购买

收藏
(0)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!