<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Category post grid</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/feed/</link>
		<description></description>
		<pubDate>Wed, 10 Jun 2026 17:48:18 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35797</guid>
					<title><![CDATA[Category post grid]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35797</link>
					<pubDate>Mon, 13 Feb 2023 15:17:34 +0000</pubDate>
					<dc:creator>aviard</dc:creator>

					<description>
						<![CDATA[
						<p>Hello, how to display category name in post grid? Thank you so much</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35798</guid>
					<title><![CDATA[Reply To: Category post grid]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35798</link>
					<pubDate>Tue, 14 Feb 2023 16:41:03 +0000</pubDate>
					<dc:creator>aviard</dc:creator>

					<description>
						<![CDATA[
						<p>Hello, anyone to help me? I do not know how to do ?<br />
thank you very much</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35800</guid>
					<title><![CDATA[Reply To: Category post grid]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35800</link>
					<pubDate>Wed, 15 Feb 2023 15:27:41 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>The post carousels and grids don&#8217;t have this as an option, you can add it though.<br />
You can edit your \wp-content\themes\fortuna\includes\shortcodes\vc\boc_post_grid.php file and after this line:</p>
<p><code>$str .=&#039;&lt;h4&gt;&lt;a href=&quot;&#039;. get_permalink().&#039;&quot;&gt;&#039;.esc_html(get_the_title()).&#039;&lt;/a&gt;&lt;/h4&gt;&#039;;</code></p>
<p>You can place something like:</p>
<pre><code>if(!empty(get_the_category())) {
    $str .= &#039;&lt;p class=&quot;mt10&quot;&gt;&#039;;
    foreach (get_the_category() as $catItem =&gt; $cat) {
        $str .=&#039;&lt;span&gt;&#039;.$cat-&gt;name.&#039;&lt;/span&gt;&#039;;
        if(($catItem + 1) != count(get_the_category())) {
            $str .= &#039; | &#039;;
        }
    }
    $str .= &#039;&lt;/p&gt;&#039;;
}</code></pre>
<p>Obviously you can style this anyway you like. Good luck! <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35801</guid>
					<title><![CDATA[Reply To: Category post grid]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35801</link>
					<pubDate>Wed, 15 Feb 2023 16:24:49 +0000</pubDate>
					<dc:creator>aviard</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you very much !</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35805</guid>
					<title><![CDATA[Reply To: Category post grid]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35805</link>
					<pubDate>Mon, 20 Feb 2023 11:29:37 +0000</pubDate>
					<dc:creator>aviard</dc:creator>

					<description>
						<![CDATA[
						<p>Hello, one last thing.<br />
How to make it appear also in the post, next to the date?<br />
Thank you so much</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35806</guid>
					<title><![CDATA[Reply To: Category post grid]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35806</link>
					<pubDate>Thu, 23 Feb 2023 10:53:26 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>You can add the code in your post.php template&#8230; <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35807</guid>
					<title><![CDATA[Reply To: Category post grid]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35807</link>
					<pubDate>Fri, 24 Feb 2023 15:33:48 +0000</pubDate>
					<dc:creator>aviard</dc:creator>

					<description>
						<![CDATA[
						<p>I don&#8217;t find post.php</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35808</guid>
					<title><![CDATA[Reply To: Category post grid]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/category-post-grid/#post-35808</link>
					<pubDate>Thu, 02 Mar 2023 12:45:42 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Sorry, single.php <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

