<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ＩＳプランニング &#187; 関数 備忘録</title>
	<atom:link href="http://www.is-p.cc/category/wordpress/function-tips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.is-p.cc</link>
	<description>WordPress 2.6</description>
	<lastBuildDate>Wed, 07 Jul 2010 01:28:46 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>独自関数の引数の取り方について</title>
		<link>http://www.is-p.cc/wordpress/function-tips/wp_parse_args/572</link>
		<comments>http://www.is-p.cc/wordpress/function-tips/wp_parse_args/572#comments</comments>
		<pubDate>Mon, 12 Jan 2009 00:13:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[関数 備忘録]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[WordPress備忘録]]></category>
		<category><![CDATA[wp_parse_args]]></category>
		<category><![CDATA[引数]]></category>
		<category><![CDATA[関数]]></category>

		<guid isPermaLink="false">http://www.is-p.cc/?p=572</guid>
		<description><![CDATA[独自関数を作成する場合に引数を受け取ったりしますが、query_postsのように、
query_posts('cat=5&#038;order=DESC')
のような形式にしたい場合の方法です。

wp_parse_a [...]]]></description>
		<wfw:commentRss>http://www.is-p.cc/wordpress/function-tips/wp_parse_args/572/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>投稿IDを取得する</title>
		<link>http://www.is-p.cc/wordpress/function-tips/post_id/344</link>
		<comments>http://www.is-p.cc/wordpress/function-tips/post_id/344#comments</comments>
		<pubDate>Wed, 17 Sep 2008 05:45:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[関数 備忘録]]></category>
		<category><![CDATA[$post_ID]]></category>

		<guid isPermaLink="false">http://www.is-p.cc/?p=344</guid>
		<description><![CDATA[現在表示されている記事の投稿IDを取得する。


投稿IDを取得するには「$post->ID」で取得できる。
らしいのですが、管理画面（記事編集画面）では何故か利きません。
代わりに利用したのが以下。

PLAIN TE [...]]]></description>
		<wfw:commentRss>http://www.is-p.cc/wordpress/function-tips/post_id/344/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ユーザーIDを取得する</title>
		<link>http://www.is-p.cc/wordpress/function-tips/get_currentuserinfo/332</link>
		<comments>http://www.is-p.cc/wordpress/function-tips/get_currentuserinfo/332#comments</comments>
		<pubDate>Wed, 17 Sep 2008 04:41:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[関数 備忘録]]></category>
		<category><![CDATA[get_currentuserinfo]]></category>

		<guid isPermaLink="false">http://www.is-p.cc/?p=332</guid>
		<description><![CDATA[現在ログインしているユーザーIDを取得します。

get_currentuserinfo()
PLAIN TEXT
PHP:




global $user_ID;


//ユーザー情報を取得


get_curren [...]]]></description>
		<wfw:commentRss>http://www.is-p.cc/wordpress/function-tips/get_currentuserinfo/332/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>サブメニューにプラグイン設定画面を表示させる</title>
		<link>http://www.is-p.cc/wordpress/function-tips/submenu-add/314</link>
		<comments>http://www.is-p.cc/wordpress/function-tips/submenu-add/314#comments</comments>
		<pubDate>Tue, 16 Sep 2008 01:23:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[関数 備忘録]]></category>
		<category><![CDATA[add_options_page]]></category>
		<category><![CDATA[admin_menu]]></category>

		<guid isPermaLink="false">http://www.is-p.cc/?p=314</guid>
		<description><![CDATA[
独自プラグインの設定画面を作成するのに必要なのは「admin_menu」と「add_options_page」。



プラグインを作成し、設定値を保存する時に、「wp_options」というデータベースに保存すれば良 [...]]]></description>
		<wfw:commentRss>http://www.is-p.cc/wordpress/function-tips/submenu-add/314/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>プラグイン設定値の保存先について</title>
		<link>http://www.is-p.cc/wordpress/function-tips/wp_options/302</link>
		<comments>http://www.is-p.cc/wordpress/function-tips/wp_options/302#comments</comments>
		<pubDate>Fri, 05 Sep 2008 00:43:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[関数 備忘録]]></category>
		<category><![CDATA[add_option]]></category>
		<category><![CDATA[get_option]]></category>
		<category><![CDATA[update_option]]></category>
		<category><![CDATA[wp_options]]></category>

		<guid isPermaLink="false">http://www.is-p.cc/?p=302</guid>
		<description><![CDATA[プラグインの設定値の保存先はwp_optionsというテーブルが良いみたいです。


気になったのが、他のプラグインでは設定値をどこに保存しているのか、という事。
どうも単純にテキストデータでフォルダ内に保存している、と [...]]]></description>
		<wfw:commentRss>http://www.is-p.cc/wordpress/function-tips/wp_options/302/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
