English 中文(简体)
is_page () 使用模板文件显示不同的 wordpress 日志内容
原标题:is_page() to display different wordpress post content using a template file

我正在尝试使用 *is_ page () * 显示一个模板文件中显示两个不同的内容。 我对这个的代码看起来像 。

<?php

    if ( is_page( news ) ) {

        // Insert HTML/PHP 新闻 - code shown below
    }
    else ( is_page( review ) ){

         // Insert HTML/PHP 供审查 - code shown below
    }
?>

这对我没用... 不知道为什么?我已经展示了 我试图插入的新闻/评论代码

HTML/PHP 新闻

<div class="news">
  <?php query_posts( cat=-89 );?>
  <?php while ( have_posts() ) : the_post(); ?>
  <article class="summary">
    <div class="content_wrap cont_page ">
      <header>
        <h2> <a href="<?php echo get_permalink(); ?>"><?php echo get_the_title(); ?> </a></h2>
        <p> <span class="author">
          <?php the_author() ?>
          </span><br />
          <span class="date">
          <?php the_date(); ?>
          </span> 
      </header>
      <div class="entry-content">
        <?php the_excerpt(); ?>
               <?php include( share.php )?> 
      </div>
      <aside class="right">
        <?php the_post_thumbnail(); ?>
      </aside>
    </div>
  </article>
  <?php
  <?php endwhile; ?>
</div>

HTML/PHP 供审查

<div class="review">
  <?php query_posts( cat=89,246,247,248 );?>
  <?php while ( have_posts() ) : the_post(); ?>
  <article class="summary 
  <?php

  // Custom posts stylings
if ( has_post_format(  video  )) {
    echo  video ;
} elseif ( in_category( orange ) ) {
    echo  orange ;
} else {
    echo  white ;}
?>


  ">
    <div class="content_wrap cont_page ">
      <div class="entry-content">
        <?php  if ( has_post_format(  video  )) {
    // Get the video URL and put it in the $video variable
                        $videoID = get_post_meta($post->ID,  video_url , true);
                        // Echo the embed code via oEmbed
                        echo  <iframe src="http://player.vimeo.com/video/ .$videoID. ?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff" width="405" height="285" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> ; 
                    //  echo  <iframe src="http://player.vimeo.com/video/ .$videoID. " width="405" height="285" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> ;
            }
                else the_post_thumbnail();

 ?>
      </div>
      <aside class="right">
        <header>
          <h2> <a href="<?php echo get_permalink(); ?>"><?php echo get_the_title(); ?> </a></h2>
        </header>
        <div class="entry-content">
          <?php the_excerpt(); ?>
        </div>
        <?php include( share.php )?>
      </aside>
    </div>
  </article>
  <?php

// DISABLED/S default format

// get_template_part(  content , get_post_format() ); ?>
  <?php endwhile; ?>
</div>
问题回答

使用页面 ID 作为您 is_ page () 的参数, 以便更准确。 您可以在某个点编辑页名, 然后代码就会失效 。

if(is_page(10)) { 
    // do something
  } else if (is_page(20)) {
    // do something
  } else { 
    // do something else
}

我敢肯定这是打字,但下面的线线应该是 < 坚固 >, 如果 < / 坚固 > :

else ( is_page( review ) ){

另外,在两个模板中,您都有额外的开放的php 支架。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签