Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created June 28, 2017 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/5d0344571785c2c2e5aa961cee902862 to your computer and use it in GitHub Desktop.
Save braddalton/5d0344571785c2c2e5aa961cee902862 to your computer and use it in GitHub Desktop.
Atmosphere Pro : Add image URL via large_title Custom Field For Front Page 3 Featured Page Widget - Modify Line 188 functions.php
function atmosphere_title( $title ) {
if ( genesis_get_custom_field( 'large_title' ) ) {
$title = '<span class="atmosphere-large-text"><img src="' . genesis_get_custom_field( 'large_title' ) . '"></span><span class="intro">' . $title . '</span>';
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment