<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Portfolio AND Blog Posts in Combo Widget</title>
		<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget</link>
		<description>Support Forum - Topic: Portfolio AND Blog Posts in Combo Widget</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 08:12:25 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/portfolio-and-blog-posts-in-combo-widget" rel="self" type="application/rss+xml" />

		<item>
			<title>cameljok on "Portfolio AND Blog Posts in Combo Widget"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget#post-82929</link>
			<pubDate>Thu, 08 Nov 2012 19:16:20 +0000</pubDate>
			<dc:creator>cameljok</dc:creator>
			<guid isPermaLink="false">82929@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok, thanks! :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Portfolio AND Blog Posts in Combo Widget"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget#post-82662</link>
			<pubDate>Wed, 07 Nov 2012 13:45:28 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">82662@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey cameljok,&#60;/p&#62;
&#60;p&#62;That sounds correct. Just make sure to save a backup of the file you edited so when you update the theme or framework you can easily re-apply your change :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cameljok on "Portfolio AND Blog Posts in Combo Widget"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget#post-82594</link>
			<pubDate>Tue, 06 Nov 2012 22:18:26 +0000</pubDate>
			<dc:creator>cameljok</dc:creator>
			<guid isPermaLink="false">82594@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Err... so minutes after I posted this, the comments from the portfolio entries started showing up in the box. So maybe it already works like that and it was just torturing me for awhile? &#60;/p&#62;
&#60;p&#62;I would still like to know if my solutions for the recent and popular posts is a good one or not. I know it's working... but I don't know enough about coding to know if it will break the way something else is supposed to work later down the line. :)&#60;/p&#62;
&#60;p&#62;Thanks for a great theme!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cameljok on "Portfolio AND Blog Posts in Combo Widget"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-and-blog-posts-in-combo-widget#post-82592</link>
			<pubDate>Tue, 06 Nov 2012 22:08:39 +0000</pubDate>
			<dc:creator>cameljok</dc:creator>
			<guid isPermaLink="false">82592@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've seen this question asked a few different ways in this forum, so I figured out from those posts how to make portfolio and blog posts show up under latest posts and popular posts in the Combo Widget (though I'm not sure it's the best way...), but I can't figure out how to make that work with the latest comments.&#60;/p&#62;
&#60;p&#62;For the latest posts and most popular posts, I opened up class-frameworks-widget.php and basically added a second 'avia_get_post_list' to call the portfolio posts and left the blog posts intact, rather than replacing it. When I change how many I want shown in the widget area, it will show that many of EACH type.  &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;#39;&#38;lt;div class=&#38;quot;tab first_tab widget_tab_popular&#38;quot;&#38;gt;&#38;lt;span&#38;gt;&#38;#39;.__(&#38;#39;Popular&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
		echo &#38;quot;&#38;lt;div class=&#38;#39;tab_content&#38;#39;&#38;gt;&#38;quot;;
		avia_get_post_list(&#38;#39;post_type=portfolio&#38;amp;cat=&#38;amp;orderby=comment_count&#38;amp;posts_per_page=&#38;#39;.$posts);
		avia_get_post_list(&#38;#39;cat=&#38;amp;orderby=comment_count&#38;amp;posts_per_page=&#38;#39;.$posts);
		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

		echo &#38;#39;&#38;lt;div class=&#38;quot;tab widget_tab_recent&#38;quot;&#38;gt;&#38;lt;span&#38;gt;&#38;#39;.__(&#38;#39;Recent&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
		echo &#38;quot;&#38;lt;div class=&#38;#39;tab_content&#38;#39;&#38;gt;&#38;quot;;
		avia_get_post_list(&#38;#39;post_type=portfolio&#38;amp;showposts=&#38;#39;. $posts .&#38;#39;&#38;amp;orderby=post_date&#38;amp;order=asc&#38;#39;);
		avia_get_post_list(&#38;#39;showposts=&#38;#39;. $posts .&#38;#39;&#38;amp;orderby=post_date&#38;amp;order=desc&#38;#39;);
		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The problem is... I don't really know what I'm doing, so I'm not sure if that is the best way to handle it, and ... I don't know how to produce the same effect with the comments section. Any ideas?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
