Zibll子比主题增加精选

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

Zibll子比主题增加精选插图

2、输出如图

Zibll子比主题增加精选插图1

代码,还是收点积分吧:

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://hexsen.com'),
      'id'      => 'jx',
      'type'    => 'Checkbox',
      'label'   => '是否精选文章',
      'default' => false // or false
    ),
  ),
));

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

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>';
  }
Zibll子比主题增加精选插图2
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容