<?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>muzin &#187; WordPressカスタマイズ</title>
	<atom:link href="http://www.muzin.org/wp/category/wp-customize/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.muzin.org/wp</link>
	<description>PHPとか、JavaScriptとか、YomiSearch用の無料テンプレートを配布したり、ツールを作ったりしてます。</description>
	<lastBuildDate>Sat, 17 Oct 2020 12:11:57 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>WordPress &#8211; API keyの取得</title>
		<link>http://www.muzin.org/wp/wp-customize/api-key_38/</link>
		<comments>http://www.muzin.org/wp/wp-customize/api-key_38/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 10:16:45 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[WordPressカスタマイズ]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/wp-customize/api-key_38/</guid>
		<description><![CDATA[WordPress用のスパム対策プラグインAkismetを導入するために、API keyを取得しました。 AkismetはWordpress2.0以降は標準で付属していますので、管理画面の「プラグイン」から有効化できますが、有効化するためにはWordPress API keyが必要です。 というわけで、Wordpress API keyの取得方法についてメモ書き。 http://wordpress.com/に行き、右上の「Sign Up」から登録する。 Username:　任意のユーザー名 Password:　パスワード Confirm:　 パスワードをもう一度入力 Email Address: メールアドレス 「I have read and agree to the fascinating terms of service.」（規約に同意します）にチェックを入れる Gimme a blog! (Like username.wordpress.com) Just a username, please. のどちらかを選択。 Gimme というのは、Give &#8230; <a href="http://www.muzin.org/wp/wp-customize/api-key_38/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/wp-customize/api-key_38/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>該当する記事が見つかりません</title>
		<link>http://www.muzin.org/wp/wp-customize/aoeuoaetho_32/</link>
		<comments>http://www.muzin.org/wp/wp-customize/aoeuoaetho_32/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 00:52:04 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[WordPressカスタマイズ]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/wp-customize/aoeuoaetho_32/</guid>
		<description><![CDATA[ちょっと前までパーマリンクをクリックすると、 「該当する記事が見つかりません」 と表示されて記事が見えずに困っていたのですが、 パーマリンクのカスタム構造をほんの少しいじっただけで、きちんと表示されるようになりました。 ×ダメだった例 /%category%/%postname%%post_id%/ ○よい例 /%category%/%postname%_%post_id%/ %が連続するとダメなのでしょうか？？]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/wp-customize/aoeuoaetho_32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wp_head()の使用法（プラグインが動作しない時）</title>
		<link>http://www.muzin.org/wp/wp-customize/wp-head-usage_13/</link>
		<comments>http://www.muzin.org/wp/wp-customize/wp-head-usage_13/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 21:49:05 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[WordPressカスタマイズ]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/diary/wp-head-usage/</guid>
		<description><![CDATA[WordPressのテンプレートをいじっていたら、wp_head()なる関数がありました。 &#60;head&#62;〜&#60;/head&#62; の間に &#60;?php wp_head(); ?&#62;として出てくるやつです。 何かと思って調べてみたところ、どうやらユーザー側でタグ（というよりPHP構文）を代入できる機能のようです。 wp_headだけでなく、admin_menuとかadmin_headとかも同じ類のようですね。 使い方をメモ書き程度に残しておきます。 プラグインが動作しない時にはチェックしてみると良いかもしれません。 使用可能条件 現在使っているテンプレート（テーマ）の中に、&#60;?php wp_head(); ?&#62;というタグが含まれていること。 挙動 WordPress用テンプレート（テーマ）の中に含まれる functions.php に add_action('wp_head', 'myfunction'); という文が記述されている場合に、functions.phpに書かれているmyfunctionをPHPとして実行する。 使用例 テンプレートに&#60;?php wp_head(); ?&#62;というタグが含まれているものとします。 WordPressの管理画面から、表示＞テーマエディタ＞functions.phpと開き、次のように関数を記述します。 （もちろん、直接ファイルをアップロードしてもＯＫです） &#60;?php function myfunction() { echo '&#60;style type="text/css"&#62;&#60;!-- a{color:#00FF00;}--&#62;&#60;/style&#62;'; } add_action('wp_head', 'myfunction');?&#62; すると&#60;?php wp_head(); &#8230; <a href="http://www.muzin.org/wp/wp-customize/wp-head-usage_13/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/wp-customize/wp-head-usage_13/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>パーマリンクにカテゴリ名を含める</title>
		<link>http://www.muzin.org/wp/wp-customize/permalink-category_12/</link>
		<comments>http://www.muzin.org/wp/wp-customize/permalink-category_12/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 21:23:10 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[WordPressカスタマイズ]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/wp-customize/ynythyeyoyeyyaeyyeiothae/</guid>
		<description><![CDATA[パーマリンクにカテゴリ名を含めてみました。 WPの管理画面の「オプション」＞「パーマリンク設定」より。 「独自表記を以下の入力欄に記述」を選択して、独自表記を書き入れます。 ちなみに現在、このブログは /%category%/%postname%/ という設定になってます。 ちなみにサブカテゴリを入れている場合は、%category% でネストされるようです。 パーマリンクに使用できるタグおよび詳細はこちらを参照。 Using Permalinks &#8211; WPJ_Codex]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/wp-customize/permalink-category_12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPressで”続きを読む”を導入</title>
		<link>http://www.muzin.org/wp/wp-customize/wordpress-tudukiyomu_11/</link>
		<comments>http://www.muzin.org/wp/wp-customize/wordpress-tudukiyomu_11/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 21:11:34 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[WordPressカスタマイズ]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/diary/wordpressceaoaeeaeoaeaeth/</guid>
		<description><![CDATA[WordPressで”続きを読む”を導入する方法がいまいち分からなかったのですが、 投稿画面の&#60;!&#8211;more&#8211;&#62;を使うことでできるようです。 ここまでは&#60;!&#8211;more&#8211;&#62;より上部の内容です。 ここから下は&#60;!&#8211;more&#8211;&#62;の内容です。 きちんと分けられています＾＾]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/wp-customize/wordpress-tudukiyomu_11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress のアドレス変更で再インストール</title>
		<link>http://www.muzin.org/wp/wp-customize/wp-address-install_6/</link>
		<comments>http://www.muzin.org/wp/wp-customize/wp-address-install_6/#comments</comments>
		<pubDate>Thu, 25 Jan 2007 12:25:06 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[WordPressカスタマイズ]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/2007/wp-address-install/</guid>
		<description><![CDATA[管理画面のオプションから「WordPress のアドレス (URI)」を変更できるのですが、これを間違ったアドレスにしてしまったために、ログインができなくなるという大変な事態に・・・。 WordPressは設定もデータベース（MySQL）の方に保存しているようなので、FTPで接続して設定ファイルをいじったりっていうことができないんですよね。 仕方が無いので、MySQLを削除＆再作成して、もう一度ブログを作り直しました。 記事の数が少なかったのがせめてもの救いです。 WordPress のアドレスの設定を変更する際は、間違いの無いようにお気をつけください。]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/wp-customize/wp-address-install_6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
