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]
Related Articles
- Fix Elementor fixed Background sizing
- Cronjob Überlappung verhindern – flock()
- WordPress Update Hinweise deaktivieren
- WP Download Manager "attached file is missing/deleted" Fehler
- WordPress Staging: Uploads Ordner von Production Seite einlesen (per htaccess)
- WC Attribute Komma durch Linebreak ersetzen
- Profile Builder Pro add multiple user roles on register form
- Profile Builder Pro User Listing Filter by multiple meta key values
- Resize anstatt Crop von Avatar Bildern in Profile Builder Pro
- Current User link shortcode Profile Builder Pro