How to change your Post/Page title with a custom field?
With this tip you can change and make post/page title customizable. That’s is so simple. Just copy this code and paste your single.php and page.php or where you want to change title. After that you have to create a new custom field which name is “custom-title“! After that you can write your custom title in this field.
Here is the code;
<?php $title = get_post_meta($post->ID, "custom-title", true);
if ($title != "") {
echo "<h1>".$title."</h1>";
} else { ?>
<h1><?php the_title(); ?></h1>
<?php } ?>
That’s All! Have a nice day.

Recent Comments