This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( is_page('my-page-slug') ) { | |
echo '<img src="'.get_bloginfo('template_url').'/path/to/img.png">'; | |
} else { | |
get_the_title(); //Or similar code from the template | |
} | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter('wp_title', 'archive_titles'); | |
/** | |
* Modify <title> if on an archive page. | |
* | |
* @author Philip Downer <[email protected]> | |
* @link http://manifestbozeman.com | |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | |
* @version v1.0 | |
* |
NewerOlder