Can not get fallback image url
-
When I customized template in category.php if there is no featured image for a post,use the fall back image defined for the post category.I don’t know how to get featured image category url.Here is my code.Please help me!
$category = get_category( get_query_var( ‘cat’ ) );
$cat_id = $category->cat_ID;
$image_id = get_term_meta ( $cat_id, ‘category-image-id’, true );
echo wp_get_attachment_image ( $image_id, ‘large’ );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Can not get fallback image url’ is closed to new replies.