为WordPress文章自动添加自定义栏目 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

为WordPress文章自动添加自定义栏目 – WordPress 教程
WordPress

自定义栏目是WordPress 一个非常强大的功能,借助它我们可以实现很多特殊的功能。本文的一段代码可以为文章自动添加预先设置好的自定义栏目名称及值,而无需手动添加。

将下面的代码添加到当前主题的 functions.php 文件:

add_action('publish_page', 'add_custom_field_automatically');add_action('publish_post', 'add_custom_field_automatically');function add_custom_field_automatically($post_ID) {    global $wpdb;    if(!wp_is_post_revision($post_ID)) {        add_post_meta($post_ID, 'field-name', 'custom value', true);    }}

你只需替换其中的自定义栏目名称:field-name,值:customvalue

之后,当你发布文章后,相应的自定义栏目名称及值会自动添加到文章中。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: