0
私はjqueryタブで切り替える1つの領域に別のフィードを実行しようとしています。私はフィードテンプレートを持っていて、そのたびにRSSフィードのURLを切り替えるだけです。インデックスページのURLに値を設定してフィード内にエコーしようとしましたが、明らかにこの権利を行使していません。私のアプローチで何が間違っていますか?あなたは含まれているフィード内のフィールドを呼び出す
fetch_feed($url);
に
fetch_feed('$url');
を変更する必要が
<----Index Page--->
<div class="news-feed"><?php $url = "http://mysite.com/category/news/feed/"; ?><?php locate_template(array('feeds/news-feed.php'), true) ?></div>
<-------FEED-------->
<?php // Get RSS Feed(s)
include_once(ABSPATH . WPINC . '/feed.php');
// Get a SimplePie feed object from the specified feed source.
$rss = fetch_feed('$url');<---WHERE I NEED MY CUSTOM URL
if (!is_wp_error($rss)) : // Checks that the object is created correctly
// Figure out how many total items there are, but limit it to 5.
$maxitems = $rss->get_item_quantity(5);
// Build an array of all the items, starting with element 0 (first element).
$rss_items = $rss->get_items(0, $maxitems);
endif;
?>
<ul>
<?php if ($maxitems == 0) echo '<li>No items.</li>';
else
// Loop through each feed item and display each item as a hyperlink.
foreach ($rss_items as $item) : ?>
<li>
<a href='<?php echo esc_url($item->get_permalink()); ?>'
title='<?php echo esc_html($item->get_title()); ?>'>
<?php echo '<img src="' .get_first_image_url($item->get_content()). '"/>'; ?>
<?php echo esc_html($item->get_title()); ?></br>
<span style="color:#e2e2e2"><?php echo shorten($item->get_description(),140); ?></span></a>
</li>
<?php endforeach; ?>
</ul>
私は「警告:file_get_contents(http:[function.file-get-contents]:ストリームを開けませんでした」というエラーが表示されます。 –
URLのようなサウンドが無効である可能性があります。あなたの正確なURLは何ですか? –
http://fameordie.com/category/fame-game/feedフィードに直接入れると問題なく動作します。私はちょうど約10のフィードを持っているので、私はURLを切り替える必要があります。 –