<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<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>Gravity Support Forums Topic: drop down with posts from certain author</title>
		<link>https://legacy.forums.gravityhelp.com/topic/drop-down-with-posts-from-certain-author</link>
		<description>Gravity Support Forums Topic: drop down with posts from certain author</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 21:42:55 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/drop-down-with-posts-from-certain-author" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "drop down with posts from certain author"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-with-posts-from-certain-author#post-79589</link>
			<pubDate>Mon, 08 Oct 2012 11:08:40 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">79589@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're absolutely right: my mistake.  I edited the paste.  I must have been trying different things with differently named variables.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lwrkrol on "drop down with posts from certain author"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-with-posts-from-certain-author#post-79535</link>
			<pubDate>Mon, 08 Oct 2012 04:36:53 +0000</pubDate>
			<dc:creator>lwrkrol</dc:creator>
			<guid isPermaLink="false">79535@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;found the problem. $user_id on line 47 should be $userid. It works now&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Luit
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "drop down with posts from certain author"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-with-posts-from-certain-author#post-79519</link>
			<pubDate>Mon, 08 Oct 2012 02:55:14 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">79519@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No, $choices is an array.  Try print_r($choices) and see what shows up.&#60;/p&#62;
&#60;p&#62;Also, please post the complete code you are using to pastebin.com or pastie.org
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lwrkrol on "drop down with posts from certain author"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-with-posts-from-certain-author#post-79518</link>
			<pubDate>Mon, 08 Oct 2012 02:53:30 +0000</pubDate>
			<dc:creator>lwrkrol</dc:creator>
			<guid isPermaLink="false">79518@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi thanks. Tried it but it returns no results. &#60;/p&#62;
&#60;p&#62;Made a few changes:&#60;br /&#62;
- 'gform_pre_render' -&#38;gt; 'gform_pre_render_2' (2 is my form ID)&#60;br /&#62;
- dropdown field for my form = 1&#60;br /&#62;
- Changed the posttype from 'post' to my custom posttype 'shop' (2x)&#60;/p&#62;
&#60;p&#62;Also tried $post_type = 'post' and added a post, no entries found her as well. I use e-mailaddress as loginname. &#60;/p&#62;
&#60;p&#62;When I echo $choices it returns the word Array, shouldn't this be a list of posts?&#60;/p&#62;
&#60;p&#62;Hope you can determine where it's going wrong
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "drop down with posts from certain author"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-with-posts-from-certain-author#post-79478</link>
			<pubDate>Mon, 08 Oct 2012 00:04:24 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">79478@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;So, you want to limit this code to return only posts from one author, but otherwise, this code works fine for you?  If that is the case, try this modified code: &#60;a href=&#34;http://pastebin.com/46wpe9Ss&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/46wpe9Ss&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That is unchanged from the original you linked to, other than restricting the posts to those by the logged in user.  Please test and let us know how that goes.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lwrkrol on "drop down with posts from certain author"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-with-posts-from-certain-author#post-79310</link>
			<pubDate>Sat, 06 Oct 2012 16:37:09 +0000</pubDate>
			<dc:creator>lwrkrol</dc:creator>
			<guid isPermaLink="false">79310@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a dropdown which shows custom post titles. I would like to make a dropdown which is showing only the post titles from the custom posts that were added by the logged on user that is using the dropdown. Looked at &#60;a href=&#34;http://pastie.org/1617402&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/1617402&#60;/a&#62; but don't know where to go from there.&#60;br /&#62;
If anyone can assist, would be much appreciated.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
