我在 wordpress 和网站上有博客,在一台机器上使用 wordpress RSS。我的想法是连接到 wordpress 数据库并在我的网站代码中为我的网站生成 Rss。
任何想法如何做到这一点?
在我发现的wordpress代码中
header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true);
$more = 1;
echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
<rss version="0.92">
<channel>
<title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>
<link><?php bloginfo_rss('url') ?></link>
<description><?php bloginfo_rss('description') ?></description>
<lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate>
<docs>http://backend.userland.com/rss092</docs>
<language><?php echo get_option('rss_language'); ?></language>
<?php do_action('rss_head'); ?>
<?php while (have_posts()) : the_post(); ?>
<item>
<title><?php the_title_rss(); ?></title>
<description><![CDATA[<?php the_excerpt_rss(); ?>]]></description>
<link><?php the_permalink_rss() ?></link>
<?php do_action('rss_item'); ?>
</item>
<?php endwhile; ?>
</channel>
</rss>
但我不能只是在我的网站代码中复制该代码。我在哪里可以找到 bloginfo_rss 方法代码?
在数据库中,我可以找到内容、标题等字段,但我找不到描述字段并对这些帖子进行排序逻辑。
$this->_blogAdapter = new Zend_Db_Adapter_Pdo_Mysql(array(
'host' => 'localhost',
'username' => 'root',
'password' => 'password',
'dbname' => 'database'
));
我可以连接到我的博客,但我不知道如何获取所有字段、排序逻辑和其他字段。有什么解决办法吗?