Skip to content

Instantly share code, notes, and snippets.

@JanHoek
JanHoek / jangist005.php
Created May 30, 2014 17:41
Show manual excerpt after the header on any Page or Post in Genesis
<?php // remove this line
//* Activate Manual excerpt on Pages
add_post_type_support('page', 'excerpt');
//* Show Manual excerpt After Header
function jan_show_manual_excerpt() {
$post = get_post( get_the_ID() );
@JanHoek
JanHoek / featurebg.css
Created May 18, 2014 15:53
CSS for a Widget Area with Featured image as background
.features {
background: url(images/default-featurebg.jpg) no-repeat center top;
clear: both;
min-height: 450px;
padding: 2%;
}
features-widgetarea {
padding: 2%;
float: right;
@JanHoek
JanHoek / functions.php
Created May 18, 2014 15:44
Create a Widget Area with Featured image as background for Genesis
<?php // remove this line
// Register OnTop Widget
genesis_register_sidebar( array(
'id' => 'ontop',
'name' => __( 'OnTop', 'jan' ),
'description' => __( 'This the Ontop widget', 'jan' ),
) );