Skip to content

Instantly share code, notes, and snippets.

/* Add style for the new page or post background image
---------------------------------------------------------- */
.entry-background {
display: block;
height: 560px;
width: 100%;
z-index: -99 !important;
}
<?php
//* Do NOT include the opening php tag
//* Enqueue scripts and styles
add_action( 'wp_enqueue_scripts', 'cegg_image_load_scripts_styles' );
function cegg_image_load_scripts_styles() {
if ( has_post_thumbnail() ) {
wp_enqueue_script( 'cegg-backstretch', get_bloginfo( 'stylesheet_directory' ) . '/js/backstretch.js', array( 'jquery' ), '1.0.0', true );
wp_enqueue_script( 'cegg-backstretch-set', get_bloginfo( 'stylesheet_directory' ) . '/js/backstretch-set.js' , array( 'jquery', 'cegg-backstretch' ), '1.0.0', true );
<?php
//* Do NOT include the opening php tag
//* Register widget areas
genesis_register_sidebar( array(
'id' => 'sales-cta-overlay',
'name' => __( 'Sales Page CTA', 'cegg' ),
'description' => __( 'Widgets placed here will appear on top of sales page background image.', 'cegg' ),
) );
<?php
//* Do NOT include the opening php tag
//* Add overlay widget to sales page background image
add_action( 'genesis_after_header', 'sales_image_overlay', 5 );
function sales_image_overlay() {
if ( has_post_thumbnail() ) {
echo '<div class="sales-cta"><div class="wrap">';
/*
Sales Page Template
-------------------------------------- */
.cegg-sales {
background: #f7f7f7;
}
.cegg-sales .head-wrap {
margin: 0;
<?php
//* Do NOT include the opening php tag
/* Display widget content for "welcome" section.
------------------------------------------------- */
function minimum_home_loop_helper_top() {
genesis_widget_area( 'welcome', array(
<?php
//* Do NOT include the opening php tag
//* Add Home Widget areas
add_action( 'genesis_after_header', 'minimum_home_loop_helper_top', 15 );
add_action( 'genesis_after_header', 'minimum_home_featured', 15 );
add_action( 'genesis_after_header', 'minimum_home_loop_helper_bottom', 15 );
<?php
//* Do NOT include the opening php tag
genesis_register_sidebar( array(
'id' => 'welcome',
'name' => __( 'Welcome', 'minimum' ),
'description' => __( 'This is the Welcome section of the homepage.', 'minimum' ),
) );
genesis_register_sidebar( array(
'id' => 'home-bottom-message',
/* Welcome
--------------------------------------------- */
.welcome {
background: #fff;
clear: both;
}
.welcome .wrap {
color: #333;
@chrisegg
chrisegg / page-title-widget.php
Last active January 1, 2016 08:19
Adds a widget area below header in Genesis child theme (Step 1 of 3)Usage: Place the following code in your themes functions.php file.
/**
* Add Page Title Widget Area Below Header.
*
* author ChrisEgg
* http://chriseggleston.com
* license GPL-2.0+
*/
//* Add the Page Title section
add_action( 'genesis_after_header', 'cegg_pagetitle' );