wp-job-manager-display-user-logos
In den Dateien wurde die Funktion display_company_logo(); an gewünschter stelle hinzugefügt.
Dieser Code muss zur functions.php hinzugefügt werden:
[php]
//company_logo class ersetzt photo class bei avatar
add_filter(‚get_avatar‘,’change_avatar_css‘, 21, 5);
function change_avatar_css( $class ) {
$class = str_replace(‚ photo‘, ‚ company_logo‘, $class) ;
return $class;
}
// add Logo of current user
function display_company_logo() {
global $post;
$exhibitor_user_id = get_post_field( ‚post_author‘, $post_id );
$exhibitor_name = get_user_meta( $exhibitor_user_id, ‚aus_unternehmen‘, true );
echo get_avatar( $exhibitor_user_id, 200, null, $exhibitor_name );
}
[/php]