<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Rating in the post grid / archive page - How-to and Troubleshooting				            </title>
            <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/</link>
            <description>wpDiscuz WordPress Comment Plugin Community. Support and Resources.</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 20 Jul 2026 16:47:41 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23866</link>
                        <pubDate>Sat, 06 Apr 2024 12:07:18 +0000</pubDate>
                        <description><![CDATA[@selenii,
There is not an easy solution we can post here.Currently, we have paid plugin customization and custom addon development services at the gVectors Team. They can assess the work an...]]></description>
                        <content:encoded><![CDATA[<p>@selenii,</p>
<p>There is not an easy solution we can post here.<br /><br />Currently, we have paid plugin customization and custom addon development services at the gVectors Team. They can assess the work and create it for you. Just contact us via salesgvectors.com email address and send a list of requirements you'd like to have.</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23866</guid>
                    </item>
				                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23861</link>
                        <pubDate>Fri, 05 Apr 2024 09:42:18 +0000</pubDate>
                        <description><![CDATA[@asti But how do I make sure that it is recognized which post it is? The post id should actually be changed dynamically.]]></description>
                        <content:encoded><![CDATA[@asti But how do I make sure that it is recognized which post it is? The post id should actually be changed dynamically.]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>selenii</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23861</guid>
                    </item>
				                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23852</link>
                        <pubDate>Thu, 04 Apr 2024 11:19:59 +0000</pubDate>
                        <description><![CDATA[@selenii,
The shortcode must include the post ID to function correctly, especially if it&#039;s being displayed on an archive page. Otherwise, it will attempt to retrieve data from the global po...]]></description>
                        <content:encoded><![CDATA[<p>@selenii,</p>
<p>The shortcode must include the post ID to function correctly, especially if it's being displayed on an archive page. Otherwise, it will attempt to retrieve data from the global post, which may not be correct.</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23852</guid>
                    </item>
				                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23666</link>
                        <pubDate>Fri, 22 Mar 2024 10:02:36 +0000</pubDate>
                        <description><![CDATA[@asti I doesnt work, when I put this code in the function.php. What I do wrong?
Hier the code for example for the software category.
function add_shortcode_to_posts_in_category($content) {...]]></description>
                        <content:encoded><![CDATA[<p>@asti I doesnt work, when I put this code in the function.php. What I do wrong?</p>
<p>Hier the code for example for the software category.<br /><br /></p>
<pre contenteditable="false">function add_shortcode_to_posts_in_category($content) {
    // Überprüfe, ob es sich bei dem aktuellen Post um einen in der Kategorie 'software' handelt
    if (is_single() &amp;&amp; has_category('software')) {
        // Dein Shortcode, den du zum Inhalt hinzufügen möchtest
        $shortcode = do_shortcode('');
        // Hänge den Shortcode an den Inhalt des Posts an
        $content .= $shortcode;
    }
    // Gebe den geänderten (oder unveränderten) Inhalt zurück
    return $content;
}
// Füge den Filter zum 'the_content' hinzu
add_filter('the_content', 'add_shortcode_to_posts_in_category');
</pre>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>selenii</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23666</guid>
                    </item>
				                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23654</link>
                        <pubDate>Thu, 21 Mar 2024 10:45:07 +0000</pubDate>
                        <description><![CDATA[@selenii,
Here is the code: 
echo do_shordcode(&#039;&#039;)]]></description>
                        <content:encoded><![CDATA[<p>@selenii,</p>
<p>Here is the code: </p>
<pre contenteditable="false">echo do_shordcode('')</pre>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23654</guid>
                    </item>
				                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23583</link>
                        <pubDate>Mon, 11 Mar 2024 18:59:53 +0000</pubDate>
                        <description><![CDATA[But how can I display it in the loop of divi blog modul?]]></description>
                        <content:encoded><![CDATA[<p>But how can I display it in the loop of divi blog modul? </p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>selenii</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23583</guid>
                    </item>
				                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23459</link>
                        <pubDate>Fri, 01 Mar 2024 10:20:02 +0000</pubDate>
                        <description><![CDATA[@selenii,
Yes it is.]]></description>
                        <content:encoded><![CDATA[<p>@selenii,</p>
<p>Yes it is. </p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23459</guid>
                    </item>
				                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23444</link>
                        <pubDate>Wed, 28 Feb 2024 09:29:19 +0000</pubDate>
                        <description><![CDATA[Hi, thank you for your feedback. I&#039;m using the Post Rating Based on Comment Rating Field.
Is that the right shortcode for this?]]></description>
                        <content:encoded><![CDATA[<p>Hi, thank you for your feedback. I'm using the Post Rating Based on Comment Rating Field.</p>
<p>Is that the right shortcode for this?</p>
<p></p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>selenii</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23444</guid>
                    </item>
				                    <item>
                        <title>RE: Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23442</link>
                        <pubDate>Wed, 28 Feb 2024 08:06:17 +0000</pubDate>
                        <description><![CDATA[Hi 
If you&#039;re using the Post Rating Based on Comment Rating Field you can use this shortcode:
However, if you&#039;re using the Stand-alone Post Rating, unfortunately, there is no available solu...]]></description>
                        <content:encoded><![CDATA[<p>Hi </p>
<p>If you're using the<span> </span><a href="https://wpdiscuz.com/docs/wpdiscuz-7/plugin-settings/article-and-comment-rating/#2-%E2%80%93-post-rating-based-on-comment-rating-field" target="_blank" rel="noopener">Post Rating Based on Comment Rating Field</a><span> </span>you can use this shortcode:<span> </span><a class="wpforo-auto-embeded-link" href="https://wpdiscuz.com/community/f-a-q/wpdiscuz-shortcode-2/#post-10665" target="_blank" rel="noopener">https://wpdiscuz.com/community/f-a-q/wpdiscuz-shortcode-2/#post-10665</a></p>
<p>However, if you're using the<span> </span><a href="https://wpdiscuz.com/docs/wpdiscuz-7/plugin-settings/article-and-comment-rating/#1-%E2%80%93-stand-alone-post-rating" target="_blank" rel="noopener">Stand-alone Post Rating,</a><span> </span>unfortunately, there is no available solution at the moment. </p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>Asti</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23442</guid>
                    </item>
				                    <item>
                        <title>Rating in the post grid / archive page</title>
                        <link>https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23427</link>
                        <pubDate>Tue, 27 Feb 2024 21:02:00 +0000</pubDate>
                        <description><![CDATA[Can I use the same shortcode in the postgrid/archive page for each post to display the rating of the post? I am using Divi Builder]]></description>
                        <content:encoded><![CDATA[<p>Can I use the same shortcode in the postgrid/<span>archive page</span> for each post to display the rating of the post? I am using Divi Builder</p>]]></content:encoded>
						                            <category domain="https://wpdiscuz.com/community/troubleshooting/">How-to and Troubleshooting</category>                        <dc:creator>selenii</dc:creator>
                        <guid isPermaLink="true">https://wpdiscuz.com/community/troubleshooting/rating-in-the-post-grid-archive-page/#post-23427</guid>
                    </item>
							        </channel>
        </rss>
		