<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wpdocs.sourceforge.jp/wiki/skins/common/feed.css?301"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=%E7%89%B9%E5%88%A5:%E6%9C%80%E8%BF%91%E3%81%AE%E6%9B%B4%E6%96%B0&amp;feed=atom</id>
		<title>WordPress Codex 日本語版  - 最近の更新 [ja]</title>
		<link rel="self" type="application/atom+xml" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=%E7%89%B9%E5%88%A5:%E6%9C%80%E8%BF%91%E3%81%AE%E6%9B%B4%E6%96%B0&amp;feed=atom"/>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/%E7%89%B9%E5%88%A5:%E6%9C%80%E8%BF%91%E3%81%AE%E6%9B%B4%E6%96%B0"/>
		<updated>2012-05-15T16:58:04Z</updated>
		<subtitle>このフィードでそのウィキへの最近の更新を追跡。</subtitle>
		<generator>MediaWiki 1.17.0</generator>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=Administration_Screens&amp;diff=5146&amp;oldid=prev</id>
		<title>Administration Screens</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=Administration_Screens&amp;diff=5146&amp;oldid=prev"/>
				<updated>2012-05-15T16:55:26Z</updated>
		
		<summary type="html">&lt;p&gt;日本語ページへ転送&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[管理画面]]&lt;/div&gt;</summary>
		<author><name>Bono</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=Appearance_Header_Screen&amp;diff=5145&amp;oldid=prev</id>
		<title>Appearance Header Screen</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=Appearance_Header_Screen&amp;diff=5145&amp;oldid=prev"/>
				<updated>2012-05-15T15:48:22Z</updated>
		
		<summary type="html">&lt;p&gt;日本語ページに転送&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[管理画面/外観/ヘッダー]]&lt;/div&gt;</summary>
		<author><name>Bono</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=Custom_Headers&amp;diff=5144&amp;oldid=prev</id>
		<title>Custom Headers</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=Custom_Headers&amp;diff=5144&amp;oldid=prev"/>
				<updated>2012-05-15T15:47:06Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;http://codex.wordpress.org/Custom_Headers&quot; class=&quot;extiw&quot; title=&quot;en:Custom Headers&quot;&gt;en:Custom Headers&lt;/a&gt; 2012-05-15T15:26:15 Bono 版を翻訳用にコピー&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{NeedTrans}}&lt;br /&gt;
&lt;br /&gt;
'''Custom Header''' is a [[Theme Features|theme feature]] introduced with [[Version 2.1]]. Custom header is an image that is chosen as the representative image in the theme top header section.&lt;br /&gt;
&lt;br /&gt;
See also [[Appearance Header Screen]].&lt;br /&gt;
&lt;br /&gt;
== Adding Theme Support ==&lt;br /&gt;
&lt;br /&gt;
Since [[Version 3.4]], themes need to use [[Function_Reference/add_theme_support|add_theme_support()]] in the [[Theme_Development#Functions_File|functions.php]] file to supports custom headers, like so:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;add_theme_support( 'custom-header' );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that you can add default arguments using:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$defaults = array(&lt;br /&gt;
	'default-image'          =&amp;gt; '',&lt;br /&gt;
	'random-default'         =&amp;gt; false,&lt;br /&gt;
	'width'                  =&amp;gt; 0,&lt;br /&gt;
	'height'                 =&amp;gt; 0,&lt;br /&gt;
	'flex-height'            =&amp;gt; false,&lt;br /&gt;
	'flex-width'             =&amp;gt; false,&lt;br /&gt;
	'default-text-color'     =&amp;gt; '',&lt;br /&gt;
	'header-text'            =&amp;gt; true,&lt;br /&gt;
	'uploads'                =&amp;gt; true,&lt;br /&gt;
	'wp-head-callback'       =&amp;gt; '',&lt;br /&gt;
	'admin-head-callback'    =&amp;gt; '',&lt;br /&gt;
	'admin-preview-callback' =&amp;gt; '',&lt;br /&gt;
);&lt;br /&gt;
add_theme_support( 'custom-header', $defaults );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
=== Set a custom header image ===&lt;br /&gt;
&lt;br /&gt;
Set a default header image 980px width and 60px height:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$args = array(&lt;br /&gt;
	'width'         =&amp;gt; 980,&lt;br /&gt;
	'height'        =&amp;gt; 60,&lt;br /&gt;
	'default-image' =&amp;gt; get_template_directory_uri() . '/images/header.jpg',&lt;br /&gt;
);&lt;br /&gt;
add_theme_support( 'custom-header', $args );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Upload other custom header images ===&lt;br /&gt;
&lt;br /&gt;
Set a default header image and allow the site owner to upload other images:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$args = array(&lt;br /&gt;
	'width'         =&amp;gt; 980,&lt;br /&gt;
	'height'        =&amp;gt; 60,&lt;br /&gt;
	'default-image' =&amp;gt; get_template_directory_uri() . '/images/header.jpg',&lt;br /&gt;
	'uploads'       =&amp;gt; true,&lt;br /&gt;
);&lt;br /&gt;
add_theme_support( 'custom-header', $args );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Use flexible headers ===&lt;br /&gt;
&lt;br /&gt;
Set flexible headers:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$args = array(&lt;br /&gt;
	'flex-width'    =&amp;gt; true,&lt;br /&gt;
	'width'         =&amp;gt; 980,&lt;br /&gt;
	'flex-width'    =&amp;gt; true,&lt;br /&gt;
	'height'        =&amp;gt; 200,&lt;br /&gt;
	'default-image' =&amp;gt; get_template_directory_uri() . '/images/header.jpg',&lt;br /&gt;
);&lt;br /&gt;
add_theme_support( 'custom-header', $args );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
update your header.php file to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;&amp;lt;?php header_image(); ?&amp;gt;&amp;quot; height=&amp;quot;&amp;lt;?php echo get_custom_header()-&amp;gt;height; ?&amp;gt;&amp;quot; width=&amp;quot;&amp;lt;?php echo get_custom_header()-&amp;gt;width; ?&amp;gt;&amp;quot; alt=&amp;quot;&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
{{Theme Support}}&lt;br /&gt;
&lt;br /&gt;
{{原文|Custom Headers|117909}}&amp;lt;!-- 2012-05-15T15:26:15 Bono 版 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:上級トピック]]&lt;br /&gt;
[[Category:wp3.4]]&lt;br /&gt;
&lt;br /&gt;
[[en:Custom Headers]]&lt;/div&gt;</summary>
		<author><name>Bono</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=Appearance_Background_Screen&amp;diff=5143&amp;oldid=prev</id>
		<title>Appearance Background Screen</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=Appearance_Background_Screen&amp;diff=5143&amp;oldid=prev"/>
				<updated>2012-05-15T15:42:12Z</updated>
		
		<summary type="html">&lt;p&gt;日本語ページに転送&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[管理画面/外観/背景]]&lt;/div&gt;</summary>
		<author><name>Bono</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=Media_Library_Screen&amp;diff=5142&amp;oldid=prev</id>
		<title>Media Library Screen</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=Media_Library_Screen&amp;diff=5142&amp;oldid=prev"/>
				<updated>2012-05-15T15:38:31Z</updated>
		
		<summary type="html">&lt;p&gt;日本語ページに転送&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;#REDIRECT [[管理画面/メディア/ライブラリ]]&lt;/div&gt;</summary>
		<author><name>Bono</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=Custom_Backgrounds&amp;diff=5141&amp;oldid=prev</id>
		<title>Custom Backgrounds</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=Custom_Backgrounds&amp;diff=5141&amp;oldid=prev"/>
				<updated>2012-05-15T15:34:20Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;http://codex.wordpress.org/Custom_Backgrounds&quot; class=&quot;extiw&quot; title=&quot;en:Custom Backgrounds&quot;&gt;en:Custom Backgrounds&lt;/a&gt; 2012-05-15T15:27:48 Bono 版を翻訳用にコピー&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{NeedTrans}}&lt;br /&gt;
&lt;br /&gt;
'''Custom Backgrounds''' is a [[Theme Features|theme feature]] that provides for customization of the background color and image.&lt;br /&gt;
&lt;br /&gt;
See also [[Appearance Background Screen]].&lt;br /&gt;
&lt;br /&gt;
== Adding Theme Support ==&lt;br /&gt;
&lt;br /&gt;
Since [[Version 3.4]], themes need to use [[Function_Reference/add_theme_support|add_theme_support()]] in the [[Theme_Development#Functions_File|functions.php]] file to supports custom backgrounds, like so:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;add_theme_support( 'custom-background' );&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that you can add default arguments using:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$defaults = array(&lt;br /&gt;
	'default-color'          =&amp;gt; '',&lt;br /&gt;
	'default-image'          =&amp;gt; '',&lt;br /&gt;
	'wp-head-callback'       =&amp;gt; '_custom_background_cb',&lt;br /&gt;
	'admin-head-callback'    =&amp;gt; '',&lt;br /&gt;
	'admin-preview-callback' =&amp;gt; ''&lt;br /&gt;
);&lt;br /&gt;
add_theme_support( 'custom-background', $defaults );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
An example using default '#000000' background color with 'background.jpg' background image:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$args = array(&lt;br /&gt;
	'default-color' =&amp;gt; '000000',&lt;br /&gt;
	'default-image' =&amp;gt; get_template_directory_uri() . '/images/background.jpg',&lt;br /&gt;
);&lt;br /&gt;
add_theme_support( 'custom-background', $args );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related ==&lt;br /&gt;
* [[Theme Development]]&lt;br /&gt;
&lt;br /&gt;
{{Theme Support}}&lt;br /&gt;
&lt;br /&gt;
{{原文|Custom Backgrounds|117910}}&amp;lt;!-- 2012-05-15T15:27:48 Bono 版 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:上級トピック]]&lt;br /&gt;
[[Category:デザインとレイアウト]]&lt;br /&gt;
[[Category:WordPress の開発]]&lt;br /&gt;
[[Category:wp3.4]]&lt;br /&gt;
&lt;br /&gt;
[[en:Custom Backgrounds]]&lt;/div&gt;</summary>
		<author><name>Bono</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=MediaWiki:Sidebar&amp;diff=5140&amp;oldid=prev</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=MediaWiki:Sidebar&amp;diff=5140&amp;oldid=prev"/>
				<updated>2012-05-15T14:26:11Z</updated>
		
		<summary type="html">&lt;p&gt;3.4追加、3.2削除、談話室削除（P2会議室に切り替え）&lt;/p&gt;
</summary>
		<author><name>Bono</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=%E3%83%AC%E3%83%B3%E3%82%BF%E3%83%AB%E3%82%B5%E3%83%BC%E3%83%90%E6%83%85%E5%A0%B1&amp;diff=5139&amp;oldid=prev</id>
		<title>レンタルサーバ情報</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=%E3%83%AC%E3%83%B3%E3%82%BF%E3%83%AB%E3%82%B5%E3%83%BC%E3%83%90%E6%83%85%E5%A0%B1&amp;diff=5139&amp;oldid=prev"/>
				<updated>2012-05-10T22:42:35Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←前の版&lt;/td&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;2012年5月10日 (木) 22:42時点における版&lt;/td&gt;
		&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;19行：&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;19行：&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;= 国内サーバ =&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;= 国内サーバ =&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;== レオサーバー ==&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* 公式サイト: [http://www.leosv.jp/ レオサーバー]&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* サーバ環境: [http://www.leosv.jp/products/function.html レオサーバー｜機能一覧]&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** PHP 5&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** MySQL 5 無制限（WordPressを複数インストールする際に接頭辞を気にする必要なし）&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** FTPS（FTP over SSL）対応 &lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** SSH、SFTP、Cron、phpMyAdmin、共有SSL 利用可能 &lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** トップドメイン、サブドメイン、サブディレクトリのいずれも運用可能&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* マルチサイト機能&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** サブディレクトリ形式：可&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** サブドメイン形式：不可&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* 参考リンク&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** [http://www.leosv.jp/manual/svadmin/app-wordpress.html WordPress簡単インストールマニュアル]&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;minus;&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;** [http://www.leosv.jp/manual/svadmin/ap-wordpress.html WordPressインストールマニュアル]（手動インストール）&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;== プラスアルファレンタルサーバー ==&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;== プラスアルファレンタルサーバー ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Drinter</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/Before_You_Create_A_Network</id>
		<title>Before You Create A Network</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/Before_You_Create_A_Network"/>
				<updated>2012-05-10T04:28:05Z</updated>
		
		<summary type="html">&lt;p&gt;[[&lt;a href=&quot;/wiki/index.php?title=Before_You_Create_A_Network&amp;amp;redirect=no&quot; class=&quot;mw-redirect&quot; title=&quot;Before You Create A Network&quot;&gt;Before You Create A Network&lt;/a&gt;]]を[[&lt;a href=&quot;/%E3%83%8D%E3%83%83%E3%83%88%E3%83%AF%E3%83%BC%E3%82%AF%E4%BD%9C%E6%88%90%E3%81%AE%E5%89%8D%E3%81%AB&quot; title=&quot;ネットワーク作成の前に&quot;&gt;ネットワーク作成の前に&lt;/a&gt;]]へ移動 和訳。&lt;/p&gt;
</summary>
		<author><name>Nao</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=Before_You_Create_A_Network&amp;diff=5136&amp;oldid=prev</id>
		<title>Before You Create A Network</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=Before_You_Create_A_Network&amp;diff=5136&amp;oldid=prev"/>
				<updated>2012-05-09T15:56:26Z</updated>
		
		<summary type="html">&lt;p&gt;2012-03-04T10:07:12 Ipstenu 版から新規作成&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{NeedTrans}}&lt;br /&gt;
This section outlines some requirements to consider before you begin [[Create A Network|creating a multisite network]].&lt;br /&gt;
&lt;br /&gt;
== Do you really need a network? ==&lt;br /&gt;
The sites in a multisite network are separate, very like the separate blogs at WordPress.com. They are not ''interconnected'' like things in other kinds of networks (even though plugins can create various kinds of interconnections between the sites). If you plan on creating sites that are strongly interconnected, that share data, or share users, then a multisite network might not be the best solution.&lt;br /&gt;
&lt;br /&gt;
For example, if all you want is for different collections of web pages to look very different, then you can probably achieve what you want in a single site by using a plugin to switch themes, templates, or stylesheets.&lt;br /&gt;
&lt;br /&gt;
For another example, if all you want is for different groups of users to have access to different information, then you can probably achieve what you want in a single site by using a plugin to switch capabilities, menus, and link URLs.&lt;br /&gt;
&lt;br /&gt;
This guide describes how to install manually WordPress Multisite in your current WordPress installation. There are also available [http://codex.wordpress.org/User:Beltranrubo/BitNami_Multisite ready-to-run packages] from BitNami.&lt;br /&gt;
&lt;br /&gt;
== Types of multisite network ==&lt;br /&gt;
You can choose between several different types of multisite network depending on how you want your network to handle URLs, and on whether it will allow end users to create new sites on demand.&lt;br /&gt;
&lt;br /&gt;
Different types of network have different server requirements, which are described in a section below. If you do not have full control over your server then certain types of multisite network might not be available to you. For example, you might not have full control over your server because you use a shared hosting environment. In that case you will have to negotiate the requirements with whoever operates the hosting environment.&lt;br /&gt;
&lt;br /&gt;
The sites in a network have different URLs. You can choose one of two ways for the URL to specify the site:&lt;br /&gt;
&lt;br /&gt;
* Each site has a different ''domain''. For example: &amp;lt;tt&amp;gt;example1.com&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;example2.com&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;site1.example.com&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;site2.example.com&amp;lt;/tt&amp;gt;.&lt;br /&gt;
* Each site has a different ''path''. For example: &amp;lt;tt&amp;gt;example.com/site1&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;example.com/site2&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:sites-edit-site.png||Properties of a site in a network. The site's URL is http://example3.com/]]&lt;br /&gt;
&lt;br /&gt;
You can also choose whether or not to allow end users to create new sites on demand. Domain-based on-demand sites are normally only possible using subdomains like &amp;lt;tt&amp;gt;site1.example.com&amp;lt;/tt&amp;gt; and &amp;lt;tt&amp;gt;site2.example.com&amp;lt;/tt&amp;gt;. Path-based on-demand sites are also possible.&lt;br /&gt;
&lt;br /&gt;
The multisite installation process uses different terminology. A ''sub-domain install'' creates a domain-based network, even though you might use separate domains, and not subdomains, for your sites. A ''sub-directory install'' creates a path-based network, even though it does not use file system directories. If you want to use a ''sub-domain'' install, you must install WordPress in the root of your webpath (commonly &amp;lt;tt&amp;gt;public_html&amp;lt;/tt&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
After the multisite network installation is complete, WordPress uses the terminology ''domain'' and ''path'' for each site's domain and path in the Network Admin user interface. A super admin (that is, a multisite network administrator) can edit sites' domain and path settings, although it is unusual to do this to established sites because it changes their URLs.&lt;br /&gt;
&lt;br /&gt;
Plugins can extend the options available and help with administration. For example, you can use the [http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/ WordPress MU Domain Mapping] plugin to help you map individual sites to independent domain names. For another example, you can use the [http://wordpress.org/extend/plugins/networks-for-wordpress/ Networks for WordPress] plugin to configure multiple networks in the same WordPress installation.&lt;br /&gt;
&lt;br /&gt;
== Admin Requirements ==&lt;br /&gt;
To create a multisite network you must be the administrator of a WordPress installation, and you normally need access to the server's file system so that you can edit files and create a directory. For example, you could access the server's file system using [[Glossary#FTP|FTP]], or using the File Manager in [[Glossary#cPanel|cPanel]], or in some other way.&lt;br /&gt;
&lt;br /&gt;
You do not necessarily need any knowledge of WordPress [[Glossary#Developer|development]], [[Glossary#PHP|PHP]], [[Glossary#HTML|HTML]], [[Glossary#CSS|CSS]], server administration or system administration, although knowledge of these things might be useful for troubleshooting or for customizing your multisite network after installation.&lt;br /&gt;
&lt;br /&gt;
== Server Requirements ==&lt;br /&gt;
When you are planning a network, it can sometimes be helpful to use a development server for initial testing. However, setting up a development server that exactly matches your production server is not always possible, and transferring an entire network to a production server may not be easy. A test site on your production server is sometimes a more useful way to test your planned network.&lt;br /&gt;
&lt;br /&gt;
Some server requirements depend on the type of multisite network you want to create, as follows.&lt;br /&gt;
&lt;br /&gt;
=== Domain-based ===&lt;br /&gt;
Also known as 'Subdomain' installs, a Domain-based network uses URLs like &amp;lt;code&amp;gt;http://subsite.example.com&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For a domain-based network you require to map different domain names to the same directory in the server's file system where WordPress is installed. You can do this in various ways, for example:&lt;br /&gt;
&lt;br /&gt;
* by configuring wildcard subdomains&lt;br /&gt;
* by configuring virtual hosts, specifying the same document root for each&lt;br /&gt;
* by creating addon domains or subdomains in [[Glossary#cPanel|cPanel]] or in a similar web hosting control panel&lt;br /&gt;
&lt;br /&gt;
On-demand domain-based sites require the wildcard subdomains method. You can create additional sites manually in the same network using other methods.&lt;br /&gt;
&lt;br /&gt;
Whichever methods you use require DNS configuration to map the domain name to the server's IP address,  and also server configuration to map the domain name to the WordPress installation directory. (WordPress then maps the domain name to the site.)&lt;br /&gt;
&lt;br /&gt;
WordPress ''must'' be installed in the root of your webfolder (i.e. &amp;lt;tt&amp;gt;public_html&amp;lt;/tt&amp;gt;) for subdomains to function correctly. They will not function in a subdirectory.&lt;br /&gt;
&lt;br /&gt;
External links:&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Wildcard_DNS_record Wildcard DNS record] (Wikipedia)&lt;br /&gt;
*[http://httpd.apache.org/docs/2.0/en/vhosts/ Apache Virtual Host] (Apache HTTP Server documentation)&lt;br /&gt;
*[http://etwiki.cpanel.net/twiki/bin/view/AllDocumentation/CpanelDocs/CpanelDomains cPanel Domains] (cPanel documentation)&lt;br /&gt;
&lt;br /&gt;
For some examples of how to configure wildcard subdomains on various systems, see: [[Configuring Wildcard Subdomains]]&lt;br /&gt;
&lt;br /&gt;
=== Path-based ===&lt;br /&gt;
Also known as 'Subfolder' installs, a path-based network uses URLs like &amp;lt;code&amp;gt;http://example.com/subsite&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you are using pretty permalinks in your site already, then a path-based network will work as well, and you do not need any of the other information in this section.&lt;br /&gt;
&lt;br /&gt;
For a path-based network you normally require [[Glossary#mod_rewrite|mod_rewrite]] to be loaded on the Apache server, support for it in [[Glossary#.htaccess|.htaccess]] files, and Options FollowSymLinks either already enabled or at least not permanently disabled. If you have access to the server configuration, then you could use a Directory section instead of a .htaccess file.&lt;br /&gt;
&lt;br /&gt;
The requirement is the same for on-demand path-based sites.&lt;br /&gt;
&lt;br /&gt;
'''Example:''' Configuring mod_rewrite in an Apache server on Ubuntu Linux.&lt;br /&gt;
&lt;br /&gt;
: To check if mod_rewrite is running, create 'nano /var/www/test.php' and inside that file put '&amp;lt;?php phpinfo(); ?&amp;gt;' then go to your web browser and try loading test.php and search for mod_rewrite in the loaded apache modules.&lt;br /&gt;
&lt;br /&gt;
: If not loaded, then use command from cli 'sudo a2enmod rewrite'; 'sudo nano /etc/apache2/sites-enabled/000-default' changing the Allow None to Allow All under the /var/www sections (2 places) and 'sudo /etc/init.d/apache2 restart' Otherwise you won't get sub sites to show up. The above is under Ubuntu server 10.04 with LAMP, other distros will likely be similar (Centos 6.0 also does not have set under default). Ubuntu 12.04 LAMP needs &amp;quot;Allow from All&amp;quot; rather than the older &amp;quot;Allow All&amp;quot; noted above.&lt;br /&gt;
&lt;br /&gt;
== WordPress Settings Requirements ==&lt;br /&gt;
When you install a multisite network you start from an existing WordPress installation. If it is a fresh install with its own domain name, then you do not need to read this section. If it is an established site, or not reachable using just a domain name, then the following requirements apply to allow it to be converted to a multisite network.&lt;br /&gt;
&lt;br /&gt;
[[Giving WordPress Its Own Directory|Giving WordPress its own directory]] will not work in WordPress 3.0 with multisite enabled. If you wish to install WordPress in a folder AND have that folder name it will work. Domain mapping, however, will not work.&lt;br /&gt;
&lt;br /&gt;
If you have www in the settings for your domain url, and plan to use &amp;lt;em&amp;gt;subdomains&amp;lt;/em&amp;gt; for multisite, make sure that &amp;lt;strong&amp;gt;both&amp;lt;/strong&amp;gt; the site address and the WordPress address are the same.  If you plan on changing them to domain.com or www.domain.com, do so &amp;lt;em&amp;gt;before&amp;lt;/em&amp;gt; you begin the rest of the setup for MultiSite, as changing the domain name after the fact is more complicated.&lt;br /&gt;
&lt;br /&gt;
You '''cannot create a network''' in the following cases:&amp;lt;!-- network_step1() function --&amp;gt;&lt;br /&gt;
* &amp;quot;WordPress address (URL)&amp;quot; is different from &amp;quot;Site address (URL)&amp;quot;.&lt;br /&gt;
* &amp;quot;WordPress address (URL)&amp;quot; uses a port number other than ':80', ':443'.&lt;br /&gt;
&lt;br /&gt;
You ''cannot choose '''Sub-domain''' Install'' (for a domain-based network) in the following cases:&amp;lt;!-- allow_subdomain_install() function --&amp;gt;&lt;br /&gt;
* The WordPress URL contains a path, not just a domain. (That is, WordPress is not installed in a document root, or you are not using the URL of that document root.)&lt;br /&gt;
* &amp;quot;WordPress address (URL)&amp;quot; is &amp;lt;code&amp;gt;localhost&amp;lt;/code&amp;gt;.&lt;br /&gt;
* &amp;quot;WordPress address (URL)&amp;quot; is IP address such as &amp;lt;var&amp;gt;127.0.0.1&amp;lt;/var&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
(Note that you can create a domain-based network on your local machine for testing purposes by using your hosts file to map some other hostnames to the IP address 127.0.0.1, so that you never have to use the hostname &amp;lt;code&amp;gt;localhost&amp;lt;/code&amp;gt;.)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- allow_subdirectory_install() function --&amp;gt;&lt;br /&gt;
You ''cannot choose '''Sub-directory''' Install'' (for a path-based network) if your existing WordPress installation has been set up for more than a month, due to issues with existing permalinks. (This problem will be fixed in a future version. See [[#Switching_network_types|Switching network types]] for more information.)&lt;br /&gt;
&lt;br /&gt;
(See {{Trac|wp-admin/network.php}} for more detail)&lt;br /&gt;
&lt;br /&gt;
{{原文|Create A Network| 114461}}&amp;lt;!-- 2012-03-04T10:07:12 Ipstenu 版 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:}}&lt;br /&gt;
[[Category:WPMU]]&lt;br /&gt;
[[Category:ネットワーク]]&lt;br /&gt;
[[Category:UI Link]]&lt;br /&gt;
[[Category:ホスティング]]&lt;/div&gt;</summary>
		<author><name>Nao</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/%E5%88%A9%E7%94%A8%E8%80%85:Drinter</id>
		<title>利用者:Drinter</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/%E5%88%A9%E7%94%A8%E8%80%85:Drinter"/>
				<updated>2012-05-09T01:35:12Z</updated>
		
		<summary type="html">&lt;p&gt;が新規にアカウント &lt;a href=&quot;/wiki/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Drinter&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;利用者:Drinter（存在しないページ）&quot;&gt;利用者:Drinter&lt;/a&gt; を作成しました パスワードを電子メールで送信しました&lt;/p&gt;
</summary>
		<author><name>Tai</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85%E3%83%BB%E3%83%88%E3%83%BC%E3%82%AF:Drinter&amp;diff=5135&amp;oldid=prev</id>
		<title>利用者・トーク:Drinter</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85%E3%83%BB%E3%83%88%E3%83%BC%E3%82%AF:Drinter&amp;diff=5135&amp;oldid=prev"/>
				<updated>2012-05-09T01:35:11Z</updated>
		
		<summary type="html">&lt;p&gt;新規利用者の会話ページに&lt;a href=&quot;/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Welcome&quot; title=&quot;テンプレート:Welcome&quot;&gt;歓迎のメッセージ&lt;/a&gt;を記入&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
{{Template:Welcome|realName=|name=Drinter}}&lt;br /&gt;
&lt;br /&gt;
-- [[利用者:Tai|tai]] 2012年5月9日 (水) 10:35 (JST)&lt;/div&gt;</summary>
		<author><name>New user message</name></author>	</entry>

	<entry>
		<id>http://wpdocs.sourceforge.jp/wiki/index.php?title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/get_posts&amp;diff=5134&amp;oldid=prev</id>
		<title>テンプレートタグ/get posts</title>
		<link rel="alternate" type="text/html" href="http://wpdocs.sourceforge.jp/wiki/index.php?title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/get_posts&amp;diff=5134&amp;oldid=prev"/>
				<updated>2012-05-08T13:45:36Z</updated>
		
		<summary type="html">&lt;p&gt;訳文を一部修正。&lt;/p&gt;
&lt;a href=&quot;http://wpdocs.sourceforge.jp/wiki/index.php?title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/get_posts&amp;amp;diff=5134&amp;amp;oldid=4404&quot;&gt;差分を表示&lt;/a&gt;</summary>
		<author><name>Nao</name></author>	</entry>

	</feed>
