我想使用“Smooth Div Scroll”滑块滑块网站
在我的自定义 Wordpress 主题中,我已经有一个滑块,但我的问题是我不需要像我在堆栈溢出的其他帖子中发现的那样只加载图像,而是必须从一个类别中加载图像wordpress 中的帖子。
这是我的网站Diario Metropolis
我怎样才能做到这一点?我目前正在使用“简单滑块”,其参数存储在 .php 文件中。
这是在我的实际滑块上加载内容的代码(简单滑块)
在 index.php 上
<?php include (TEMPLATEPATH . '/slide.php'); ?>
在 Slide.php 上
<?php $slide = get_option('repo_slide_cat'); `$count = get_option('repo_slide_count');
$slide_query = new WP_Query( 'category_name='.$slide.'&posts_per_page='.$count.'' );
while ( $slide_query->have_posts() ) : $slide_query->the_post();
?>
还有经典的 timthumb 脚本
<?php if ( has_post_thumbnail() ) { ?>
<a href="<?php the_permalink() ?>"><img class="slidimg" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php get_image_url(); ?>&h=350&w=655&zc=1" alt=""/></a> <?php } else { ?>
<a href="<?php the_permalink() ?>"><img class="slidimg" src="<?php bloginfo('template_directory'); ?>/images/dummy.png" alt="" /></a>
我如何调整 smoothdivscroll 滑块来完成此行为?正如我之前所说,我不需要从指定文件夹加载图像,我需要从我网站中的帖子动态加载图像。
任何帮助都会有很大帮助,在此先感谢。
Robert Lee 我的 wp-enqueue-script 代码如下:
<?php wp_enqueue_script('jquery');
wp_enqueue_script('superfish', get_stylesheet_directory_uri() .'/js/superfish.js');
wp_enqueue_script('jqui', get_stylesheet_directory_uri() .'/js/jquery-ui-1.8.23.custom.min');
wp_enqueue_script('slides', get_stylesheet_directory_uri() .'/js/jquery.smoothdivscroll-1.3.js');
wp_enqueue_script('slides', get_stylesheet_directory_uri() .'/js/jquery.kinetic');
wp_enqueue_script('slides', get_stylesheet_directory_uri() .'/js/jquery.mousewheel.min');
wp_enqueue_script('effects', get_stylesheet_directory_uri() .'/js/effects.js');
wp_enqueue_script('liscroll', get_stylesheet_directory_uri() .'/js/liscroll.js');
?>
我修改了你告诉我的 effects.js,但仍然没有:(