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
// Use this if working with Genesis | |
//add_action( 'genesis_before', 'my_function_that_does_stuff' ); | |
// Use this if working with BB Theme | |
//add_action( 'fl_body_open', 'my_function_that_does_stuff' ); | |
function my_function_that_does_stuff() { | |
echo 'Hello World!'; |
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
// Use this if working with Genesis | |
//add_action( 'genesis_before', 'my_function_that_does_stuff' ); | |
// Use this if working with BB Theme | |
//add_action( 'fl_body_open', 'my_function_that_does_stuff' ); | |
function my_function_that_does_stuff() { | |
if( is_page() ) { |
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
// Include the front-end.php file only to non-admin pages. | |
if ( ! is_admin() ) | |
include_once( get_stylesheet_directory() . '/custom/front-end.php' ); | |
// Include the front-end.php file only to admin pages. | |
if ( is_admin() ) | |
include_once( get_stylesheet_directory() . '/custom/back-end.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
/* | |
* Sets a custom minimum width for the fixed header functionality to remain in effect. | |
* Paste this into your Custom Functions and then adjust the '920' value to your specific needs. | |
*/ | |
add_filter( 'dynamik_fixed_header_min_width', 'custom_fixed_header_min_width' ); | |
function custom_fixed_header_min_width() { | |
return '920'; | |
} |
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
Custom Hookbox: | |
Name - Custom Toggle Icon | |
Code: | |
<div class="responsive-menu-icon"> | |
<i class="fa fa-bars" aria-hidden="true"></i> | |
<i class="fa fa-times" aria-hidden="true" style="display:none;"></i> | |
</div> |
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
Custom Hookbox: | |
Name - Custom Toggle Icon | |
Setup as "Shortcode" | |
Code: | |
<div class="responsive-menu-icon"> | |
<i class="fa fa-ellipsis-h" aria-hidden="true"></i> |
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 wp_enqueue_script( 'jquery-ui-draggable' ); ?> |