我不知道有什么插件,但你可以自己做。
结构:
每张幻灯片都是一篇文章每个帖子都包含文本和一个图像(通过媒体上传器上传)
要定位正确的帖子,您可以使用不同的技术,简单网就是使用一个类别,即:“滑块”如果要使用滑块,我建议使用类似以下内容:
function display_sliders() {
// get posts
$args = array (
\'category_name\' => \'slider\',
\'numberposts\' => 3, // adapt the number to your needs
);
// fectching data
$posts_sliders = get_posts( $args );
foreach ( $posts_sliders as $post_slider ) {
// we will need a image associated to the post
$args = array (
\'numberposts\' => 1,
\'post_parent\' => $post_slider->ID, //the way we have image child of the post
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\'
);
$image_slide = get_post ( $args );
// change ouput according to the requisite of plugin
echo \'<div class="slider-wrapper">\';
echo \'<div class="slider-texte">\';
echo \'<h2 class="slider-title">\' . $post_slider->post_title . \'</h2>\';
echo \'<p class="slider-body">\' . $post_slider->post_content . \'</p>\';
echo \'</div>\';
// Second div for image
echo \'<div class="slider-image">\';
echo wp_get_attachment_image( $image_slide->ID, \'medium\'); // change size in media to fit the correct size
echo \'</div>\';
echo \'</div>\';
}
}
之后,您需要找到一个jQuery插件来完成这项任务,将其包含到您的主题中,并可能调整输出细节,但这只是一小段代码,看看这个逻辑是否可以帮助您开始一些事情。
我经常使用这种完全可定制的滑块,客户发现它很容易使用。