wordpress自定义类型的文章不带置顶功能,目前要给自定义文章类型实现置顶功能,需要借助函数代码或者wordpress插件,代码实现可以移步《给wordpress自定义文章类型添加文章置顶功能选项》,wordpress插件则可以安装Custom Post Type Sticky插件,通过该插件,用户仅需要安装启用即可实现自定义文章类型的置顶功能,无需任何设置,简单便捷。
插件使用方法:
1、后台插件——安装插件中搜索关键词“Custom Post Type Sticky”进行安装。
或者访问下面的地址下载安装:
https://wordpress.org/plugins/custom-post-type-sticky/
2、安装启用插件后,如果网站存在自定义文章类型,则会在文章编辑窗口或者快捷编辑窗口出现文章置顶的选项:
编辑窗口
快捷编辑窗口
3、置顶文章调用代码和wordpress默认文章类型置顶文章的调用代码一样,代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php $sticky = get_option('sticky_posts'); query_posts( array('showposts'=>'10', 'post__in' => $sticky, 'ignore_sticky_posts' => 1,'post_status' => 'publish','post_type' => 'product_type' ) ); if (have_posts()) : while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; endif; wp_reset_query(); ?> |
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/248609.html