Is it possible to disable the featured image so it is not displayed in the top of post?
If so what file do I edit?
I would like to only disable this feature for custom post-types atm.
<?php include('layouts/content.post.featured.php'); ?>
<?php include('layouts/content.post.featured.php'); ?>
Mill3n wrote:(games is my custom post type)
register_post_type( 'gavern_speakers',
array(
'labels' => array(
'name' => __( 'Speakers', GKTPLNAME ),
'singular_name' => __( 'Speaker', GKTPLNAME )
),
'taxonomies' => array('category'),
'menu_position' => 5,
'public' => true,
'rewrite' => array('slug' => 'speaker'),
'has_archive' => true,
'supports' => array('title', 'editor', 'thumbnail', 'custom-fields', 'comments')
)
);
if ( 'YOUR_TYPE' == get_post_type() ) {
if ( 'book' == get_post_type() ) {
<?php include('layouts/content.post.featured.php'); ?>
<?php include('layouts/content.post.featured.php'); ?>