<?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>Only show post from specific categories on blog page &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 04:49:47 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-115554</guid>
					<title><![CDATA[Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-115554</link>
					<pubDate>Tue, 30 Sep 2014 13:32:07 +0000</pubDate>
					<dc:creator>Karolina N</dc:creator>

					<description>
						<![CDATA[
						<p>Hi! </p>
<p>I&#8217;m setting up a blog page on a website but only want to show a few specific categories on it. Or better yet exclude one category so it does not appear on that page. Is that possible? And how do I do that? </p>
<p>Thanks! </p>
<p>//Karolina</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-115592</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-115592</link>
					<pubDate>Tue, 30 Sep 2014 14:11:19 +0000</pubDate>
					<dc:creator>Cousett</dc:creator>

					<description>
						<![CDATA[
						<p>I have used this plugin in the past <a href="https://wordpress.org/plugins/frontpage-category-filter/" rel="nofollow">https://wordpress.org/plugins/frontpage-category-filter/</a> and it worked well. You could also set up a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>. This allows you to make code changes that won&#8217;t be overwritten when an <strong>X</strong> update is released. After your child theme is setup, please review how we recommend making template changes in <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>Once your child theme is set and you know what categories you want to include the next step is to add this code to your function.php file:</p>
<pre><code>function my_home_category( $query ) {
 if ( $query-&gt;is_home() &amp;&amp; $query-&gt;is_main_query() ) {
 $query-&gt;set( &#039;cat&#039;, &#039;11&#039;);
 }
}
add_action( &#039;pre_get_posts&#039;, &#039;my_home_category&#039; );</code></pre>
<p>If you would like to include more than one category, then just add another ID by inserting a comma and the ID number. For example, this is will display category 11 and category 14.<br />
<code>$query-&gt;set( &#039;cat&#039;, ’11, 14’ );</code></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-116274</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-116274</link>
					<pubDate>Wed, 01 Oct 2014 12:23:08 +0000</pubDate>
					<dc:creator>Karolina N</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks! </p>
<p>That plugin where unfortunatly to old but I found a similar one. </p>
<p>I would like to implement the meta as it displays in the original blog page<br />
and tried to implement this: &lt;?php x_renew_entry_meta(); ?&gt; on the plugins index-page<br />
But it did not work as I wanted. Is there a way to write it out så that it will fetch the icons correctly? </p>
<p>I&#8217;m searching the code but it is surely complex. (in a positive way though) 😉 </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-116296</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-116296</link>
					<pubDate>Wed, 01 Oct 2014 12:50:35 +0000</pubDate>
					<dc:creator>Kosher K</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Karolina,</p>
<p>Would you mind providing additional details about your modification? </p>
<p>Does the plugin you used have its own blog or custom template?  Can you provide the page you are customizing.</p>
<p>Unfortunately, we have limited support on third party plugin, but I wanted to see if it can be easily done on your case.</p>
<p>Cheers</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-116368</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-116368</link>
					<pubDate>Wed, 01 Oct 2014 14:23:39 +0000</pubDate>
					<dc:creator>Karolina N</dc:creator>

					<description>
						<![CDATA[
						<p>I have managed to solve it. 🙂 </p>
<p>I added the icons by the &lt;i&gt; and used the normal get_author and so on to the rest.</p>
<p>Thanks for your help! </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-116402</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-116402</link>
					<pubDate>Wed, 01 Oct 2014 15:03:15 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re most welcome Karolina! 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-128483</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-128483</link>
					<pubDate>Mon, 20 Oct 2014 13:22:21 +0000</pubDate>
					<dc:creator>Karolina N</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again! </p>
<p>Sorry to bring this qt up again but I have more problem. 🙁</p>
<p>I thought I had solved this case but it seems that when I add more blog posts<br />
not all are shown and how to add the more pages like this:<br />
<a href="http://twentytwelvedemo.wordpress.com/blog/" rel="nofollow">http://twentytwelvedemo.wordpress.com/blog/</a></p>
<p>The best possibility where to display my blog sort of like this:<br />
<a href="http://theme.co/x/demo/integrity/1/blog/" rel="nofollow">http://theme.co/x/demo/integrity/1/blog/</a> </p>
<p>But with whole posts of course. 🙂 And with the possibility to only show posts from one category. </p>
<p>Hope there is a soloution for this. 😀</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-128627</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-128627</link>
					<pubDate>Mon, 20 Oct 2014 17:09:30 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,<br />
would you please share the code that you are using now? Do you use a plugin that you have mentioned before or a code snippet inside your Child Theme?</p>
<p>My guess is that pagination is the problem now and we should check your code to see if we can help or not.</p>
<p>By the way I also suggest that you go to settings -&gt; reading -&gt; posts per page and set it to a big amount and see if it works for you.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-129069</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-129069</link>
					<pubDate>Tue, 21 Oct 2014 09:24:32 +0000</pubDate>
					<dc:creator>Karolina N</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m using this plugin: <a href="https://wordpress.org/plugins/posts-from-category/" rel="nofollow">https://wordpress.org/plugins/posts-from-category/</a> </p>
<p>But I have altered it a bit so that it shows the_content instead of the_excerpt<br />
and also so that it shows the icons that the X theme uses for author, date and category-tag.</p>
<p>The very best would of course be if I could create a child theme and use your existing settings and alter them so that I can show the whole content and only from one category. </p>
<p>However I would much rather skip the child-theme and use some plugin if that was possible. 🙂 </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-129291</guid>
					<title><![CDATA[Reply To: Only show post from specific categories on blog page]]></title>
					<link>https://theme.co/archive/forums/topic/only-show-post-from-specific-categories-on-blog-page/#post-129291</link>
					<pubDate>Tue, 21 Oct 2014 15:37:08 +0000</pubDate>
					<dc:creator>Cousett</dc:creator>

					<description>
						<![CDATA[
						<p>Seems like you were able to get everything working nicely and still able to avoid the child theme. Let us know if you need anything else. </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

