Wordpress Feed链接zu Feedburner leiten

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress Feed链接zu Feedburner leiten相关的知识,希望对你有一定的参考价值。

Code in functions.php einfügen
  1. function custom_feed_link($output, $feed) {
  2.  
  3. $feed_url = 'http://feeds.feedburner.com/wpbeginner';
  4.  
  5. $feed_array = array('rss' => $feed_url, 'rss2' => $feed_url, 'atom' => $feed_url, 'rdf' => $feed_url, 'comments_rss2' => '');
  6. $feed_array[$feed] = $feed_url;
  7. $output = $feed_array[$feed];
  8.  
  9. return $output;
  10. }
  11.  
  12. function other_feed_links($link) {
  13.  
  14. $link = 'http://feeds.feedburner.com/wpbeginner';
  15. return $link;
  16.  
  17. }
  18. //Add our functions to the specific filters
  19. add_filter('feed_link','custom_feed_link', 1, 2);
  20. add_filter('category_feed_link', 'other_feed_links');
  21. add_filter('author_feed_link', 'other_feed_links');
  22. add_filter('tag_feed_link','other_feed_links');
  23. add_filter('search_feed_link','other_feed_links');

以上是关于Wordpress Feed链接zu Feedburner leiten的主要内容,如果未能解决你的问题,请参考以下文章

中文 iOS/Mac 开发博客列表

php Wordpress Plugin-Code zur Ausgabe von Infos zu Autor,Kategorie等als Variablen imdataLayerfür

Wordpress中的类别的Rss feed

PHP Desactivar feed WordPress

markdown Authenticate - Instagram Feed WordPress插件

Wordpress自定义模板,用于特定类别的Feed