Custom Post Type UIの一覧表示について
-
WordPress 3.5.1でCustom Post Type UIを使用しております。
カスタム投稿newsの一覧ページ(タイトルだけではなく、投稿内容含む)を作成したいのですが、
上手くいきませんのでご教授をお願いいたします。使用プラグイン Custom Post Type UI
投稿タイプ名 news
ラベル お知らせ
Advanced OptionsのHas Archiveをtrue上記設定を行い、archive-news.phpを作成しました。
archive-news.php
<?php get_header(); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post section"> <div class="information"> <h3><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></h3> <p class="post-meta"> <span class="date"> <?php the_time('Y年m月d日'); ?> </span> </p> <div class="entry"> <?php the_content() ?> </div> </div> </div> <?php endwhile; ?> <?php endif; ?> <?php get_footer(); ?>
ですが、http://example.com/newsにアクセスしても、タイトルや本文等が表示されません。
ヘッターやフッターは表示されるのですが、ループ自体に入れていないように思います。
何か間違いなどありましたらご指摘をお願いいたします。参考にさせて頂きました:http://ja.forums.wordpress.org/topic/9191?replies=3
1件の返信を表示中 - 1 - 1件目 (全1件中)
1件の返信を表示中 - 1 - 1件目 (全1件中)
- トピック「Custom Post Type UIの一覧表示について」には新たに返信することはできません。