You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to suggest you add custom post type support. This way products, videos etc can be covered.
I've added my "video" type for now > class-nostrtium.php
if (($pagenow == 'post.php') && (get_post_type() == 'post') || (get_post_type() == 'video')) {
and the metabox render > class-nostrtium-metabox.php
$screens = ['post', 'video'];
The text was updated successfully, but these errors were encountered:
I'd like to suggest you add custom post type support. This way products, videos etc can be covered.
I've added my "video" type for now > class-nostrtium.php
if (($pagenow == 'post.php') && (get_post_type() == 'post') || (get_post_type() == 'video')) {
and the metabox render > class-nostrtium-metabox.php
$screens = ['post', 'video'];
The text was updated successfully, but these errors were encountered: