How to remove company logo from All jobs dashboard page
-
Here is code in WP job manager code file which is responsible for displaying logo
function get_the_company_logo( $post = null, $size = 'thumbnail' ) { $post = get_post( $post ); if ( has_post_thumbnail( $post->ID ) ) { $src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), $size ); return $src ? $src[0] : ''; } elseif ( ! empty( $post->_company_logo ) ) { // Before 1.24.0, logo URLs were stored in post meta. return apply_filters( 'the_company_logo', $post->_company_logo, $post ); } return ''; }
I want to modify this filter to remove company logo .
Any help?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to remove company logo from All jobs dashboard page’ is closed to new replies.