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 | |
| /** | |
| * Blog Intro | |
| */ | |
| add_action( 'genesis_before_loop', 'rgc_blog_intro' ); | |
| /** | |
| * Add title and content before blog archive loop. | |
| * | |
| * @author Robin Cornett |
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 | |
| add_action( 'genesis_entry_content', 'kat_grid_content', 9 ); | |
| /** | |
| * Change the number of words in excerpt if in the grid loop and customize READ MORE, add accessibility. | |
| */ | |
| function kat_grid_content() { | |
| // Make sure we're in the grid loop. | |
| if ( ! apply_filters( 'is_genesis_grid_loop', false ) ) { | |
| return; |
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 | |
| $dates = array("Sunday", | |
| "Monday", | |
| "Tuesday", | |
| "Wednesday", | |
| "Thursday", | |
| "Friday", | |
| "Saturday" | |
| ); |
OlderNewer