This file contains hidden or 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
<ul class="small-block-grid-1 medium-block-grid-2 large-block-grid-4"> | |
<li><!-- Your content goes here --></li> | |
<li><!-- Your content goes here --></li> | |
<li><!-- Your content goes here --></li> | |
<li><!-- Your content goes here --></li> | |
</ul |
This file contains hidden or 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
/* Misc */ | |
.orbit-timer { /* Hides the orbit timer */ | |
left: -10000px; | |
top: auto; | |
height: 1px; | |
overflow: hidden; | |
position: absolute; | |
width: 1px; | |
} |
This file contains hidden or 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
body, | |
button, | |
.button, | |
.top-bar-section ul li > a, | |
.pricing-table .title, | |
.pricing-table .price, | |
.tabs .tab-title > a, | |
.side-nav, | |
.side-nav li.active > a:first-child:not(.button), | |
.accordion .accordion-navigation > a, .accordion dd > a, |
This file contains hidden or 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
get_stylesheet_directory_uri() |
This file contains hidden or 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
if ( ! function_exists( 'function_name_goes_here' ) ) { | |
/* function goes here */ | |
} |
This file contains hidden or 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
function your_function_name() { | |
remove_action( 'action name goes here' ); | |
} | |
add_action( 'after_setup_theme', 'your_function_name', 9 ); |
This file contains hidden or 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
if ( ! function_exists( 'wpforge_head_clean' ) ) : | |
function wpforge_head_clean() { | |
// Remove the links to the extra feeds such as category feeds | |
remove_action( 'wp_head', 'feed_links_extra', 3 ); | |
// Remove the links to the general feeds: Post and Comment Feed | |
remove_action( 'wp_head', 'feed_links', 2 ); | |
// Remove the link to the Really Simple Discovery service endpoint, EditURI link | |
remove_action( 'wp_head', 'rsd_link' ); | |
// Remove the link to the Windows Live Writer manifest file. | |
remove_action( 'wp_head', 'wlwmanifest_link' ); |
This file contains hidden or 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
animation: 'slide', // Sets the type of animation used for transitioning between slides, can also be 'fade' | |
timer_speed: 10000, // Sets the amount of time in milliseconds before transitioning a slide | |
pause_on_hover: true, // Pauses on the current slide while hovering | |
resume_on_mouseout: false, // If pause on hover is set to true, this setting resumes playback after mousing out of slide | |
next_on_click: true, // Advance to next slide on click | |
animation_speed: 500, // Sets the amount of time in milliseconds the transition between slides will last | |
stack_on_small: false, | |
navigation_arrows: true, | |
slide_number: true, | |
slide_number_text: 'of', |