フッターが音楽ページの投稿にリンクしていますが、なぜ混同されているのかわかりません。他のページと同じように分けていただきたいです。参考までに、私はワードプレスのプラグインであるカスタム フィールドを使用して、音楽ページに投稿を作成しています。http://listentotheway.com/music/
music.php :
<?php
/*
Template Name: Music Page
*/
get_header(); ?>
<div class="wrapper">
<div id="music-content">
<p> This is music.php </p>
<?php
$args = array(
'post_type' => 'music'
);
$the_query = new WP_Query( $args );
?>
<?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"<?php the_title(); ?></h3>
<?php the_field('description'); ?> <-----This has to do with the plugin.
<?php endwhile; else: ?>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>
style.css :
/* music page */
#music-content {
display: block;
float: left;
}
/* Footer */
footer {
background-color: #eaeaea;
display: block;
clear: both;
border-top: 1px black solid;
}