Hi,
Sorry if this is the code, how do I call alignleft in style.css for /images/default-image.jpg?
add_filter( 'genesis_pre_get_image', 'category_featured_image_fallback' );
function category_featured_image_fallback() {
if ( has_post_thumbnail()) :
the_post_thumbnail( 'thumbnail', array( 'class' => 'alignleft' ) );
elseif ( in_category( 'shares-derivatives' ) ) :
echo '<img src="' . get_stylesheet_directory_uri() . '/images/default-image.jpg' . '" alt="Shares & Derivatives Left" />';
elseif ( in_category( 'two' ) ) :
echo '<img src="' . get_stylesheet_directory_uri() . '/images/category-two.png' . '" alt="Your Alt Text" />';
else:
echo '<img src="' . get_stylesheet_directory_uri() . '/images/default-image.png' . '" alt="No Category" />';
endif;
}