Iam使用一个外部文件(feed\\u home.php),其中加载了AJAX onclick。
$(document).ready(function(){
$.ajaxSetup({cache:false});
$("#new a").click(function(){
var post_id = $(this).attr("rel")
$(".featureline").html("loading...");
$(".featureline").load(jQuery(this).attr("href"))
return false;
});
});
feed\\u主页。php
具有以下代码来加载amazon rss源:
<?php
include_once(ABSPATH . WPINC . \'/rss.php\');
$feed = \'http://www.amazon.de/rss/new-releases/videogames/\';
$rss = fetch_feed($feed); ?><?php
if (!is_wp_error( $rss ) ) :
$maxitems = $rss->get_item_quantity(3);
$rss_items = $rss->get_items(0, $maxitems);
if ($rss_items):
echo "<ul>\\n";
foreach ( $rss_items as $item ) :
echo \'<li>\';
echo \'<a href="\' . $item->get_permalink() . \'">\' . $item->get_title() . "</a>\\n";
echo \'<p>\' . $item->get_description() . "</li>\\n";
endforeach;
echo "</ul>\\n";
endif;
endif;
?>
问题是,我总是遇到这样的错误:
include(stream.php) [function.include]:
failed to open stream: No such file or directory in
/is/htdocs/...mywebsite/feed_home.php on line 2
如果没有Ajax,就会出现Amazon Rss提要。有什么想法吗?非常感谢。
公元
嗯,我想我慢慢明白了这意味着什么:
但我不知道如何处理这件事。
“feed\\u home.php”必须有类似于最小Wordpress的环境,对吗?
这和
// Stop most of WordPress from being loaded if we just want the basics.
if ( SHORTINIT )
return false;
但是我怎样才能让它工作呢?
非常感谢。
公元