道歉。第一次发帖。在任何解决方案之前都要感谢。
我正在尝试将Supersized插件与WordPress手动集成。我需要它使用我定义的自定义帖子类型(CPT)称为'homepageslides'并在该CPT中获取帖子的特色图像并将其拉入Supersize脚本。
我的CPT'homepagesslides'正常循环正常工作。代码可以在这里看到: http://pastebin.com/1KqH2asD
我使用绝对网址在WordPress中使用超级插件。代码可以在这里看到: 的 http://pastebin.com/jbpccWa2
我一直在努力将上述内容结合起来,但我还没有成功。幻灯片(方括号之间的位)需要从WordPress CPT动态生成。
非常感谢任何想法。
由于 戴夫
之前的研究链接: 这些目标指向特定目录或具有我无法工作的元素。
jquery Supersize show IE error
http://wordpress.org/support/topic/custom-post-types-category_name
http://forum.jquery.com/topic/tutorial-how-to-detect-images-automatically-with-supersized
答案 0 :(得分:2)
试试这段代码:
slides : [
<?php
//query
query_posts(array('post_type'=>'homepageslides',
'posts_per_page'=>'20'
));
//loop
if(have_posts()) :
while (have_posts()) : the_post();
//feature image
$large_image_url = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full');
$title = get_the_title();
//echo slides
echo "{image : '".$large_image_url[0]."', title : '".$title."', url : ''},";
endwhile;
endif;
?>]