我对 wordpress、html、css 和 javascript 还是很陌生,如果可能的话,我很想得到你的帮助:
我正在尝试为我的博客的特色内容区域创建一个双滑块,其中左侧滑块上有三个精选的 youtube 视频,右侧滑块上有帖子摘录。 这是我的想象。
我认为我目前这样做效率低下;使用双滑块
现在,我在右侧面板上有三个 div,每个帖子对应一个在每个 div 中输出 the_excerpt() 的帖子:
<div class="detail" >
<?php $args=array('tag' => 'Featured1', 'showposts'=>1, 'caller_get_posts'=>1);
$my_query = new WP_Query($args);
if( $my_query->have_posts() )
{
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" <?php the_title(); ?></a></p>
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<h3><?php the_excerpt(); ?></h3>
<?php endwhile;
}
wp_reset_query(); ?>
</div><!--END detail1-->
左边的三个 div,一个用于将 the_content 输出到每个 div 的每个视频:
<div class="detail" >
<?php $args=array('tag' => 'Featured1', 'showposts'=>1, 'caller_get_posts'=>1);
$my_query = new WP_Query($args);
if( $my_query->have_posts() )
{
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" <?php the_title(); ?></a></p>
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<h3><?php the_content(); ?></h3>
<?php endwhile;
}
wp_reset_query(); ?>
</div><!--END detail1-->
我想要推荐的三个帖子分别标记为 Featured1、Featured2 和 Featured3,并且帖子内容只是 iframe youtube 嵌入代码,然后是我想在正确的内容面板中显示的任何内容。
最后,除了很难格式化视频的轮播大小,因为我不太了解双滑块 javascript 文件,我的另一个问题是,当您从一张幻灯片移动到另一张幻灯片时,我需要暂停当前播放的视频,类似于AnySlider (http://css-tricks.com/examples/AnythingSlider/#panel1-4) 中提供的功能。
任何帮助将非常感激。谢谢!