0

最新の Wordpress ビルド (3.5.1) をインストールしたところ、いつものようにループを追加すると、通常の構造が返されません。

これは私のphpです:

<?php get_header(); ?>
    <?php
        $pageid = get_query_var('page_id');
        $postid = $post->ID;
    ?>

<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
  <div class="wppost" id="post-<?php the_ID(); ?>">
    <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><h1><?php the_title(); ?></h1></a>

      <div class="wpentry"><?php the_content(); ?></div>
      </div>
      <?php endwhile; ?>
        <div class="wpnavigation">
          <?php posts_nav_link('','F&ouml;reg&aring;ende sida','N&auml;sta sida'); ?>
        </div>
    <?php else : ?>
      <div class="wppost" id="post-<?php the_ID(); ?>">
        <h1><?php _e('Inl&auml;gget hittades inte'); ?></h1>
      </div>
  <?php endif; ?>

そして、それは通常うまくいきます。しかし、今は < p > 要素にあるものだけを返すだけです。

wppost、the_title、wpentry、または投稿自体に書いたもの以外は返されません (これまでのところテキストのみ)。

これは何か新しいことですか、それとも私が間違っているのですか? 私はまさにこれを数年間行ってきましたが、これまでのところうまくいきました。私は困惑しています。

これは header.php からのものです。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">

<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>

<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> 
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>


</head>
<body>

    <div id="container">
        <div id="maincontainer">


            <div id="header">
                <a href="#" title="Descending Chaos"><img alt="Descending Chaos" src="<?php bloginfo('template_directory'); ?>/images/liveheader.png" /></a>
            </div>

            <div id="top">
                <div id="menu">
                    <ul>
                        <?php wp_list_pages('title_li=','sort_column=menu_order'); ?>
                    </ul>
                </div>
                <div id="social">
                    <ul>
                        <li><a href="#" title=""><img alt="Descending Chaos on Spotify" src="<?php bloginfo('template_directory'); ?>/images/spotlogo.png" /></a></li>
                        <li><a href="#" title=""><img alt="Descending Chaos on Reverbnation" src="<?php bloginfo('template_directory'); ?>/images/reverblogo.png" /></a></li>
                        <li><a href="#" title=""><img alt="Descending Chaos on Facebook" src="<?php bloginfo('template_directory'); ?>/images/facelogo.png" /></a></li>
                        <li><a href="#" title=""><img alt="Descending Chaos on YouTube" src="<?php bloginfo('template_directory'); ?>/images/youlogo.png" /></a></li>
                    </ul>
                </div>
            </div>

編集:元の投稿をより多くのコードで更新しました。

4

2 に答える 2