Skip to content

Instantly share code, notes, and snippets.

View territutich's full-sized avatar

Terri Tutich territutich

View GitHub Profile
<?php
/*
Template Name: Custom Feed
*/
$numposts = 5;
function yoast_rss_date( $timestamp = null ) {
$timestamp = ($timestamp==null) ? time() : $timestamp;
echo date(DATE_RSS, $timestamp);
<?php
/**
* If page uses a specific template, load meta boxes
*
*/
add_action('add_meta_boxes', 'add_standardpg_meta');
function add_standardpg_meta() {
global $post;