ページテンプレートにページコンテンツを表示するにはどうすればよいですか?
-
-
何が問題ですか?これはページテンプレートであるため、ページコンテンツにアクセスできます.たとえば、別の個別のクエリを使用して、特定の投稿にアクセスし、そのコンテンツを出力できます.そう?What is the problem? This is a page template, so you have access to the page content. By means of another separate query you gain access to a specific post, for instance, and thus can output its content. So?
- 2
- 2013-03-11
- tfrommen
-
投票する前に、しばらくお待ちください.私はそれのために苦労しています、そしてそれから私は解決策を見つけました.私はここで他の人と論理を共有するためにQ&Aを試みました-それは私が探している方法で事実を明らかにするだろうと思います.Q&Aがあなたに明確であることを願っています.Please be patient before voting down. I's struggling for it and then I found the solution. I tried to Q&A here to share the logic with others - I think it will clarify the fact in a way I's looking for it. Hope the Q & A is clear to you.
- 0
- 2013-03-11
- Mayeenul Islam
-
まず、私はあなたの質問に反対票を投じませんでした.第二に、あなたの知識を私たちと共有してくれてありがとう.あなたはそうすることは絶対に正しいです.問題は、経験豊富なWPユーザー/開発者にとってこの_質問_を解決するのがそれほど難しくなかったことと、質問を単独で投稿したことです.最初から質問と回答をしたい場合は、質問を書いたのと同じページに回答/解決策を直接含めてください.[質問を投稿]ボタンの下に、**自分の質問に回答する**チェックボックスがあります.再度、感謝します.Firstly, I did **not** downvote your question. Secondly, thanks for sharing your knowledge with us. You're absolutely right to do so. I guess, the problem is/was that this _question_ was not that hard to solve for experienced WP users/developers, as well as the fact that you posted the question alone. If you want to question & answer right from the start, just include your answer/solution directly on the same page that you write your question on. Below the _Post Your Question_ button there is a check box **Answer your own question**. Thanks again.
- 0
- 2013-03-11
- tfrommen
-
救助のための `wp_reset_postdata()`.各カスタムクエリの後に実行する必要があります.`wp_reset_postdata()` for the rescue. Should be done _after each custom query_.
- 0
- 2013-03-11
- kaiser
-
2 回答
- 投票
-
- 2013-03-11
2つのループを使用しています.最初のループはページのコンテンツを表示することであり、2番目のループはクエリされた投稿のコンテンツを表示することです.必要に応じてコードにコメントしました. Deckster0 が
WordPressサポートでは、 the_content()
はWordPressループ内でのみ機能します.これらのコードを自分のテンプレートに配置しています:<?php /* * Template Name: My Template */ get_header(); ?> <div id="container"> <div id="content" class="pageContent"> <h1 class="entry-title"><?php the_title(); ?></h1> <!-- Page Title --> <?php // TO SHOW THE PAGE CONTENTS while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop --> <div class="entry-content-page"> <?php the_content(); ?> <!-- Page Content --> </div><!-- .entry-content-page --> <?php endwhile; //resetting the page loop wp_reset_query(); //resetting the page query ?> <?php // TO SHOW THE POST CONTENTS ?> <?php $my_query = new WP_Query( 'cat=1' ); // I used a category id 1 as an example ?> <?php if ( $my_query->have_posts() ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <h1 class="entry-title"><?php the_title(); ?></h1> <!-- Queried Post Title --> <div class="entry-content"> <?php the_excerpt(); ?> <!-- Queried Post Excerpts --> </div><!-- .entry-content --> <?php endwhile; //resetting the post loop ?> </div><!-- #post-<?php the_ID(); ?> --> <?php wp_reset_postdata(); //resetting the post query endif; ?> </div><!-- #content --> </div><!-- #container -->
I'm using two loops. First loop is to show the page content, and the second loop is to show the queried post contents. I commented into the codes where necessary. I emphasized into the loops, as Deckster0 said in WordPress support that,
the_content()
works only inside a WordPress Loop. I'm placing these code into a my own template:<?php /* * Template Name: My Template */ get_header(); ?> <div id="container"> <div id="content" class="pageContent"> <h1 class="entry-title"><?php the_title(); ?></h1> <!-- Page Title --> <?php // TO SHOW THE PAGE CONTENTS while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop --> <div class="entry-content-page"> <?php the_content(); ?> <!-- Page Content --> </div><!-- .entry-content-page --> <?php endwhile; //resetting the page loop wp_reset_query(); //resetting the page query ?> <?php // TO SHOW THE POST CONTENTS ?> <?php $my_query = new WP_Query( 'cat=1' ); // I used a category id 1 as an example ?> <?php if ( $my_query->have_posts() ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <h1 class="entry-title"><?php the_title(); ?></h1> <!-- Queried Post Title --> <div class="entry-content"> <?php the_excerpt(); ?> <!-- Queried Post Excerpts --> </div><!-- .entry-content --> <?php endwhile; //resetting the post loop ?> </div><!-- #post-<?php the_ID(); ?> --> <?php wp_reset_postdata(); //resetting the post query endif; ?> </div><!-- #content --> </div><!-- #container -->
-
そのステートメントは常に真であるため、その2番目のクエリは `if(have_posts())`内にあるべきではありません.クエリに結果があることを確認する場合は、 `$my_query=new WP_Query( 'cat=1');`とargs行の後に `if($my_query-> have_posts())`を呼び出す必要があります.That second query shouldn't be inside `if( have_posts() )` because that statement will always be true. You should call `if( $my_query->have_posts() )` after the `$my_query = new WP_Query( 'cat=1' );` and args lines if you want to check that query has results.
- 0
- 2013-04-12
- t31os
-
@t31osあなたは正しいです.それは私のせいです.コードをそのように修正しました.識別していただきありがとうございます.:)@t31os you are right. It's my fault. Now corrected the code to such. Thanks for the identification. :)
- 0
- 2014-05-28
- Mayeenul Islam
-
- 2013-03-11
これを行うには2つのループが一般的ですが、少し過剰摂取です.
すべての投稿またはページには、超変数
$post
が含まれています.get_post_meta()
が単純な$post->ID
;)で機能する理由を疑問に思ったことはありませんか?したがって、リストされた投稿を取得するWP_Query()を開始する前に、現在のページにアクセスできます-/post-data with
$post->ID
、$post->post_content
、$post->guid
など.ループでは、この変数はループされたポストによって埋められます.後で使用するために保存するには、新しい変数を作成することができます
$temp_post = $post // new WP_Query() + loop here
または電話
wp_reset_query()
リストの後.とにかく最後の関数を呼び出して、サイドバーのデータが現在のページ/投稿に適していることを確認する必要があります.
Two loops is common to do this, but a bit overdosed.
Every post or page gives you the super-variable
$post
. Ever wondered why yourget_post_meta()
works with a simple$post->ID
;) ?So, before you start the WP_Query() that gets your listed posts, you can access the current page-/post-data with
$post->ID
,$post->post_content
,$post->guid
and so on.In the loop, this variable gets filled by the looped post. To save it for later, you can either make a new variable
$temp_post = $post // new WP_Query() + loop here
or call
wp_reset_query()
after the listing. The last function should be called anyway to ensure that the data in your sidebar is the right for the current page/post.
WordPressサイトで、[
WP_Query()
を使用して]カスタムクエリを含むカスタムページテンプレートを作成しました.そのクエリで、特定のカテゴリの投稿を完全に取得できます.ただし、クエリされた投稿と一緒にページのコンテンツを表示したいと思います.次のようになります:
---------------------------
ページ見出し
ページの内容
クエリされた投稿の見出し
クエリされた投稿の内容
---------------------------