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 THIS LINE | |
/** | |
* Custom header image callback. | |
* | |
* Loads image or video depending on what is set. | |
* If a featured image is set it will override the | |
* header image. If a video is set it will be used | |
* on the home page only. | |
* |
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: Custom Template | |
* | |
* @package Business Pro | |
* @link https://seothemes.com/themes/business-pro | |
* @author Seo Themes | |
* @copyright Copyright © 2017 Seo Themes | |
* @license GPL-2.0+ | |
*/ |
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 shown above. Copy the code shown below. | |
//* Change the footer text | |
add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter'); | |
function sp_footer_creds_filter( $creds ) { | |
$creds = '[footer_copyright] · <a href="http://mydomain.com">My Custom Link</a> · Theme by <a href="https://seothemes.com/" title="SEO Themes">SEO Themes</a>'; | |
return $creds; | |
} |
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
<div class="pricing-table"> | |
<div class="one-half first"> | |
<h5>Basic</h5> <small>$</small><b>99</b> | |
<ul> | |
<li>First feature</li> | |
<li>Second feature</li> | |
<li>Third feature</li> | |
</ul> | |
</div> | |
<div class="one-half"> |
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
<div class="one-third first"> | |
<p><a href="#"><i class="icon-map-pin"></i> 123 Fourth Street, Los Angeles CA</a></p> | |
<p><a href="#"><i class="icon-phone"></i> 1300 123 456</a></p> | |
<p><a href="#"><i class="icon-envelope"></i> [email protected]</a></p> | |
<p>Next steps proximity strategic partners traction. In the queue pivot next steps value-add next level. Pipeline organic hackathon.</p> | |
<p> | |
<a href="#"><i class="icon-facebook"></i></a> | |
<a href="#"><i class="icon-twitter"></i></a> | |
<a href="#"></a><a href="#"><i class="icon-dribbble"></i></a> | |
</p> |
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 this line. | |
add_filter( 'genesis_widget_column_classes', 'custom_widget_column_classes' ); | |
/** | |
* Custom column widths. | |
* | |
* Adds additional column classes to Genesis Widget Column Classes plugin | |
* including fifths and full-width classes. | |
* | |
* @return array |
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 | |
// Add color scheme support for demo. | |
add_theme_support( 'genesis-style-selector', array( | |
'dark' => 'Dark', | |
'light' => 'Light', | |
) ); | |
add_action( 'customize_register', 'genesis_demo_customizer_settings', 20 ); | |
/** |
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 | |
/** | |
* Get an attachment ID given a URL. | |
* | |
* @param string $url URL to check. | |
* | |
* @return int Attachment ID on success, 0 on failure. | |
*/ | |
function get_attachment_id( $url ) { |
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
<p> | |
Choose the perfect plan for your business. | |
</p> | |
<div class="pricing-table"> | |
<div class="one-third first"> | |
<h4>Free</h4> | |
<strong>$0</strong> | |
<em>per month</em> | |
<ul> |