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
| /** | |
| * Remove Image Alignment from Featured Image | |
| * | |
| */ | |
| function be_remove_image_alignment( $attributes ) { | |
| $attributes['class'] = str_replace( 'alignleft', 'aligncenter', $attributes['class'] ); | |
| return $attributes; | |
| } | |
| add_filter( 'genesis_attr_entry-image', 'be_remove_image_alignment' ); |
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
| /** Customize the credits */ | |
| add_filter('genesis_footer_creds_text', 'footer_creds_filter'); | |
| function footer_creds_filter( $creds ) { | |
| $creds = 'Copyright [footer_copyright] · <a href="http://prettydarncute.com"> Modern Blogger Pro Theme</a> By, <a href="http://prettydarncute.com">Pretty Darn Cute Design</a>'; | |
| return $creds; | |
| } |
NewerOlder