<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged rss</title>
<link>https://www.question2answer.org/qa/tag/rss</link>
<description>Powered by Question2Answer</description>
<item>
<title>Show Questions on Blog From your Questions2answer qna site using RSS</title>
<link>https://www.question2answer.org/qa/108466/show-questions-blog-from-your-questions2answer-site-using</link>
<description>

&lt;p&gt;Hi, If your main blog is located in root folder (e.g: example.com) and your questions2answer/qna site is located in your subdirectory floder (e.g: example.com/qna), and you want to show the Questions in your main blog from the qna site, you can do this by using rss url.&lt;/p&gt;

&lt;p&gt;I have created two version of this code, Only version will display all the recent questions, and the 2nd version will display the questions on your blog based on the category on which the post is listed. For example; If Your Post is Listed in Category &quot;A&quot;, then the questions from the &quot;A&quot; category of your qna site will be display, If the post category is &quot;B&quot;, then the questions from the &quot;B&quot; Category of your QNA site will be display. (For that you need to create same categories in your both Blog and Qna theme).&lt;/p&gt;

&lt;pre&gt;Here is the first code:


function fetch_questions_shortcode()
{
    // Fetch the RSS feed
    $rss_url = 'https://example.com/qna/feed/questions/biochemistry.rss';
    $rss = fetch_feed($rss_url);

    if (!is_wp_error($rss)) {
        $max_items = $rss-&amp;gt;get_item_quantity(5); // Number of questions to display
        $rss_items = $rss-&amp;gt;get_items(0, $max_items);
    }

    ob_start();
    if ($max_items == 0) {
        echo '&amp;lt;p&amp;gt;No questions found.&amp;lt;/p&amp;gt;';
    } else {
        echo '&amp;lt;ul&amp;gt;';
        foreach ($rss_items as $item) {
            echo '&amp;lt;li&amp;gt;';
            echo '&amp;lt;a href=&quot;' . esc_url($item-&amp;gt;get_permalink()) . '&quot;&amp;gt;' . esc_html($item-&amp;gt;get_title()) . '&amp;lt;/a&amp;gt;';
            echo '&amp;lt;p&amp;gt;' . esc_html($item-&amp;gt;get_description()) . '&amp;lt;/p&amp;gt;';
            echo '&amp;lt;/li&amp;gt;';
        }
        echo '&amp;lt;/ul&amp;gt;';
    }

    return ob_get_clean();
}

add_shortcode('fetch_questions', 'fetch_questions_shortcode');


&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;2nd Code (Display questions based on your post category):&lt;/strong&gt;&lt;/p&gt;

&lt;pre&gt;
&lt;strong&gt;function fetch_questions_shortcode()&lt;/strong&gt;

&lt;strong&gt;{&lt;/strong&gt;

&lt;strong&gt;    // Get the current post's category&lt;/strong&gt;

&lt;strong&gt;    $categories = get_the_category();&lt;/strong&gt;

&lt;strong&gt;    $category_slugs = array();&lt;/strong&gt;



&lt;strong&gt;    foreach ($categories as $category) {&lt;/strong&gt;

&lt;strong&gt;        $category_slugs[] = $category-&amp;gt;slug;&lt;/strong&gt;

&lt;strong&gt;    }&lt;/strong&gt;



&lt;strong&gt;    // Determine the RSS feed URL based on the category&lt;/strong&gt;

&lt;strong&gt;    $rss_urls = array(&lt;/strong&gt;

&lt;strong&gt;        'biochemistry' =&amp;gt; 'https://example.com/qna/feed/questions/biochemistry.rss',&lt;/strong&gt;

&lt;strong&gt;        'cell-biology' =&amp;gt; 'https://example.com/qna/feed/questions/cell-biology.rss',&lt;/strong&gt;

&lt;strong&gt;        // Add more category =&amp;gt; RSS URL mappings as needed&lt;/strong&gt;

&lt;strong&gt;    );&lt;/strong&gt;



&lt;strong&gt;    $rss_url = '';&lt;/strong&gt;

&lt;strong&gt;    foreach ($category_slugs as $slug) {&lt;/strong&gt;

&lt;strong&gt;        if (isset($rss_urls[$slug])) {&lt;/strong&gt;

&lt;strong&gt;            $rss_url = $rss_urls[$slug];&lt;/strong&gt;

&lt;strong&gt;            break;&lt;/strong&gt;

&lt;strong&gt;        }&lt;/strong&gt;

&lt;strong&gt;    }&lt;/strong&gt;



&lt;strong&gt;    // Fetch the RSS feed&lt;/strong&gt;

&lt;strong&gt;    $rss = fetch_feed($rss_url);&lt;/strong&gt;



&lt;strong&gt;    if (!is_wp_error($rss)) {&lt;/strong&gt;

&lt;strong&gt;        $max_items = $rss-&amp;gt;get_item_quantity(5); // Number of questions to display&lt;/strong&gt;

&lt;strong&gt;        $rss_items = $rss-&amp;gt;get_items(0, $max_items);&lt;/strong&gt;

&lt;strong&gt;    }&lt;/strong&gt;



&lt;strong&gt;    ob_start();&lt;/strong&gt;

&lt;strong&gt;    if ($max_items == 0) {&lt;/strong&gt;

&lt;strong&gt;        echo '&amp;lt;p&amp;gt;No questions found.&amp;lt;/p&amp;gt;';&lt;/strong&gt;

&lt;strong&gt;    } else {&lt;/strong&gt;

&lt;strong&gt;        echo '&amp;lt;ul&amp;gt;';&lt;/strong&gt;

&lt;strong&gt;        foreach ($rss_items as $item) {&lt;/strong&gt;

&lt;strong&gt;            echo '&amp;lt;li&amp;gt;';&lt;/strong&gt;

&lt;strong&gt;            echo '&amp;lt;a href=&quot;' . esc_url($item-&amp;gt;get_permalink()) . '&quot;&amp;gt;' . esc_html($item-&amp;gt;get_title()) . '&amp;lt;/a&amp;gt;';&lt;/strong&gt;

&lt;strong&gt;            echo '&amp;lt;p&amp;gt;' . esc_html($item-&amp;gt;get_description()) . '&amp;lt;/p&amp;gt;';&lt;/strong&gt;

&lt;strong&gt;            echo '&amp;lt;/li&amp;gt;';&lt;/strong&gt;

&lt;strong&gt;        }&lt;/strong&gt;

&lt;strong&gt;        echo '&amp;lt;/ul&amp;gt;';&lt;/strong&gt;

&lt;strong&gt;    }&lt;/strong&gt;



&lt;strong&gt;    return ob_get_clean();&lt;/strong&gt;

&lt;strong&gt;}&lt;/strong&gt;




&lt;strong&gt;add_shortcode('fetch_questions', 'fetch_questions_shortcode');&lt;/strong&gt;&lt;/pre&gt;

&lt;p&gt;Use this short code to display the questions list:&amp;nbsp;[fetch_questions]&lt;/p&gt;

&lt;p&gt;You need to paste this code in your function.php, or create a custome plugin in your wordpress theme and paste it.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/108466/show-questions-blog-from-your-questions2answer-site-using</guid>
<pubDate>Sat, 03 Jun 2023 10:59:53 +0000</pubDate>
</item>
<item>
<title>Standard RSS feeds documentation</title>
<link>https://www.question2answer.org/qa/106738/standard-rss-feeds-documentation</link>
<description>

&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;Where can I find informations on the RSS feeds avaibles by default and which type of informations it contains ?
&lt;br&gt;
&lt;br&gt;Until now I have found those on our Q&amp;amp;A :&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;feed/questions.rss&lt;/li&gt;

&lt;li&gt;feed/qa.rss&lt;/li&gt;

&lt;li&gt;feed/activity.rss&lt;/li&gt;&lt;/ul&gt;

&lt;div&gt;But I don't understand the differences in included content.&lt;/div&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/106738/standard-rss-feeds-documentation</guid>
<pubDate>Thu, 16 Mar 2023 14:10:42 +0000</pubDate>
</item>
<item>
<title>Some RSS Feeds are not working in Q2A Version1.8.6</title>
<link>https://www.question2answer.org/qa/104403/some-rss-feeds-are-not-working-in-q2a-version1-8-6</link>
<description>

&lt;ul&gt;

&lt;li&gt;qa.rss&amp;nbsp;&lt;/li&gt;

&lt;li&gt;activity.rss&lt;/li&gt;&lt;/ul&gt;

&lt;div&gt;These feeds are not working on 1.8.6 and showing error. How can I solve this?&lt;/div&gt;

&lt;div&gt;&lt;/div&gt;

&lt;div&gt;&lt;img alt=&quot;Error RSS&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=7512187750084987816&quot; style=&quot;height:100%; width:100%&quot;&gt;&lt;/div&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/104403/some-rss-feeds-are-not-working-in-q2a-version1-8-6</guid>
<pubDate>Tue, 01 Nov 2022 09:28:32 +0000</pubDate>
</item>
<item>
<title>how to open RSS feed in Google chrome browser</title>
<link>https://www.question2answer.org/qa/104377/how-to-open-rss-feed-in-google-chrome-browser</link>
<description>while opening RSS Feed in google chrome it's showing in XML format, Ui is not visible, how can I solve that issue</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/104377/how-to-open-rss-feed-in-google-chrome-browser</guid>
<pubDate>Mon, 31 Oct 2022 07:05:55 +0000</pubDate>
</item>
<item>
<title>Sites Steal the contents from my site by RSS feed, A big problem!!</title>
<link>https://www.question2answer.org/qa/101242/sites-steal-the-contents-from-my-site-by-rss-feed-big-problem</link>
<description>I want to find solution to stop stealing content. I tried different things but it didn't work.&lt;br /&gt;
&lt;br /&gt;
Please I need help</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/101242/sites-steal-the-contents-from-my-site-by-rss-feed-big-problem</guid>
<pubDate>Tue, 17 May 2022 14:09:34 +0000</pubDate>
</item>
<item>
<title>rss feed is not working. how to solve this?</title>
<link>https://www.question2answer.org/qa/97642/rss-feed-is-not-working-how-to-solve-this</link>
<description>

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;and get the following error:&lt;/p&gt;

&lt;p&gt;This page contains the following errors:&lt;/p&gt;

&lt;p&gt;error on line 2 at column 6: XML declaration allowed only at the start of the document&lt;/p&gt;

&lt;h3&gt;Below is a rendering of the page up to the first error.&lt;/h3&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;It has been like this since version 1.6.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;What could be the problem?&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/97642/rss-feed-is-not-working-how-to-solve-this</guid>
<pubDate>Fri, 19 Nov 2021 08:43:13 +0000</pubDate>
</item>
<item>
<title>Custom RSS Feeder (Importer) Plugin from RSS URL</title>
<link>https://www.question2answer.org/qa/96773/custom-rss-feeder-importer-plugin-from-rss-url</link>
<description>

&lt;p&gt;This is a premium paid plugin that imports contents posted in other web sources via &lt;u&gt;rss url feed&lt;/u&gt;. It is tested on qa 1.8.0. PM me if you interested, for price and payment options.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Plugin name:&lt;/strong&gt;&amp;nbsp; Custom RSS Feeder&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Price:&lt;/strong&gt; 30 USD&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What Plugin Does:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;It imports contents from provided rss url.&lt;/li&gt;

&lt;li&gt;Users can add rss url and run them.&amp;nbsp;&lt;/li&gt;

&lt;li&gt;Based on RSS feed structure, users can set nodes for title, content, and link.&lt;/li&gt;

&lt;li&gt;Users can see the last run time of the plugin for their rss url&lt;/li&gt;

&lt;li&gt;Plugin retrieves data from rss url and publishes them as questions.&lt;/li&gt;

&lt;li&gt;Prior to publish, plugin will check if the content was published before to ignore duplicates.&lt;/li&gt;

&lt;li&gt;Plugin will show results as a table output, showing if successfully published, or duplicate, or missing data&lt;/li&gt;

&lt;li&gt;It automatically generates 5 keywords based on repeat frequency within the content (Ignores common words such as I, You, He, She, There, Are, That, The, etc..)&lt;/li&gt;

&lt;li&gt;There is an option in admin settings to add Canonical URL meta of ORIGINAL SOURCE to handle duplicate contents from SEO perspective&lt;/li&gt;

&lt;li&gt;Authorized users can add RSS feed url and publish on behalf of other users.&lt;/li&gt;

&lt;li&gt;It adds &quot;RSS&quot; tab on user profile sub navigation&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;RSS SUB NAVIGATION PAGE&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=12796975336088715117&quot; style=&quot;height:233px; width:600px&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SAMPLE RESULT OF RUNNING IMPORT FEED:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=13588621437803652011&quot; style=&quot;height:431px; width:600px&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SAMPLE IMPORTED QUESTION VIA RSS FEEDER PLUGIN:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=16284112788983764501&quot; style=&quot;height:479px; width:600px&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=4049913246018061309&quot; style=&quot;height:356px; width:600px&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What Are Admin Settings:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;Admin can show/hide original source of the imported content&lt;/li&gt;

&lt;li&gt;Admin can add/remove original source url as canonical meta url at pages to handle SEO impact of duplicate contents&lt;/li&gt;

&lt;li&gt;Admin can set allow/disallow HTML in rss feeds&lt;/li&gt;

&lt;li&gt;Admin can assign default category for all imported feeds&lt;/li&gt;

&lt;li&gt;Admin can decided which user levels can use this feature&lt;/li&gt;

&lt;li&gt;Admin can authorize specific user levels who can import feeds on behalf of other users&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;ADMIN SETTINGS SCREENSHOT:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=13665205817616325440&quot; style=&quot;height:562px; width:600px&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;DEMO:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot; href=&quot;https://gyzgyn.com/q2a-demo&quot;&gt;&lt;span style=&quot;color:#34495e; font-family:Ubuntu,Helvetica,Arial,FreeSans,sans-serif&quot;&gt;https://gyzgyn.com/q2a-demo&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;standard username: deneme_11&lt;/p&gt;

&lt;p&gt;pass: test1234&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;username: demo&lt;/p&gt;

&lt;p&gt;pass: demo1234&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/96773/custom-rss-feeder-importer-plugin-from-rss-url</guid>
<pubDate>Sun, 10 Oct 2021 21:43:17 +0000</pubDate>
</item>
<item>
<title>whats the benefits of feeds in my site , can i make all rss feed unchecked?</title>
<link>https://www.question2answer.org/qa/92222/whats-the-benefits-feeds-site-can-make-all-rss-feed-unchecked</link>
<description></description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/92222/whats-the-benefits-feeds-site-can-make-all-rss-feed-unchecked</guid>
<pubDate>Sat, 10 Apr 2021 01:37:10 +0000</pubDate>
</item>
<item>
<title>RSS feeds are not generating after i treid to update the size to 10000</title>
<link>https://www.question2answer.org/qa/87673/rss-feeds-are-not-generating-after-treid-update-the-size-10000</link>
<description>Rss feeds are not generating ,instead showing error as server error, any idea how to resolve it?&lt;br /&gt;
&lt;br /&gt;
Igrt below after displayed feeds&lt;br /&gt;
&lt;br /&gt;
Httsp://madanswer.com/qa.rss</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/87673/rss-feeds-are-not-generating-after-treid-update-the-size-10000</guid>
<pubDate>Sun, 20 Sep 2020 04:17:35 +0000</pubDate>
</item>
<item>
<title>Include full question and all answers in RSS feed</title>
<link>https://www.question2answer.org/qa/87404/include-full-question-and-all-answers-in-rss-feed</link>
<description>

&lt;p&gt;By default I can create feed for questions or for question's answers (without full question content).&lt;/p&gt;

&lt;p&gt;I've found that I can change feed output in /qa-include/qa-feed.php&lt;/p&gt;

&lt;p&gt;There is a function called qa_feed_load_ifcategory(), but despite of my poor php skills I figured out that it can either output question itself or the answer. All my tries of merging them together finished without any luck.&lt;/p&gt;

&lt;p&gt;This is basic illustration of what I want to get in my feed:&lt;/p&gt;

&lt;pre&gt;1) Question 1 title
Question 1 content
Question 1 answer 1
Question 1 answer 2
Question 1 answer 3
-----
-----
2) Question 2 title
Question 2 content
Question 2 answer 1
Question 2 answer 2
Question 2 answer 3

-----
-----
etc...&lt;/pre&gt;

&lt;p&gt;When last parameter is passed to qa_feed_load_ifcategory(), which is $questionselectspec, the full question content is pushed away. Instead answer is added. I want to have them both.&lt;/p&gt;

&lt;p&gt;Ofcourse, I could make some kind of workaround with my own code, but I don't want to do any crutches whith horrible piece of shit-like code.&lt;/p&gt;

&lt;p&gt;Is there a way to achieve this through Q2A standard methods?&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/87404/include-full-question-and-all-answers-in-rss-feed</guid>
<pubDate>Thu, 10 Sep 2020 08:12:20 +0000</pubDate>
</item>
<item>
<title>How to display data from qa_postmetas table in rss feeds</title>
<link>https://www.question2answer.org/qa/87342/how-to-display-data-from-qa_postmetas-table-in-rss-feeds</link>
<description>Hello!!! Does anyone know how to output data from the qa_postmetas (content) table to qa-feed.php instead of $ lines [] = '&amp;lt;description&amp;gt;'. qa_xml ($ htmlcontent). '&amp;lt;/description&amp;gt;';.&lt;br /&gt;
Maybe it's not safe, but I really need it. Any help would be welcome.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/87342/how-to-display-data-from-qa_postmetas-table-in-rss-feeds</guid>
<pubDate>Mon, 07 Sep 2020 20:30:43 +0000</pubDate>
</item>
<item>
<title>rss feeds!!!!!</title>
<link>https://www.question2answer.org/qa/86204/rss-feeds</link>
<description>When I click on the rss feeds, the error page opens. Can you help?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/86204/rss-feeds</guid>
<pubDate>Mon, 20 Jul 2020 23:42:16 +0000</pubDate>
</item>
<item>
<title>Can someone integrate this rss push notification in android app of question2answer ?</title>
<link>https://www.question2answer.org/qa/83299/someone-integrate-notification-android-question2answer</link>
<description>

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://stackoverflow.com/questions/61536781/how-can-i-make-android-app-webview-which-sends-push-notification-when-rss-feed&quot;&gt;How can I make android app (webview) which sends push notification when rss feeds updates?&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/83299/someone-integrate-notification-android-question2answer</guid>
<pubDate>Fri, 01 May 2020 06:24:55 +0000</pubDate>
</item>
<item>
<title>Add question Source link under the question, Some thieves steal via RSS</title>
<link>https://www.question2answer.org/qa/82918/add-question-source-link-under-question-some-thieves-steal</link>
<description>

&lt;p&gt;hello&lt;/p&gt;

&lt;p&gt;I want Add &lt;span style=&quot;color:#27ae60&quot;&gt;&lt;span style=&quot;font-size:26px&quot;&gt;question Source link&lt;/span&gt;&lt;/span&gt; &quot;Automatically&quot; under the question, Some thieves steal via RSS&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/82918/add-question-source-link-under-question-some-thieves-steal</guid>
<pubDate>Mon, 20 Apr 2020 13:57:01 +0000</pubDate>
</item>
<item>
<title>Rss provided here seems to be not working. How do i make it work?</title>
<link>https://www.question2answer.org/qa/82668/rss-provided-here-seems-to-be-not-working-how-do-i-make-it-work</link>
<description>RSS is making same output as is happening on this website itself. I mean question2answer.org itself.&lt;br /&gt;
&lt;br /&gt;
Please, tell me how can it be fixed on mysite.&lt;br /&gt;
&lt;br /&gt;
Also, I am sorry if i have posted it in wrong category.&lt;br /&gt;
&lt;br /&gt;
Thank You.</description>
<category>Themes</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/82668/rss-provided-here-seems-to-be-not-working-how-do-i-make-it-work</guid>
<pubDate>Fri, 10 Apr 2020 10:58:05 +0000</pubDate>
</item>
<item>
<title>How to add rss feed for question author ?</title>
<link>https://www.question2answer.org/qa/80723/how-to-add-rss-feed-for-question-author</link>
<description>

&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;How to add rss feed option for question author ?&lt;/p&gt;

&lt;p&gt;There is no rss feed option for this.&lt;/p&gt;

&lt;p&gt;I want to get latest questions asked by author in rss feed.&lt;/p&gt;

&lt;p&gt;Is there any code i can add on any php file ?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;Example page -&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=6896015035335500436&quot; style=&quot;float:left; height:600px; width:100%&quot;&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/80723/how-to-add-rss-feed-for-question-author</guid>
<pubDate>Wed, 22 Jan 2020 04:22:56 +0000</pubDate>
</item>
<item>
<title>Is there an plugin to bring questions from other sites  by rss / feed ?</title>
<link>https://www.question2answer.org/qa/78435/is-there-an-plugin-bring-questions-from-other-sites-rss-feed</link>
<description>please help i need plugin to get qusetion from other sites ?</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/78435/is-there-an-plugin-bring-questions-from-other-sites-rss-feed</guid>
<pubDate>Thu, 10 Oct 2019 05:42:29 +0000</pubDate>
</item>
<item>
<title>RSS Feed 404 Not Found nginx</title>
<link>https://www.question2answer.org/qa/78328/rss-feed-404-not-found-nginx</link>
<description>

&lt;p&gt;Why my rss feed not found ?&lt;/p&gt;

&lt;p&gt;my site&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://houseofdream.com.ua/q/&quot;&gt;http://houseofdream.com.ua/q/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;rss feed&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://houseofdream.com.ua/q/feed/qa.rss&quot;&gt;http://houseofdream.com.ua/q/feed/qa.rss&lt;/a&gt;&amp;nbsp;(not found)&lt;/p&gt;

&lt;p&gt;i use nginx + php-fpm&amp;nbsp;&lt;/p&gt;

&lt;p&gt;all else links work fine&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/78328/rss-feed-404-not-found-nginx</guid>
<pubDate>Fri, 04 Oct 2019 20:34:00 +0000</pubDate>
</item>
<item>
<title>How add thumbnail from questions in /feed/qa.rss</title>
<link>https://www.question2answer.org/qa/73935/how-add-thumbnail-from-questions-in-feed-qa-rss</link>
<description>Hello i need to add images from questions in rss feed to adding feed to other sites with images, i try in /public_html/qa-include/qa-feed.php &lt;br /&gt;
&lt;br /&gt;
$lines[] = '&amp;lt;image&amp;gt;' . qa_xml($question['thumbnail']) . '&amp;lt;/image&amp;gt;';&lt;br /&gt;
&lt;br /&gt;
and don't working, please help me</description>
<category>Themes</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/73935/how-add-thumbnail-from-questions-in-feed-qa-rss</guid>
<pubDate>Sun, 07 Apr 2019 14:20:14 +0000</pubDate>
</item>
<item>
<title>Is there a ATOM compatible feed widget?</title>
<link>https://www.question2answer.org/qa/61806/is-there-a-atom-compatible-feed-widget</link>
<description>I have an external site that only creates ATOM feeds, but the RSS feed widgets for Q2A that I tried only seem to support the older RSS feeds.&lt;br /&gt;
&lt;br /&gt;
Does anyone know one that works with ATOM feeds?</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/61806/is-there-a-atom-compatible-feed-widget</guid>
<pubDate>Sun, 07 Jan 2018 13:55:45 +0000</pubDate>
</item>
</channel>
</rss>