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 | |
| /* | |
| Template Name: Custom Feed | |
| */ | |
| $numposts = 5; | |
| function yoast_rss_date( $timestamp = null ) { | |
| $timestamp = ($timestamp==null) ? time() : $timestamp; | |
| echo date(DATE_RSS, $timestamp); |
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 page uses a specific template, load meta boxes | |
| * | |
| */ | |
| add_action('add_meta_boxes', 'add_standardpg_meta'); | |
| function add_standardpg_meta() { | |
| global $post; |
OlderNewer