Critical error when using custom post type image
-
Hi, I’ve edited the code to match my custom post type – listings, but I get critical php error every time I try to save the code.
add_filter( ‘dfi_thumbnail_id’, ‘dfi_posttype_listings’, 10, 2 );
function dfi_posttype_listings( $dfi_id, $post_id ) {
$post = get_post( $post_id );
if ( ‘listings’ === $post->post_type ) {
return 8924;
}return $dfi_id;
}
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.