I'm creating my custom post type and all is working well however I just have a simple question concerning how I make it show up.
I've creative my custom post type in my fuctions.php file and made a single-speakers.php file. How do I direct my custom post type speakers page to my "SAFETY SPEAKERS" tab in the main navigation?
This is the actual link to my custom post type page with my speakers on it
fuctions.php
add_action( 'init', 'create_my_post_types' );
function create_my_post_types() {
register_post_type( 'speakers',
array(
'labels' => array(
'name' => __( 'Speakers' ),
'singular_name' => __( 'Speakers' )
),
'public' => true,
)
);
}
single-speakers.php
<?php get_template_part( 'header', '2' ); // Header #2 (header-2.php) ?>
<?php query_posts( 'post_type=speakers'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="speakersBox" class="clearfix"><?php the_title('<h6>', '</h6>'); ?><br/><?php the_content(); ?></div>
<hr>
<?php endwhile; endif; ?>
<?php get_template_part( 'footer', '2' ); // Footer #2 (footer-2.php) ?>
Any help and or advice is appreciated!