Custom Post Type Icon not working
-
Hi there,
I inject a custom post type using php:
$args = array( 'labels' => $labels, 'supports' => $supports, 'public' => true, 'capability_type' => 'post', 'rewrite' => array( 'slug' => 'bier', ), // Permalinks format 'menu_position' => 30, 'menu_icon' => 'fa-beer', );
But it doesn’t display because it seems to translate to:
<img src=”https://fa-beer” alt=””>
Is this a known issue?
Thank you !
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom Post Type Icon not working’ is closed to new replies.