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
/* Credits: | |
This bit of code: Exis | exisweb.net/responsive-tables-in-wordpress | |
Original idea: Dudley Storey | codepen.io/dudleystorey/pen/Geprd */ | |
var headertext = []; | |
var headers = document.querySelectorAll("table:not(.is-style-stripes) thead"); | |
var tablebody = document.querySelectorAll("table:not(.is-style-stripes) tbody"); | |
for (var i = 0; i < headers.length; i++) { | |
headertext[i]=[]; |
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
<?php | |
// Paste the code BELOW this line into your child theme functions. | |
/** | |
* Edit the author box title with Genesis | |
* | |
* @author Reasons to Use Genesis | |
* @link http://reasonstousegenesis.com/author-box-title/ | |
*/ | |
add_filter( 'genesis_author_box_title', 'rtug_author_box_title' ); |