Where is get_post_meta value located?
You can do it either by editing the database table wp_postmeta: searching for the post_id = 63 and meta_key = ‘Header Info1’, and then editing the meta_value value. The other, probably easier option, is to call a function update_post_meta(), like this: <?php query_posts(“page_id=63”); while ( have_posts() ) : the_post(); update_post_meta( get_the_ID(), ‘Header Info1’, ‘new value’ … Read more