Skip to content

Instantly share code, notes, and snippets.

View ferdman's full-sized avatar

ferdman

View GitHub Profile
@ferdman
ferdman / functions.php
Last active December 14, 2021 16:24
WP Job Manager: Add company logo to the job feed
add_action( 'job_feed_item' , 'rss_add_company_logo' , 10 , 2);
function rss_add_company_logo ( $company_logo ) {
$company_logo = get_the_company_logo( $post_id);
if ( $company_logo ) {
echo '<enclosure type="image/jpeg" url="'. esc_html( $company_logo ) . '"/>';
}
}