groups

Link to this snippet:


Download to Code Collector

language: PHP
licence: Other

Overwrite Post Titles Easily

options: send to code collectorview all maeghan's snippets
<?php $title = get_post_meta($post->ID, "custom-title", true);
if ($title != "") {
	echo "<h1>".$title."</h1>";
} else { ?>
	<h1><?php the_title(); ?></h1>
<?php } ?>