为什么 id 置顶帖功能不起作用?我快速编辑帖子以粘贴在他们所在的博客上,因此它将显示在主博客主页的顶部,但没有任何反应。
该站点使用一个名为“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 »'); ?>
</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 »', '1 Comment »', '% Comments »'); ?></p>
</div>
<?php endwhile; ?>
-->
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?>Next</div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?>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(); ?>