您可以通过编辑数据库表wp_postmeta
: 正在搜索post_id
= 63和meta_key
= \'标题信息1\',然后编辑meta_value
价值
另一个可能更简单的选择是调用函数update_post_meta()
, 像这样:
<?php
query_posts("page_id=63");
while ( have_posts() ) : the_post();
update_post_meta( get_the_ID(), \'Header Info1\', \'new value\' );
echo get_post_meta( get_the_ID(), \'Header Info1\', true );
endwhile;
wp_reset_query();
记住在更新元字段后删除该行。
But doing this through code or editing the DB table probably beats the purpose of the using meta fields for additional dynamic post/page content.
因此,您可能需要使用一些插件,它为您提供GUI来编辑其他字段的值。请随意搜索“wordpress自定义元字段插件”,这里有一些非常好用的解决方案。