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
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> | |
<ins class="adsbygoogle" | |
style="display:block; text-align:center;" | |
data-ad-format="fluid" | |
data-ad-layout="in-article" | |
data-ad-client="ca-pub-0123456789101112" | |
data-ad-slot="9876543210"></ins> | |
<script> | |
(adsbygoogle = window.adsbygoogle || []).push({}); | |
</script> |
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
//* Create a field for link | |
<p> | |
<label for="<?php echo esc_attr( $this->get_field_id( 'view_all_link' ) ); ?>"> | |
<?php _e( 'View All Links:', 'featured-custom-post-type-widget-for-genesis' ); ?> | |
</label> | |
<input type="text" id="<?php echo esc_attr( $this->get_field_id( 'view_all_link' ) ); ?>" | |
name="<?php echo esc_attr( $this->get_field_name( 'view_all_link' ) ); ?>" | |
value="<?php echo esc_url( $instance['view_all_link'] ); ?>" | |
class="widefat view-all-posts" /> | |
</p> |
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
//* Create a field for subtitle | |
<p> | |
<label for="<?php echo esc_attr( $this->get_field_id( 'subtitle' ) ); ?>"> | |
<?php _e( 'Subtitle:', 'featured-custom-post-type-widget-for-genesis' ); ?> | |
</label> | |
<input type="text" id="<?php echo esc_attr( $this->get_field_id( 'subtitle' ) ); ?>" | |
name="<?php echo esc_attr( $this->get_field_name( 'subtitle' ) ); ?>" | |
value="<?php echo esc_attr( $instance['subtitle'] ); ?>" | |
class="widefat" /> | |
</p> |
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
.epaper-blocker, .epaperBlockerWrap {display:none;} |
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
// Remove Comment Time & Link Inside the Date Field in Genesis (h/t: http://www.jowaltham.com/customising-comment-date-genesis/) | |
add_filter( 'genesis_show_comment_date', 'topleague_remove_comment_time_and_link' ); | |
function topleague_remove_comment_time_and_link( $comment_date ) { | |
printf( '<p %s>', genesis_attr( 'comment-meta' ) ); | |
printf( '<time %s>', genesis_attr( 'comment-time' ) ); | |
echo esc_html( get_comment_date() ); | |
echo '</time></p>'; | |
// Return false so that the parent function doesn't also output the comment date and time |
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 | |
/** | |
* Genesis Framework. | |
* | |
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. | |
* Please do all modifications in the form of a child theme. | |
* | |
* @package Genesis\Templates | |
* @author StudioPress | |
* @license GPL-2.0+ |
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
.feather { | |
width: 60px; | |
height: 60px; | |
fill: transparent; | |
stroke: #333333; | |
stroke-width: .65px; | |
} |
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
<i data-feather="circle"></i> |
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
<script src="https://unpkg.com/feather-icons"></script> | |
<script> | |
feather.replace() | |
</script> |
NewerOlder