Maison > php教程 > php手册 > le corps du texte

Append and Prepend to WordPress RSS Feed?Content

WBOY
Libérer: 2016-06-06 20:13:08
original
1908 Les gens l'ont consulté

The?awesome part of RSS is that it lets you pull content wherever you want. ?The bad part, as a publisher, is that the user may be missing out on important information that is on the site but doesnt?display in articles. ?WordPress?hook sys

The?awesome part of RSS is that it lets you pull content wherever you want. ?The bad part, as a publisher, is that the user may be missing out on important information that is on the site but doesn’t?display in articles. ?WordPress’?hook system?to the rescue!

The PHP

We’re going to hook onto the the_content and?the_excerpt_rss function hooks to append or prepend content to feed entries:

// Additional RSS Content
$rss_more_content = 'blah blah blah';
$rss_more_position = 'before'; // or "after"
// Function which adds content to RSS entries
function add_rss_content($content) {
	global $rss_more_position, $rss_more_content;
	if(is_feed()) {
		if ($rss_more_position == 'before') {
			$content = "$rss_more_content\n$content";
		} else {
			$content .= "$rss_more_content\n";
		}
	}
	return $content;
}
// Add hooks
add_filter('the_content', 'add_rss_content');
add_filter('the_excerpt_rss', 'add_rss_content');
Copier après la connexion

The only conditional is whether or not you want the content added at the top or bottom of the content block. ?This function should go into your functions.php file, but how you pull in the additional content?in is up to you!

Read the full article at: Append and Prepend to WordPress RSS Feed Content

Treehouse
Wufoo

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!