我在我的推特账户中有来自url->的RSS。 https://script.google.com/macros/s/AKfycbyp8Wwo8-dxWdPjO0atNZJbKPpy0LRaDTszisMWZhsdXU0XYOs/exec
我使用以下代码显示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( 'https://script.google.com/macros/s/AKfycbyp8Wwo8-dxWdPjO0atNZJbKPpy0LRaDTszisMWZhsdXU0XYOs/exec' );
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 ) : ?>
<li><?php _e( 'No items', 'my-text-domain' ); ?></li>
<?php else : ?>
<?php // Loop through each feed item and display each item as a hyperlink. ?>
<?php foreach ( $rss_items as $item ) : ?>
<li>
<a href="<?php echo esc_url( $item->get_permalink() ); ?>"
title="<?php printf( __( 'Posted %s', 'my-text-domain' ), $item->get_date('j F Y | g:i a') ); ?>">
<?php echo esc_html( $item->get_title() ); ?>
</a>
</li>
<?php endforeach; ?>
<?php endif; ?>
</ul>
答案 0 :(得分:0)
有一个Twitter插件可以为你完成这项工作。要访问插件网站Click Here
或者您可以在wp插件库中搜索twitter-widget-pro
。
它为您提供了一个正确处理Twitter提要的小部件,包括将@username,#hashtag和URL解析为链接。它支持显示配置文件图像,甚至可以让您控制是否显示推文的时间和日期,或者发生日志的时间(约5小时前等)。
答案 1 :(得分:0)
如果你知道使用wordpress插件,我推荐这个: https://wordpress.org/plugins/latest-tweets-widget/
已安装的插件是自我描述的。