如何在wp中添加没有插件的定制器编辑选项

时间:2019-08-06 作者:abdullahsk

当我转到wp customizer时,我想编辑名称popular 和cat\\U id=21

<小时>

<div class="p_list"><h2><span>popular</span></h2>   
    <?php $first = true; ?> <?php $cat_id = 21;
$latest_cat_post = new WP_Query( array(\'posts_per_page\' => 4, \'category__in\' => array($cat_id)));
if( $latest_cat_post->have_posts() ) : while( $latest_cat_post->have_posts() ) : $latest_cat_post->the_post();  ?>  

1 个回复
SO网友:colbyalbo

自定义程序,因为它主要用于样式设置。

如果要使标题动态化,则可以创建自定义字段。然后使用get\\u post\\u元函数将其回显到页面或post模板中,并将其封装在任何HTML标记中。

希望这有帮助!

查看以下内容:

https://wordpress.org/support/article/custom-fields/

https://wordpress.org/support/article/custom-fields/#displaying-custom-fields

或者您可以尝试以下插件:

https://wordpress.org/plugins/meta-box/

https://wordpress.org/plugins/advanced-custom-fields/