<?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, 25 Jan 2012 00:14:10 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>$wpdbの機能をAjax等で利用する場合</title>
		<link>http://www.is-p.cc/wordpress/function-tips/use-wpdb/779</link>
		<comments>http://www.is-p.cc/wordpress/function-tips/use-wpdb/779#comments</comments>
		<pubDate>Mon, 27 Dec 2010 05:36:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[関数 備忘録]]></category>
		<category><![CDATA[$wpdb]]></category>
		<category><![CDATA[AJAX]]></category>

		<guid isPermaLink="false">http://www.is-p.cc/?p=779</guid>
		<description><![CDATA[Ajaxの利用等で通常のアクセスとは異なる方法で$wpdbを使いたい場合、以下のファイルを読み込めば利用できるようになります。 後は通常どおり「 global $wpdb; 」とグローバル宣言して使います。 どこかの英語 [...]]]></description>
		<wfw:commentRss>http://www.is-p.cc/wordpress/function-tips/use-wpdb/779/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>カテゴリーの並び替えにはカスタムメニューのデータを利用する</title>
		<link>http://www.is-p.cc/wordpress/function-tips/wp_nav_menu-wp_get_nav_menu_items/753</link>
		<comments>http://www.is-p.cc/wordpress/function-tips/wp_nav_menu-wp_get_nav_menu_items/753#comments</comments>
		<pubDate>Fri, 24 Sep 2010 06:29:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[関数 備忘録]]></category>
		<category><![CDATA[wp_get_nav_menu_items]]></category>
		<category><![CDATA[wp_nav_menu-wp]]></category>

		<guid isPermaLink="false">http://www.is-p.cc/?p=753</guid>
		<description><![CDATA[カスタムメニュー機能で作成したリストを他で利用する方法です。]]></description>
		<wfw:commentRss>http://www.is-p.cc/wordpress/function-tips/wp_nav_menu-wp_get_nav_menu_items/753/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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_ar [...]]]></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」で取得できる。 らしいのですが、管理画面（記事編集画面）では何故か利きません。 代わりに利用したのが以下。 これで「$post_I [...]]]></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() この２行を追加すると「$user_ID」に現在のユーザーIDが取得できます。 他にも 色々な情報が取れるみたいです。 詳しい利用 [...]]]></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>1</slash:comments>
		</item>
	</channel>
</rss>

