php 在每篇帖子的底部宣传您的RSS提要

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在每篇帖子的底部宣传您的RSS提要相关的知识,希望对你有一定的参考价值。

<?php // DO NOT USE THIS LINE

/*
 * Demos using the_content filter to add an RSS
 * link to the end of every post.
 *
 * @uses the_content
 * @uses is_single()
 * @uses get_bloginfo() DO NOT use bloginfo() because it "echos" content immediately.
 *
 * @link https://developer.wordpress.org/reference/hooks/the_content/
 * @link https://codex.wordpress.org/Plugin_API/Filter_Reference/the_content
 * @link https://developer.wordpress.org/reference/functions/is_single/
 * @link https://codex.wordpress.org/Conditional_Tags
 * @link https://developer.wordpress.org/reference/functions/get_bloginfo/
 *
 * I used a custom class of "promote_my_rss" for the div wrapper.
 * You can make this whatever you'd like based on your available
 * styles.
 */
add_filter( 'the_content', 'bb_promote_my_feed' );
function bb_promote_my_feed( $content ) {
	if ( is_single() ) {
		$content .= '<div class="promote_my_rss"> 
			<h3>Enjoyed this article?</h3> 
			<p>
				Don\'t miss a single post. Subscribe to our 
				<a class="feed" href="' . get_bloginfo( 'rss2_url' ) . '" title="Subscribe via RSS">RSS feed!</a>
			</p>
		</div>';
	}
	return $content;
}

以上是关于php 在每篇帖子的底部宣传您的RSS提要的主要内容,如果未能解决你的问题,请参考以下文章

在 mailchimp 中,如果它有帖子,你如何只显示 RSS 提要块的标记?

是否可以获得带有 X 点赞帖子链接的 reddit RSS 提要?

在自定义RSS提要中仅打印帖子的父类别

Wordpress向RSS提要添加帖子缩略图

MailChimp RSS 活动:强制包含旧帖子

带有 PHP 的 Spotify 的 RSS 提要