子比主题增加精选文章按钮

之前有一个叫强军搜索的老哥搞了个精选,我这边自己写了个免费分享出来:

编辑文章的时候勾选是否精选文章:

图片[1]-子比主题增加精选文章按钮-何先生
图片[2]-子比主题增加精选文章按钮-何先生

简单两步,代码实现:

1、将以下代码直接放到 zibll\inc\options\metabox-options.php 下方:

//META BOX SETTING
CSF::createMetabox('mrhe_jingxuan', array(
	'title'     => '精选',
	'post_type' => array('post', 'page', 'plate', 'forum_post'),
	'context'   => 'advanced',
	'data_type' => 'unserialize',
));
CSF::createSection('mrhe_jingxuan', array(
	'fields' => array(
		array(
			'title'   => __('是否精选文章', 'https://www.hexsen.com'),
			'id'      => 'jx',
			'type'    => 'Checkbox',
			'label'   => '是否精选文章',
			'default' => false // or false
		),
	),
));

2、将以下代码放到 zib-posts-list.php 文件中,如图位置:

图片[3]-子比主题增加精选文章按钮-何先生
	if (get_post_meta($post->ID, 'jx', true)){
		$sticky .= '<badge class="img-badge right jb-red"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-hot"></use></svg> 精选</badge>';
	}
© 版权声明
THE END
打赏一根烟,继续保持。
点赞0打赏作者 分享
评论 抢沙发
头像
友好交流,请勿发纯表情,请勿灌水,违者封号喔
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容