为什么ID粘贴帖子功能不起作用? 我在他们所居住的博客上快速编辑帖子粘贴,因此它将显示在主博客主页的顶部,但没有任何反应。
此网站使用名为“AHP全网最近发布的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(); ?>
答案 0 :(得分:0)
ahp_recent_posts()
函数可能会覆盖默认的循环功能。很难说没有看到它的内容,但尝试将其评论出去,看看显示器是什么样的。