View page-title-widget.php
This file contains 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
/** | |
* 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' ); |
View page-title-widget-home.php
This file contains 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
//* Removes Page Title widget area from the homepage | |
remove_action( 'genesis_after_header', 'cegg_pagetitle' ); |
View page-title-widget.css
This file contains 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
/* Page Title | |
--------------------------------------------- */ | |
.pagetitle { | |
background-color: #222; | |
border-top: 5px solid #eaeaea; | |
margin: 0; | |
margin: 0; | |
padding: 40px; | |
padding: 2rem; |
View entry-background.php
This file contains 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 | |
//* Do NOT include the opening php tag | |
//* Enqueue scripts and styles | |
add_action( 'wp_enqueue_scripts', 'cegg_load_scripts_styles' ); | |
function cegg_load_scripts_styles() { | |
if ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ) { | |
wp_enqueue_script( 'cegg-backstretch', get_bloginfo( 'stylesheet_directory' ) . '/js/backstretch.js', array( 'jquery' ), '1.0.0', true ); |
View entry-background.css
This file contains 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
/* Add style for the new page or post background image | |
---------------------------------------------------------- */ | |
.entry-background { | |
display: block; | |
height: 560px; | |
width: 100%; | |
z-index: -99 !important; | |
} |
View page_sales.php
This file contains 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: Sales | |
----------------------------------*/ | |
//* Enqueue scripts and styles | |
add_action( 'wp_enqueue_scripts', 'cegg_image_load_scripts_styles' ); | |
function cegg_image_load_scripts_styles() { | |
if ( has_post_thumbnail() ) { |
View fullwidth-image.php
This file contains 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 | |
//* 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 ); |
View overlay-widgetarea.php
This file contains 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 | |
//* 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' ), | |
) ); |
View hook-overlay-widget.php
This file contains 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 | |
//* 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">'; |
View cegg-sales.css
This file contains 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
/* | |
Sales Page Template | |
-------------------------------------- */ | |
.cegg-sales { | |
background: #f7f7f7; | |
} | |
.cegg-sales .head-wrap { | |
margin: 0; |
OlderNewer