<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: get</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: get</description>
<language>en</language>
<pubDate>Tue, 24 Nov 2009 01:04:28 +0000</pubDate>

<item>
<title>jbbrwcky on "How to get Post Title outside the loop"</title>
<link>http://wordpress.org/support/topic/313801#post-1250682</link>
<pubDate>Sun, 18 Oct 2009 17:13:03 +0000</pubDate>
<dc:creator>jbbrwcky</dc:creator>
<guid isPermaLink="false">1250682@http://wordpress.org/support/</guid>
<description>&#60;p&#62;On the same subject, I have a bit of code that outputs a 'you are here' kind of thing, but it gets displayed before the loop.&#60;/p&#62;
&#60;p&#62;How do I get the single_post_title() for that post when the code generating it is before the loop?
&#60;/p&#62;</description>
</item>
<item>
<title>Crispijn on "Mutiple parameters in url"</title>
<link>http://wordpress.org/support/topic/316459#post-1245919</link>
<pubDate>Wed, 14 Oct 2009 08:58:57 +0000</pubDate>
<dc:creator>Crispijn</dc:creator>
<guid isPermaLink="false">1245919@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Anyone?&#60;/p&#62;
&#60;p&#62;I've fine-tuned the rewriterule into this one but this doesn't solve my problem&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function do_rewrite_test() {
    add_rewrite_rule(&#38;#39;gear/([^/]+)/([^/]+)/?$&#38;#39;, &#38;#39;index.php?pagename=gear&#38;amp;myvar1=$matches[1]&#38;amp;myvar2=$matches[2]&#38;#39;,&#38;#39;top&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Dunkkan on "audio files in sidebar"</title>
<link>http://wordpress.org/support/topic/232140#post-1235161</link>
<pubDate>Mon, 05 Oct 2009 00:47:33 +0000</pubDate>
<dc:creator>Dunkkan</dc:creator>
<guid isPermaLink="false">1235161@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi MyRivne, yes it works. The only thing is you must UPLOAD via the Editor the audio stuff (and, to do that, you must probably change in one of the server files, called php.ini, the uploading power, because an mp3 is usually a lot bigger than normal images).
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "Redirect blog"</title>
<link>http://wordpress.org/support/topic/317595#post-1234558</link>
<pubDate>Sun, 04 Oct 2009 12:57:43 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1234558@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Can only guess this might help you:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/wp_redirect&#34;&#62;Function_Reference/wp_redirect&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>alexbilbie on "Redirect blog"</title>
<link>http://wordpress.org/support/topic/317595#post-1234493</link>
<pubDate>Sun, 04 Oct 2009 11:25:00 +0000</pubDate>
<dc:creator>alexbilbie</dc:creator>
<guid isPermaLink="false">1234493@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm trying to make a very simple plugin that will redirect a blog post to another page if a query string is present.&#60;/p&#62;
&#60;p&#62;Here is my code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function triplify_init()
{
	global $blog_id;
	if(isset($_REQUEST[&#38;#39;triplify&#38;#39;]))
	{
		$http = &#38;#39;http://&#38;#39;;
		$https = $_SERVER[&#38;#39;HTTPS&#38;#39;];
		if(!empty($https)){
			$http = &#38;#39;https://&#38;#39;;
		}
		header(&#38;#39;Location: &#38;#39;.$http.$_SERVER[&#38;#39;SERVER_NAME&#38;#39;].&#38;#39;/triplify/&#38;#39;.$blog_id.&#38;#39;/&#38;#39;);
		exit();
	}
}
add_action(&#38;#39;init&#38;#39;, triplify_init());&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The plugin is activated however if I go to &#60;a href=&#34;http://example.com/?triplify&#34; rel=&#34;nofollow&#34;&#62;http://example.com/?triplify&#60;/a&#62; nothing happens (it just loads the page like normal) however if I go to &#60;a href=&#34;http://example.com/wp-admin/?triplify&#34; rel=&#34;nofollow&#34;&#62;http://example.com/wp-admin/?triplify&#60;/a&#62; the plugin does run.&#60;/p&#62;
&#60;p&#62;My understanding is that the init action should run regardless of what page you're looking at.&#60;/p&#62;
&#60;p&#62;Can anyone point me in the direction please?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Shane G on "Fatal error: Call to undefined function get_option()"</title>
<link>http://wordpress.org/support/topic/223861#post-1233443</link>
<pubDate>Sat, 03 Oct 2009 04:35:55 +0000</pubDate>
<dc:creator>Shane G</dc:creator>
<guid isPermaLink="false">1233443@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Upload a fresh copy of wp-includes and wp-admin folder with all the files and folder on the server. Also check with upgrading wordpress blog.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Shane G.
&#60;/p&#62;</description>
</item>
<item>
<title>gtvitini on "Fatal error: Call to undefined function get_option()"</title>
<link>http://wordpress.org/support/topic/223861#post-1233137</link>
<pubDate>Fri, 02 Oct 2009 20:31:08 +0000</pubDate>
<dc:creator>gtvitini</dc:creator>
<guid isPermaLink="false">1233137@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I know that both of you will be happy with this!&#60;/p&#62;
&#60;p&#62;I went to the /wp-includes folder and I uploaded again the following files:&#60;br /&#62;
-functions.php&#60;br /&#62;
-functions.wp-scripts.php&#60;br /&#62;
-functions.wp-styles.php&#60;/p&#62;
&#60;p&#62;I guess what you only need to upload is the second file, but don't experiment, upload them all and there you are!&#60;/p&#62;
&#60;p&#62;Ciao
&#60;/p&#62;</description>
</item>
<item>
<title>Crispijn on "Mutiple parameters in url"</title>
<link>http://wordpress.org/support/topic/316459#post-1230421</link>
<pubDate>Wed, 30 Sep 2009 16:23:15 +0000</pubDate>
<dc:creator>Crispijn</dc:creator>
<guid isPermaLink="false">1230421@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi all!&#60;/p&#62;
&#60;p&#62;I'm struggeling with a new plugin I'm writing. I'd like to add a second parameter in the url.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Example&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://mysite.com/page/&#34; rel=&#34;nofollow&#34;&#62;http://mysite.com/page/&#60;/a&#62;&#60;strong&#62;parameter1/parameter2/&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;I've found the solution for one parameter in &#60;a href=&#34;http://wordpress.org/support/topic/208830?replies=11&#34;&#62;this topic&#60;/a&#62; but there are no replies on the question how to add +2 custom parameters. I've tried this so far:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function add_gear_var($public_query_vars) {
    $public_query_vars[] = &#38;#39;myvar1&#38;#39;;
	$public_query_vars[] = &#38;#39;myvar2&#38;#39;;
    return $public_query_vars;
}

function do_rewrite_test() {
    add_rewrite_rule(&#38;#39;gear/([^/]+)/?$&#38;#39;, &#38;#39;index.php?pagename=gear&#38;amp;myvar1=$matches[1]&#38;amp;myvar2=$matches[2]&#38;#39;,&#38;#39;top&#38;#39;);
}

add_action(&#38;#39;init&#38;#39;, &#38;#39;do_rewrite_test&#38;#39;);

//and in my function just get the parameters like this:
function test(){
$var1 = get_query_var(&#38;#39;myvar1&#38;#39;);
$var2 = get_query_var(&#38;#39;myvar2&#38;#39;);

//doing stuff with var 1 works correct, var2 is still empty, not set so I get the 404 not found page.
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I hope there's someone out there that knows the answer!&#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>ardyonline on "How to get post ID?"</title>
<link>http://wordpress.org/support/topic/314314#post-1224216</link>
<pubDate>Fri, 25 Sep 2009 05:19:47 +0000</pubDate>
<dc:creator>ardyonline</dc:creator>
<guid isPermaLink="false">1224216@http://wordpress.org/support/</guid>
<description>&#60;p&#62;thanks MichaelH!&#60;br /&#62;
it enlightens me, it really helps!
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "How to get post ID?"</title>
<link>http://wordpress.org/support/topic/314314#post-1223213</link>
<pubDate>Thu, 24 Sep 2009 13:36:37 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1223213@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Something like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
$cat = 47; //category id
$posts=get_posts(&#38;#39;showposts=-1&#38;amp;cat=&#38;#39;. $cat);
if ($posts) {
foreach($posts as $post) {
echo &#38;quot;&#38;lt;pre&#38;gt;&#38;quot;; print_r($post-&#38;gt;ID); echo &#38;quot;&#38;lt;/pre&#38;gt;&#38;quot;;
}
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>ardyonline on "How to get post ID?"</title>
<link>http://wordpress.org/support/topic/314314#post-1222973</link>
<pubDate>Thu, 24 Sep 2009 07:43:30 +0000</pubDate>
<dc:creator>ardyonline</dc:creator>
<guid isPermaLink="false">1222973@http://wordpress.org/support/</guid>
<description>&#60;p&#62;How to get all post ID in a certain category? and put the result in a array variable?&#60;/p&#62;
&#60;p&#62;$var = array(1,6,11);&#60;/p&#62;
&#60;p&#62;where 1, 6, 11 are the postID of specific category.
&#60;/p&#62;</description>
</item>
<item>
<title>Jason_333 on "How to get Post Title outside the loop"</title>
<link>http://wordpress.org/support/topic/313801#post-1221218</link>
<pubDate>Tue, 22 Sep 2009 22:13:29 +0000</pubDate>
<dc:creator>Jason_333</dc:creator>
<guid isPermaLink="false">1221218@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks guys, esmi: &#38;lt;?php single_post_title(); ?&#38;gt; did the trick. Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "How to get Post Title outside the loop"</title>
<link>http://wordpress.org/support/topic/313801#post-1221187</link>
<pubDate>Tue, 22 Sep 2009 21:43:52 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1221187@http://wordpress.org/support/</guid>
<description>&#60;p&#62;How about using &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_title&#34;&#62;wp_title()&#60;/a&#62; or &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/single_post_title&#34;&#62;single_post_title()&#60;/a&#62;?
&#60;/p&#62;</description>
</item>
<item>
<title>sribharath on "How to get Post Title outside the loop"</title>
<link>http://wordpress.org/support/topic/313801#post-1221185</link>
<pubDate>Tue, 22 Sep 2009 21:41:45 +0000</pubDate>
<dc:creator>sribharath</dc:creator>
<guid isPermaLink="false">1221185@http://wordpress.org/support/</guid>
<description>&#60;p&#62;dint get u exactly ...&#60;/p&#62;
&#60;p&#62;but try this &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul&#38;gt;
		&#38;lt;?php
      $catposts = get_posts(&#38;#39;numberposts=10&#38;amp;category=17&#38;#39;);
      foreach($catposts as $post) :
   ?&#38;gt;
   &#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
   &#38;lt;?php endforeach; ?&#38;gt;
	&#38;lt;/ul&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you can use this for showing only titles of post from a partioular category...here 10 is the number of posts and 17 is the category id
&#60;/p&#62;</description>
</item>
<item>
<title>Jason_333 on "How to get Post Title outside the loop"</title>
<link>http://wordpress.org/support/topic/313801#post-1221170</link>
<pubDate>Tue, 22 Sep 2009 21:31:16 +0000</pubDate>
<dc:creator>Jason_333</dc:creator>
<guid isPermaLink="false">1221170@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I noticed &#38;lt;?php the_title(); ?&#38;gt; doesn't work outside the loop. What would be a good way of calling the post title outside the loop.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>tomasi514 on "How to get top parent (id or name?)"</title>
<link>http://wordpress.org/support/topic/312146#post-1219643</link>
<pubDate>Mon, 21 Sep 2009 19:43:21 +0000</pubDate>
<dc:creator>tomasi514</dc:creator>
<guid isPermaLink="false">1219643@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thank you very much, that helped me a lot indeed.
&#60;/p&#62;</description>
</item>
<item>
<title>stvwlf on "How to get top parent (id or name?)"</title>
<link>http://wordpress.org/support/topic/312146#post-1215575</link>
<pubDate>Thu, 17 Sep 2009 21:15:35 +0000</pubDate>
<dc:creator>stvwlf</dc:creator>
<guid isPermaLink="false">1215575@http://wordpress.org/support/</guid>
<description>&#60;p&#62;See if this helps you&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_post_ancestors&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/get_post_ancestors&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>tomasi514 on "How to get top parent (id or name?)"</title>
<link>http://wordpress.org/support/topic/312146#post-1215567</link>
<pubDate>Thu, 17 Sep 2009 21:09:56 +0000</pubDate>
<dc:creator>tomasi514</dc:creator>
<guid isPermaLink="false">1215567@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am using parents and parents of parents, etc. on my website.&#60;br /&#62;
How can I get the top parent of a page? (this page could be child or gran child, gran grand child, etc.)&#60;br /&#62;
Is this possible?&#60;br /&#62;
I know post_parent exists but I do not know what I can do with it here.
&#60;/p&#62;</description>
</item>
<item>
<title>stvwlf on "How to use forms in Wordpress"</title>
<link>http://wordpress.org/support/topic/311855#post-1214606</link>
<pubDate>Thu, 17 Sep 2009 02:12:25 +0000</pubDate>
<dc:creator>stvwlf</dc:creator>
<guid isPermaLink="false">1214606@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi Rowan&#60;/p&#62;
&#60;p&#62;I'd suggest you create a custom page template for the forms page and add your PHP code into the template page.  You can bypass the page content altogether if its not needed.  Then you can treat it like a regular PHP file yet WP will  display it as part of your site.&#60;/p&#62;
&#60;p&#62;Start by pasting the code from page.php into a new template file (page_form.php ?? ).&#60;br /&#62;
Add this code at the top of the new file.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Template Name: MyForm
*/
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then go into the WP editor for that page, and set the Template pulldown to MyForm.  That tells WP to use your custom template when displaying the contents of that page.&#60;/p&#62;
&#60;p&#62;See &#60;a href=&#34;http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates&#60;/a&#62; for more details.
&#60;/p&#62;</description>
</item>
<item>
<title>rowan.bradley on "How to use forms in Wordpress"</title>
<link>http://wordpress.org/support/topic/311855#post-1214499</link>
<pubDate>Wed, 16 Sep 2009 23:42:37 +0000</pubDate>
<dc:creator>rowan.bradley</dc:creator>
<guid isPermaLink="false">1214499@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I want to add a page to my Wordpress site that contains a form. On displaying the page, the form needs to be populated from a new table that I will add to the MySQL database. The user can then change the data on the form, and click a Submit button. I then need another Wordpress page to process the values returned from the form, insert them in the database, and send the user a confirmatory e-mail message.&#60;/p&#62;
&#60;p&#62;What's the easiest way of doing this?&#60;/p&#62;
&#60;p&#62;My questions are:&#60;br /&#62;
1. Can I just include the PHP to generate the form and populate it from the database in my Wordpress page, maybe using the Exec-PHP plugin?&#60;br /&#62;
2. What do I put in the Action attribute of the form element? Do I just put the permalink to the form processing page in here?&#60;br /&#62;
3. In my form processing page, how do I access the returned values from the form? Can I just access $_POST[] like I would in PHP?&#60;br /&#62;
4. Can I send e-mail from my form processing page? What's the best way of doing this?&#60;/p&#62;
&#60;p&#62;Thanks - Rowan
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "can i Get post content"</title>
<link>http://wordpress.org/support/topic/311540#post-1214384</link>
<pubDate>Wed, 16 Sep 2009 21:38:12 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1214384@http://wordpress.org/support/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;is it possible?!&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Yes&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Theme_Development&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Theme_Development&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>t31os_ on "Need to GET the slug value for use in another data table..."</title>
<link>http://wordpress.org/support/topic/310725#post-1213654</link>
<pubDate>Wed, 16 Sep 2009 10:55:03 +0000</pubDate>
<dc:creator>t31os_</dc:creator>
<guid isPermaLink="false">1213654@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Glad i could help.. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jim R on "Need to GET the slug value for use in another data table..."</title>
<link>http://wordpress.org/support/topic/310725#post-1213522</link>
<pubDate>Wed, 16 Sep 2009 06:35:42 +0000</pubDate>
<dc:creator>Jim R</dc:creator>
<guid isPermaLink="false">1213522@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Uhm...yeah....it worked.  I forgot to activate it.  :)&#60;/p&#62;
&#60;p&#62;The more I looked at it, the more the code made sense.  I get stuck with all the variables.  I was thinking of digging in tomorrow and making a function, and it dawned on me that I had not activated it.  I was trying to figure out how the plugin worked since I didn't a-c-t-i-v-a-t-e it...DOH!!!&#60;/p&#62;
&#60;p&#62;Pretty cool.  Pretty impressive.  Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>maniiiiac on "can i Get post content"</title>
<link>http://wordpress.org/support/topic/311540#post-1213480</link>
<pubDate>Wed, 16 Sep 2009 05:23:47 +0000</pubDate>
<dc:creator>maniiiiac</dc:creator>
<guid isPermaLink="false">1213480@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi, I made a custom page for myself. . . and have a DIV in a part of template&#60;/p&#62;
&#60;p&#62;i want to load Post content in  DIV. . . is it possible?!&#60;br /&#62;
what code i do?!!
&#60;/p&#62;</description>
</item>
<item>
<title>Jim R on "Need to GET the slug value for use in another data table..."</title>
<link>http://wordpress.org/support/topic/310725#post-1213332</link>
<pubDate>Wed, 16 Sep 2009 01:24:31 +0000</pubDate>
<dc:creator>Jim R</dc:creator>
<guid isPermaLink="false">1213332@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Edited this entry.
&#60;/p&#62;</description>
</item>
<item>
<title>Jim R on "Need to GET the slug value for use in another data table..."</title>
<link>http://wordpress.org/support/topic/310725#post-1213326</link>
<pubDate>Wed, 16 Sep 2009 01:18:37 +0000</pubDate>
<dc:creator>Jim R</dc:creator>
<guid isPermaLink="false">1213326@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I created the file and saved it in the plugins folder.  It's not Updating my custom table with the Tag ID in the appropriate row.
&#60;/p&#62;</description>
</item>
<item>
<title>t31os_ on "Need to GET the slug value for use in another data table..."</title>
<link>http://wordpress.org/support/topic/310725#post-1213295</link>
<pubDate>Wed, 16 Sep 2009 00:36:11 +0000</pubDate>
<dc:creator>t31os_</dc:creator>
<guid isPermaLink="false">1213295@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Other then activating it yes that's it..&#60;/p&#62;
&#60;p&#62;You'll have to adjust it in the necessary areas.. but yes for the most part i've just saved you all the trouble of writing one... ;)&#60;/p&#62;
&#60;p&#62;I'm not a developer though, so i'll make no guarantees about how well it will work and whether the methods are safe....&#60;/p&#62;
&#60;p&#62;I've given you a starting point if it needs improvement in any case.. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jim R on "Need to GET the slug value for use in another data table..."</title>
<link>http://wordpress.org/support/topic/310725#post-1213227</link>
<pubDate>Tue, 15 Sep 2009 23:39:33 +0000</pubDate>
<dc:creator>Jim R</dc:creator>
<guid isPermaLink="false">1213227@http://wordpress.org/support/</guid>
<description>&#60;p&#62;And it's just going to work?  I don't have to call the function or include the file anywhere?  :)
&#60;/p&#62;</description>
</item>
<item>
<title>t31os_ on "Need to GET the slug value for use in another data table..."</title>
<link>http://wordpress.org/support/topic/310725#post-1212760</link>
<pubDate>Tue, 15 Sep 2009 18:06:32 +0000</pubDate>
<dc:creator>t31os_</dc:creator>
<guid isPermaLink="false">1212760@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Just create a file in the plugins folder..&#60;/p&#62;
&#60;p&#62;Call it anything you like (with a .php extension), then plonk the code in, rename the value next to S_DB, so &#34;wp_test&#34; was my test table (rename that to suit)..&#60;/p&#62;
&#60;p&#62;It's not perfect, but i was eager to see if i could do it.. the bottom query was interesting, not used the &#34;case&#34; statement in mysql queries before....(googled for &#34;php mysql update multiple rows single query&#34;)..&#60;/p&#62;
&#60;p&#62;Let me know how it works out for you... :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jim R on "Need to GET the slug value for use in another data table..."</title>
<link>http://wordpress.org/support/topic/310725#post-1212688</link>
<pubDate>Tue, 15 Sep 2009 17:12:36 +0000</pubDate>
<dc:creator>Jim R</dc:creator>
<guid isPermaLink="false">1212688@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You can use regular MySQL functions inside WP, at least through PHP.  I'm using them in a couple of places, just standard Select commands.  I was able to do it with my custom table in its own database, but that did create conflicts with some widgets.  Moving the table to my WP database eliminated those conflicts. &#60;/p&#62;
&#60;p&#62;Which file are you calling or putting that function?&#60;/p&#62;
&#60;p&#62;Where are you defining which table to Update?  I've been testing the on the backup one.  I'd need to change it eventually.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
