1

固定投稿機能が機能しないのはなぜですか? メインのブログのホームページの上部に表示されるように、投稿をブログに固定するようにすばやく編集しますが、何も起こりません。

このサイトでは、すべてのサイトの個々のブログを 1 つのページにまとめるために、「AHP Sitewide Recent Posts for WordPress」というプラグインを使用しています。

コードを確認しましたが、何がスティッキーの動作を妨げているのかわかりません。私が知っているほとんどすべてを試しました。助けてください、私の .php の知識は基本的なものです。メインブログを表示するコードです。

    <?php
/**
 * @package WordPress
 * @subpackage EHC_Theme
 */


/*
Template Name: 3-Column
*/

         get_header(); ?>

    <?php include(TEMPLATEPATH . "/sidebarHome.php"); ?>

    <div id="content" class="narrowcolumn" role="main">
    <h3>Recent Posts</h3>


    <?php ahp_recent_posts(10, 300, 127, 150, 4, '<div class="post">', '</div>', 1); ?>


    <?php if (have_posts()) : ?>

        <?php the_post();  the_content(); ?>
         <!--<?php while (have_posts()) : the_post(); ?>

            <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
            <?php echo get_blog_avatar(1,'32','mystery'); ?>
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
                <p class="postmetadata"><small><?php the_date() ?>, <?php the_time() ?>  By <?php the_author() ?></small></p>

                <div class="entry">
                    <?php the_excerpt('Read the rest of this entry &raquo;'); ?>
                </div>

                <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
            </div>

        <?php endwhile; ?>

        -->
                <div class="navigation">
            <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?>Next</div>
            <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?>Prev</div>
        </div>



       <?php else : ?>

        <h2 class="center">Not Found</h2>
        <p class="center">Sorry, but you are looking for something that isn't here.</p>
        <?php get_search_form(); ?>

    <?php endif; ?>

           </div>

<div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
4

1 に答える 1

0

このahp_recent_posts()関数は、おそらくデフォルトのループ機能をオーバーライドしています。中身を見ないとなんとも言えませんが、コメントアウトして表示を確認してみてください。

于 2012-11-05T23:19:00.933 に答える