JQuery滑块教程中的自定义函数出现问题

时间:2011-07-23 作者:Mats

我找到了适合我需要的完美滑块,现在唯一的问题是我无法让它正常工作。出现的问题是创建的函数不能正常工作。它应该显示特定类别中的三个帖子,但最终会推送更多帖子,这可能是通过函数中的循环实现的。而且滑块效果根本不起作用-可能是因为这个原因。

检查下面的url。这是第二步,在底部。slideshow\\u featured\\u帖子的代码。我感觉代码中缺少了一些东西,因为我已经看到代码中缺少了php标记。但我看不到什么。有谁比我更了解这一点,能帮忙吗?

http://www.paddsolutions.com/how-to-integrate-jquery-cycle-plugin-to-wordpress-theme/

1 个回复
最合适的回答,由SO网友:Bainternet 整理而成

代替slideshow_featured_posts 该教程的功能包括:

function slideshow_featured_posts() {

    $featured = 1; // Assuming that the name of the category ID number 1 is "Featured".
    $count = 3; // How many post to be shown as slides. Ideally, it should be more than 3 posts.
    add_filter(\'excerpt_length\', \'hook_excerpt_featured_length\');
    $Silder_query = new WP_Query(array(\'cat\' => $featured, \'posts_per_page\' => $count));
?>

<div class="list">
    <?php while ($Silder_query->have_posts()) : $Silder_query->the_post(); ?>
    <div class="item">
        <a class="image" href="<?php the_permalink(); ?>" title="Permanent Link to <?php the_title_attribute(); ?>">
        <?php the_post_thumbnail(\'slideshow\'); ?>
        </a>
        <div class="meta">
            <h3><a href="<?php the_permalink(); ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
            <?php the_excerpt(); ?>
        </div>
        <div style="clear: both"></div>
    </div>
    <?php endwhile; ?>
</div>

<?php
    wp_reset_query();
    remove_filter(\'excerpt_length\',\'hook_excerpt_featured_length\');
}
其他一切都好。

结束

相关推荐

WooThemes PremiumNews主题jQuery与WordPress 3.2冲突

今天早上我更新了我的wp,之后我的站点上的jquery很少出现问题。我正在使用woo主题高级报纸主题。升级后,类别下拉菜单(superfish菜单)停止工作。我在使用lightbox插件制作图像,结果停止了工作。我停用了所有插件并检查了主题,但superfish仍然不起作用,我用最新的主题框架更新了主题框架,但仍然没有效果。有人能帮我吗?我的网站URL是:http://webstutorial.com/and我使用的主题是:http://demo.woothemes.com/?name=premiumne