我正在开发一个很久以前创建的wordpress网站。在头文件中,我看到以下代码:
<?php
query_posts("page_id=63");
while ( have_posts() ) : the_post()
?>
<?php echo get_post_meta($post->ID, \'Header Info1\', true) ; ?>
<?php
endwhile;
wp_reset_query();
?>
我需要修改电话号码,我认为可以通过修改id 63中作为单条帖子检索的“Header Info1”来完成。我检查了ID为63的页面,但没有与“Header Info1”相关的内容My question is: Where are the custom fields of get_post_meta located? Where can I find "Header Info1" to change it?