Forum Replies Created
-
AuthorPosts
-
beckysdesignMember
I went ahead and took a chance and removed it and it worked!!!!! Thanks so much again for the help!
/** Add custom field above post title */
add_action( 'genesis_before_post_title', 'luscious_post_image', 8 );
function luscious_post_image() {if ( is_page() )
return;if ( $image = genesis_get_image( 'format=url&size=post-photo' ) ) {
printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
}}
beckysdesignMemberthis is the only thing I see in the function file to do with images.....
/** Add custom field above post title */
add_action( 'genesis_before_post_title', 'luscious_post_image', 8 );
function luscious_post_image() {if ( is_page() )
return;if ( $image = genesis_get_image( 'format=url&size=post-photo' ) ) {
printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
}I did not remove it because I did not want to mess anything up until I know if this is what I should remove .. Should I remove this?
Thanks for all the help!!
beckysdesignMemberThanks so much for pointing me in the right direction!!!!
I have another question if someone can help.... In the instructions it says
Featured Images:
The Luscious theme adds a large horizontal image above the post title by default. This image is pulled from the first image that is uploaded and attached to the post. The image does not need to be assigned as a featured image.If there is an image inserted within the body of the post, it may also be displayed as the featured image.
How can I stop the image from displaying above the title by default? I just want it to show in the post.
Thanks!!!!
-
AuthorPosts