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 beaver-page body class | |
add_filter( 'body_class', 'beaver_body_class' ); | |
function beaver_body_class( $classes ) { | |
$classes[] = 'beaver-page'; | |
return $classes; | |
} |
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 | |
/** | |
* The Template for displaying all Sensei single lessons. | |
* | |
* Override this template by copying it to yourtheme/sensei/single-lesson.php | |
* | |
* @author KLM | |
* @package Sensei/Templates for Genesis and Dynamik-Gen based on Genesis Connect for WooC | |
* @version 1.0.1 | |
*/ |
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 Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |