If you maintain more than one blog or a forum, then you can display the RSS feed of your posts or articles from another website on your WordPress blog. 만약 당신이 하나의 블로 그나 포럼에 이상 그러면 귀하의 게시물이나 기사를 귀하의 WordPress의 블로그에 다른 웹 사이트로부터 RSS 피드를 표시할 수를 유지합니다. This would in turn give more exposure to your posts written else where. 이것은 귀하의 게시물을 작성한 사람에게 더 많은 노출 설정이 어디에. Although there might be plugins to do this job, you can do this using just 2 lines of code. 비록이 일을하는 플러그인이있을 수도있습니다, 당신은이 코드의 단지 2 라인을 사용하여 수행할 수있습니다. WordPress has a build in function to get the RSS feed of any website. WordPress의 기능에 웹 사이트의 RSS 피드를 구축하고있다.
We used this query to get the RSS feed of our 우리의 RSS 피드를이 쿼리를 사용하는 우리의 Mobile Blog 모바일 블로그 in the sidebar. 사이드바했다. Here is the code. 여기 코드입니다.
<?php include_once(ABSPATH . WPINC . '/rss.php'); "? PHP는 include_once (ABSPATH. WPINC. '/ rss.php');
wp_rss('http://feeds2.feedburner.com/themobileblogin, 5); ?> wp_rss ( 'http://feeds2.feedburner.com/themobileblogin, 5);? "
The first line of code is to call to RSS core file of WordPress and in the second line we specify the feed URL and the number of posts to be displayed using the wp_rss() function. () 함수를 wp_rss를 사용하여 표시되는 코드의 첫 번째 줄에 WordPress의 RSS를 핵심 파일과 우리가 게시물의 수를 피드 URL을 지정하는 두 번째 라인에서 호출하는 것입니다. You need to replace the feed URL with the URL you want to display in the sidebar. 당신은 URL을 사이드바에 표시할와 피드 URL을 교체해야합니다. You can see the Mobile Blog posts showing up in the sidebar of this blog using this method. 당신은 모바일 블로그이 블로그에이 방법을 사용하여 사이드바에 보여주는 게시물을 볼 수있습니다.

You can also do some formatting using the <ul> and <li> based on your current theme style. 또한, 일부 서식 <ul> 및 <li> 현재 테마 스타일에 기반을 사용하여 수행할 수있습니다.
NB: If you are not comfortable adding the code, you might get some plugins to do the job, but it is always advisable to go with lesser number of plugins. 주의 : 만약 여러분이 코드를 추가하는 편안하지 않습니다, 당신은 몇 가지 플러그인이 일을하고 싶어하지만, 그것은 항상 낮은 플러그인의 번호와 이동하는 것이 좋습니다.
Thanks to 감사합니다 WP Recipes WP 조리법 for this tip. 이 팁을.































Also, if your theme supports widgets then you can directly add RSS widget to your blog sidebar 또한, 만약 귀하의 테마는 다음 블로그의 사이드바에 직접 RSS를 위젯을 추가할 수있는 위젯을 지원합니다
Yes, Widget supported themes can directly add RSS Widget which intern usages above code and rss.php to retrieve feeds 예, 위젯에 직접 RSS 위젯 코드를 검색할 rss.php 위의 인턴 용도가 피드를 추가할 수있는 테마 지원
[...] How to Display Any RSS Feed on Wordpress Blog [...] [...] 어떻게 Wordpress 블로그에있는 모든 RSS 피드를 표시할 수 [...]
Small error in the code. 코드에서 작은 오류입니다. Second line must be.. 두 번째 줄에 있어야합니다 ..
wp_rss('http://feeds2.feedburner.com/themobileblogin', 5); ?> wp_rss ( 'http://feeds2.feedburner.com/themobileblogin', 5);? "
The ending ' is missing. 결말 '이 누락되었습니다.
What if you don't want the RSS to go to a sidebar, but the actual main body of your website? 만약 당신이 RSS는 사이드바에 가고 싶지는 않지만 귀하의 웹사이트의 실제 본체? I belong to an organisation that is globla and I'd like its news to appear in th emain body of my spin-off site, not just in a sidebar? 내가 globla이고 사이드바에 단지 내 스핀의 emain 위 본문에 나타나는 자사의 뉴스 사이트에서, 아니하려는 조직에 속해?