Skip to content

Instantly share code, notes, and snippets.

View digitalredeye's full-sized avatar

Rick R. Duncan digitalredeye

View GitHub Profile
@digitalredeye
digitalredeye / genesis-blog-template.php
Created March 7, 2015 15:34
Blog template for Genesis Framework. This template displays content above the posts and only when on the first page.
<?php
//* Template Name: Blog
//* Only show page content above posts when on first page.
if ( !is_paged() ) {
add_action( 'genesis_loop', 'genesis_standard_loop', 5 );
}
genesis();
@digitalredeye
digitalredeye / html-title-tag
Last active August 29, 2015 14:15
HTML Title Tag
<head>
<title>Example Title | Company Name</title>
</head>