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
add_action( 'genesis_entry_content', 'os_show_featured_image_single_posts', 9 ); | |
function os_show_featured_image_single_posts() { | |
global $post; | |
if ( ! is_singular( 'post' ) ) { | |
return; | |
} | |
// Get the featured image HTML |
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 | |
if ( ! defined( 'ABSPATH' ) ) die('-1'); | |
/* | |
* WDG-customized version of the Events Calendar Pro mini calendar widget. | |
* Changes are noted inline. | |
* Replacing class name: TribeEventsMiniCalendarWidget | |
*/ | |
class MultisiteTribeEventsMiniCalendarWidget extends WP_Widget { | |
function __construct() { |