/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2015-03-28 01:55:42 */ SET FOREIGN_KEY_CHECKS = 0; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; CREATE TABLE `wp_duplicator_packages` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(250) NOT NULL, `hash` varchar(50) NOT NULL, `status` int(11) NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `owner` varchar(60) NOT NULL, `package` mediumblob NOT NULL, PRIMARY KEY (`id`), KEY `hash` (`hash`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; CREATE TABLE `wp_dynamic_widgets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `widget_id` varchar(60) NOT NULL, `maintype` varchar(50) NOT NULL, `name` varchar(40) NOT NULL, `value` longtext NOT NULL, PRIMARY KEY (`id`), KEY `widget_id` (`widget_id`,`maintype`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `wp_keni_setting` ( `ks_id` tinyint(1) unsigned NOT NULL AUTO_INCREMENT, `ks_group` varchar(32) NOT NULL, `ks_sys_cont` varchar(32) NOT NULL, `ks_view_cont` varchar(32) NOT NULL, `ks_val` text, `ks_def_val` text, `ks_type` enum('yn','int','text','textarea','image') NOT NULL DEFAULT 'yn', `ks_active` enum('y','n') NOT NULL DEFAULT 'y', `ks_sort` tinyint(1) unsigned NOT NULL, PRIMARY KEY (`ks_id`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(64) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=1762 DEFAULT CHARSET=utf8; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=320 DEFAULT CHARSET=utf8; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL DEFAULT 'publish', `comment_status` varchar(20) NOT NULL DEFAULT 'open', `ping_status` varchar(20) NOT NULL DEFAULT 'open', `post_password` varchar(20) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=MyISAM AUTO_INCREMENT=84 DEFAULT CHARSET=utf8; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) NOT NULL DEFAULT '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `name` (`name`), KEY `slug` (`slug`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(64) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(60) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /* INSERT TABLE DATA: wp_comments */ INSERT INTO `wp_comments` VALUES("1", "1", "Mr WordPress", "", "https://wordpress.org/", "", "2014-12-13 19:20:29", "2014-12-13 19:20:29", "これはコメントです。\nコメントを削除するには、ログインして投稿編集画面でコメントを表示してください。編集または削除するオプションが用意されています。", "0", "1", "", "", "0", "0"); /* INSERT TABLE DATA: wp_duplicator_packages */ INSERT INTO `wp_duplicator_packages` VALUES("1", "20150325test", "55106f249903c9048150323195308", "100", "2015-03-23 19:53:26", "azuma", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:1;s:4:\"Name\";s:12:\"20150325test\";s:4:\"Hash\";s:29:\"55106f249903c9048150323195308\";s:8:\"NameHash\";s:42:\"20150325test_55106f249903c9048150323195308\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:80:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp\";s:8:\"StoreURL\";s:58:\"http://oomori.cc/test1/wp-snapshots/\";s:8:\"ScanFile\";s:52:\"20150325test_55106f249903c9048150323195308_scan.json\";s:7:\"Runtime\";s:9:\"9.64 sec.\";s:7:\"ExeSize\";s:8:\"316.91KB\";s:7:\"ZipSize\";s:6:\"87.8MB\";s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";s:54:\"20150325test_55106f249903c9048150323195308_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:63:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1\";s:4:\"Size\";i:92063432;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";r:1;s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:56:\"20150325test_55106f249903c9048150323195308_installer.php\";s:4:\"Size\";i:324514;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:1;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:473409;s:4:\"File\";s:55:\"20150325test_55106f249903c9048150323195308_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:136:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp/20150325test_55106f249903c9048150323195308_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}"); INSERT INTO `wp_duplicator_packages` VALUES("2", "20150325test2", "55106f4c2d3984460150323195348", "100", "2015-03-23 19:54:18", "azuma", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:2;s:4:\"Name\";s:13:\"20150325test2\";s:4:\"Hash\";s:29:\"55106f4c2d3984460150323195348\";s:8:\"NameHash\";s:43:\"20150325test2_55106f4c2d3984460150323195348\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:80:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp\";s:8:\"StoreURL\";s:58:\"http://oomori.cc/test1/wp-snapshots/\";s:8:\"ScanFile\";s:53:\"20150325test2_55106f4c2d3984460150323195348_scan.json\";s:7:\"Runtime\";s:9:\"9.53 sec.\";s:7:\"ExeSize\";s:8:\"316.91KB\";s:7:\"ZipSize\";s:6:\"87.8MB\";s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";s:55:\"20150325test2_55106f4c2d3984460150323195348_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:63:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1\";s:4:\"Size\";i:92063623;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";r:1;s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:57:\"20150325test2_55106f4c2d3984460150323195348_installer.php\";s:4:\"Size\";i:324516;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:1;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:475763;s:4:\"File\";s:56:\"20150325test2_55106f4c2d3984460150323195348_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:137:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp/20150325test2_55106f4c2d3984460150323195348_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}"); INSERT INTO `wp_duplicator_packages` VALUES("3", "20150325test2", "55119ec15579c2755150324172833", "100", "2015-03-24 17:30:10", "azuma", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:3;s:4:\"Name\";s:13:\"20150325test2\";s:4:\"Hash\";s:29:\"55119ec15579c2755150324172833\";s:8:\"NameHash\";s:43:\"20150325test2_55119ec15579c2755150324172833\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:80:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp\";s:8:\"StoreURL\";s:58:\"http://oomori.cc/test1/wp-snapshots/\";s:8:\"ScanFile\";s:53:\"20150325test2_55119ec15579c2755150324172833_scan.json\";s:7:\"Runtime\";s:10:\"13.61 sec.\";s:7:\"ExeSize\";s:8:\"316.91KB\";s:7:\"ZipSize\";s:6:\"87.8MB\";s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";s:55:\"20150325test2_55119ec15579c2755150324172833_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:63:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1\";s:4:\"Size\";i:92064756;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";r:1;s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:57:\"20150325test2_55119ec15579c2755150324172833_installer.php\";s:4:\"Size\";i:324516;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:1;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:478434;s:4:\"File\";s:56:\"20150325test2_55119ec15579c2755150324172833_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:137:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp/20150325test2_55119ec15579c2755150324172833_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}"); INSERT INTO `wp_duplicator_packages` VALUES("4", "20150325test01", "5511afcab4ed26648150324184114", "100", "2015-03-24 18:41:38", "azuma", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:4;s:4:\"Name\";s:14:\"20150325test01\";s:4:\"Hash\";s:29:\"5511afcab4ed26648150324184114\";s:8:\"NameHash\";s:44:\"20150325test01_5511afcab4ed26648150324184114\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:80:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp\";s:8:\"StoreURL\";s:58:\"http://oomori.cc/test1/wp-snapshots/\";s:8:\"ScanFile\";s:54:\"20150325test01_5511afcab4ed26648150324184114_scan.json\";s:7:\"Runtime\";s:9:\"6.33 sec.\";s:7:\"ExeSize\";s:8:\"316.91KB\";s:7:\"ZipSize\";s:7:\"24.05MB\";s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";s:56:\"20150325test01_5511afcab4ed26648150324184114_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:63:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1\";s:4:\"Size\";i:25216707;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";r:1;s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:58:\"20150325test01_5511afcab4ed26648150324184114_installer.php\";s:4:\"Size\";i:324518;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:1;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:480798;s:4:\"File\";s:57:\"20150325test01_5511afcab4ed26648150324184114_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:138:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp/20150325test01_5511afcab4ed26648150324184114_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}"); INSERT INTO `wp_duplicator_packages` VALUES("5", "20150325test7", "55160a060950a7451150328015518", "20", "2015-03-28 01:55:42", "azuma", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:5;s:4:\"Name\";s:13:\"20150325test7\";s:4:\"Hash\";s:29:\"55160a060950a7451150328015518\";s:8:\"NameHash\";s:43:\"20150325test7_55160a060950a7451150328015518\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:80:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp\";s:8:\"StoreURL\";s:58:\"http://oomori.cc/test1/wp-snapshots/\";s:8:\"ScanFile\";s:53:\"20150325test7_55160a060950a7451150328015518_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";s:55:\"20150325test7_55160a060950a7451150328015518_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:63:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1\";s:4:\"Size\";i:0;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:13:\"20150325test7\";s:4:\"Hash\";s:29:\"55160a060950a7451150328015518\";s:8:\"NameHash\";s:43:\"20150325test7_55160a060950a7451150328015518\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:80:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp\";s:8:\"StoreURL\";s:58:\"http://oomori.cc/test1/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:57:\"20150325test7_55160a060950a7451150328015518_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:30;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:56:\"20150325test7_55160a060950a7451150328015518_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";r:45;s:8:\"Database\";r:57;}"); /* INSERT TABLE DATA: wp_keni_setting */ INSERT INTO `wp_keni_setting` VALUES("1", "サイト内共通", "mobile_layout", "レスポンシブWebデザイン", "y", "y", "yn", "y", "1"); INSERT INTO `wp_keni_setting` VALUES("2", "サイト内共通", "layout", "サイトの基本レイアウト", "col2", "col2", "text", "y", "2"); INSERT INTO `wp_keni_setting` VALUES("3", "サイト内共通", "view_meta", "メタキーワード・メタディスクリプションの表示", "y", "y", "yn", "y", "3"); INSERT INTO `wp_keni_setting` VALUES("4", "サイト内共通", "keyword", "サイト共通のメタキーワード
(カンマ区切りの文字列)", "", "", "text", "y", "4"); INSERT INTO `wp_keni_setting` VALUES("5", "サイト内共通", "globalmenu", "グローバルメニューの選択", "6", "0", "int", "y", "5"); INSERT INTO `wp_keni_setting` VALUES("6", "トップページ", "top_layout", "トップページのレイアウト", "col1", "col2", "text", "y", "21"); INSERT INTO `wp_keni_setting` VALUES("7", "トップページ", "top_h1", "トップページのH1タグ用テキスト", "", "", "text", "y", "22"); INSERT INTO `wp_keni_setting` VALUES("8", "トップページ", "catchcopy", "メイン画像のキャッチコピー", "愛され続けて20年。\r\nすべてのお客様にご満足いただくために。", "愛され続けて20年。\nすべてのお客様にご満足いただくために。", "textarea", "y", "23"); INSERT INTO `wp_keni_setting` VALUES("9", "トップページ", "mainimage", "メイン画像", "http://oomori.cc/test1/wp-content/themes/keni6_wp_pretty_130621/images/top-image.jpg", "http://oomori.cc/test1/wp-content/themes/keni6_wp_pretty_130621/images/top-image.jpg", "text", "y", "24"); INSERT INTO `wp_keni_setting` VALUES("10", "フッター", "footermenu1", "フッタメニュー1の選択", "0", "0", "int", "y", "91"); INSERT INTO `wp_keni_setting` VALUES("11", "フッター", "footermenu2", "フッタメニュー2の選択", "0", "0", "int", "y", "92"); INSERT INTO `wp_keni_setting` VALUES("12", "Facebook", "fb_view", "タグの出力", "n", "n", "yn", "y", "50"); INSERT INTO `wp_keni_setting` VALUES("13", "Facebook", "fb_app_id", "App ID", "", "", "text", "y", "51"); INSERT INTO `wp_keni_setting` VALUES("14", "Facebook", "fb_admins", "管理者ID
(カンマ区切りで入力して下さい)", "", "", "text", "y", "52"); INSERT INTO `wp_keni_setting` VALUES("15", "Facebook", "fb_type", "サイトタイプ", "blog", "blog", "text", "y", "53"); INSERT INTO `wp_keni_setting` VALUES("16", "Facebook", "fb_lang", "言語", "ja_JP", "ja_JP", "text", "y", "54"); INSERT INTO `wp_keni_setting` VALUES("17", "Facebook", "fb_ogpimage", "標準画像", "http://oomori.cc/test1/wp-content/themes/keni6_wp_pretty_130621/ogp.jpg", "http://oomori.cc/test1/wp-content/themes/keni6_wp_pretty_130621/ogp.jpg", "text", "y", "55"); INSERT INTO `wp_keni_setting` VALUES("18", "Google+", "gp_view", "タグの出力", "n", "n", "yn", "y", "60"); INSERT INTO `wp_keni_setting` VALUES("19", "Google+", "gp_image", "標準画像", "http://oomori.cc/test1/wp-content/themes/keni6_wp_pretty_130621/ogp.jpg", "http://oomori.cc/test1/wp-content/themes/keni6_wp_pretty_130621/ogp.jpg", "text", "y", "61"); /* INSERT TABLE DATA: wp_options */ INSERT INTO `wp_options` VALUES("1", "siteurl", "http://oomori.cc/test1", "yes"); INSERT INTO `wp_options` VALUES("2", "home", "http://oomori.cc/test1", "yes"); INSERT INTO `wp_options` VALUES("3", "blogname", "テストサイト", "yes"); INSERT INTO `wp_options` VALUES("4", "blogdescription", "", "yes"); INSERT INTO `wp_options` VALUES("5", "users_can_register", "0", "yes"); INSERT INTO `wp_options` VALUES("6", "admin_email", "support@tonosama.biz", "yes"); INSERT INTO `wp_options` VALUES("7", "start_of_week", "1", "yes"); INSERT INTO `wp_options` VALUES("8", "use_balanceTags", "0", "yes"); INSERT INTO `wp_options` VALUES("9", "use_smilies", "1", "yes"); INSERT INTO `wp_options` VALUES("10", "require_name_email", "1", "yes"); INSERT INTO `wp_options` VALUES("11", "comments_notify", "1", "yes"); INSERT INTO `wp_options` VALUES("12", "posts_per_rss", "10", "yes"); INSERT INTO `wp_options` VALUES("13", "rss_use_excerpt", "0", "yes"); INSERT INTO `wp_options` VALUES("14", "mailserver_url", "mail.example.com", "yes"); INSERT INTO `wp_options` VALUES("15", "mailserver_login", "login@example.com", "yes"); INSERT INTO `wp_options` VALUES("16", "mailserver_pass", "password", "yes"); INSERT INTO `wp_options` VALUES("17", "mailserver_port", "110", "yes"); INSERT INTO `wp_options` VALUES("18", "default_category", "1", "yes"); INSERT INTO `wp_options` VALUES("19", "default_comment_status", "open", "yes"); INSERT INTO `wp_options` VALUES("20", "default_ping_status", "open", "yes"); INSERT INTO `wp_options` VALUES("21", "default_pingback_flag", "1", "yes"); INSERT INTO `wp_options` VALUES("22", "posts_per_page", "10", "yes"); INSERT INTO `wp_options` VALUES("23", "date_format", "Y年n月j日", "yes"); INSERT INTO `wp_options` VALUES("24", "time_format", "g:i A", "yes"); INSERT INTO `wp_options` VALUES("25", "links_updated_date_format", "Y年n月j日 g:i A", "yes"); INSERT INTO `wp_options` VALUES("26", "comment_moderation", "0", "yes"); INSERT INTO `wp_options` VALUES("27", "moderation_notify", "1", "yes"); INSERT INTO `wp_options` VALUES("28", "permalink_structure", "/%postname%/", "yes"); INSERT INTO `wp_options` VALUES("29", "gzipcompression", "0", "yes"); INSERT INTO `wp_options` VALUES("30", "hack_file", "0", "yes"); INSERT INTO `wp_options` VALUES("31", "blog_charset", "UTF-8", "yes"); INSERT INTO `wp_options` VALUES("32", "moderation_keys", "", "no"); INSERT INTO `wp_options` VALUES("33", "active_plugins", "a:23:{i:0;s:27:\"addquicktag/addquicktag.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:3;s:21:\"ameba-press/index.php\";i:4;s:43:\"auto-post-thumbnail/auto-post-thumbnail.php\";i:5;s:19:\"bbpress/bbpress.php\";i:6;s:34:\"drag-drop-featured-image/index.php\";i:7;s:33:\"duplicate-post/duplicate-post.php\";i:8;s:25:\"duplicator/duplicator.php\";i:9;s:35:\"dynamic-widgets/dynamic-widgets.php\";i:10;s:31:\"easing-slider/easing-slider.php\";i:11;s:36:\"google-sitemap-generator/sitemap.php\";i:12;s:33:\"heatmap-for-wp/heatmap-for-wp.php\";i:13;s:29:\"image-widget/image-widget.php\";i:14;s:19:\"jetpack/jetpack.php\";i:15;s:39:\"plugin-memorandum/plugin-memorandum.php\";i:16;s:41:\"single-post-widget/single-post-widget.php\";i:17;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:18;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:19;s:37:\"wordpress-faq-manager/faq-manager.php\";i:20;s:41:\"wp-database-backup/wp-database-backup.php\";i:21;s:41:\"wp-multibyte-patch/wp-multibyte-patch.php\";i:22;s:27:\"wpmbytplayer/mbYTPlayer.php\";}", "yes"); INSERT INTO `wp_options` VALUES("34", "category_base", "", "yes"); INSERT INTO `wp_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes"); INSERT INTO `wp_options` VALUES("36", "advanced_edit", "0", "yes"); INSERT INTO `wp_options` VALUES("37", "comment_max_links", "2", "yes"); INSERT INTO `wp_options` VALUES("38", "gmt_offset", "0", "yes"); INSERT INTO `wp_options` VALUES("39", "default_email_category", "1", "yes"); INSERT INTO `wp_options` VALUES("40", "recently_edited", "a:5:{i:0;s:115:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-content/themes/keni6_wp_pretty_130621/mobile.css\";i:2;s:115:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-content/themes/keni6_wp_pretty_130621/footer.php\";i:3;s:115:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-content/themes/keni6_wp_pretty_130621/design.css\";i:4;s:114:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-content/themes/keni6_wp_pretty_130621/style.css\";i:5;s:115:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-content/themes/keni6_wp_pretty_130621/header.php\";}", "no"); INSERT INTO `wp_options` VALUES("41", "template", "keni6_wp_pretty_130621", "yes"); INSERT INTO `wp_options` VALUES("42", "stylesheet", "keni6_wp_pretty_130621", "yes"); INSERT INTO `wp_options` VALUES("43", "comment_whitelist", "1", "yes"); INSERT INTO `wp_options` VALUES("44", "blacklist_keys", "", "no"); INSERT INTO `wp_options` VALUES("45", "comment_registration", "0", "yes"); INSERT INTO `wp_options` VALUES("46", "html_type", "text/html", "yes"); INSERT INTO `wp_options` VALUES("47", "use_trackback", "0", "yes"); INSERT INTO `wp_options` VALUES("48", "default_role", "subscriber", "yes"); INSERT INTO `wp_options` VALUES("49", "db_version", "30133", "yes"); INSERT INTO `wp_options` VALUES("50", "uploads_use_yearmonth_folders", "1", "yes"); INSERT INTO `wp_options` VALUES("51", "upload_path", "", "yes"); INSERT INTO `wp_options` VALUES("52", "blog_public", "1", "yes"); INSERT INTO `wp_options` VALUES("53", "default_link_category", "2", "yes"); INSERT INTO `wp_options` VALUES("54", "show_on_front", "page", "yes"); INSERT INTO `wp_options` VALUES("55", "tag_base", "", "yes"); INSERT INTO `wp_options` VALUES("56", "show_avatars", "1", "yes"); INSERT INTO `wp_options` VALUES("57", "avatar_rating", "G", "yes"); INSERT INTO `wp_options` VALUES("58", "upload_url_path", "", "yes"); INSERT INTO `wp_options` VALUES("59", "thumbnail_size_w", "150", "yes"); INSERT INTO `wp_options` VALUES("60", "thumbnail_size_h", "150", "yes"); INSERT INTO `wp_options` VALUES("61", "thumbnail_crop", "1", "yes"); INSERT INTO `wp_options` VALUES("62", "medium_size_w", "300", "yes"); INSERT INTO `wp_options` VALUES("63", "medium_size_h", "300", "yes"); INSERT INTO `wp_options` VALUES("64", "avatar_default", "mystery", "yes"); INSERT INTO `wp_options` VALUES("65", "large_size_w", "1024", "yes"); INSERT INTO `wp_options` VALUES("66", "large_size_h", "1024", "yes"); INSERT INTO `wp_options` VALUES("67", "image_default_link_type", "file", "yes"); INSERT INTO `wp_options` VALUES("68", "image_default_size", "", "yes"); INSERT INTO `wp_options` VALUES("69", "image_default_align", "", "yes"); INSERT INTO `wp_options` VALUES("70", "close_comments_for_old_posts", "0", "yes"); INSERT INTO `wp_options` VALUES("71", "close_comments_days_old", "14", "yes"); INSERT INTO `wp_options` VALUES("72", "thread_comments", "1", "yes"); INSERT INTO `wp_options` VALUES("73", "thread_comments_depth", "5", "yes"); INSERT INTO `wp_options` VALUES("74", "page_comments", "0", "yes"); INSERT INTO `wp_options` VALUES("75", "comments_per_page", "50", "yes"); INSERT INTO `wp_options` VALUES("76", "default_comments_page", "newest", "yes"); INSERT INTO `wp_options` VALUES("77", "comment_order", "asc", "yes"); INSERT INTO `wp_options` VALUES("78", "sticky_posts", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("79", "widget_categories", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes"); INSERT INTO `wp_options` VALUES("80", "widget_text", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("81", "widget_rss", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("82", "uninstall_plugins", "a:5:{s:27:\"addquicktag/addquicktag.php\";a:2:{i:0;s:12:\"Add_Quicktag\";i:1;s:9:\"uninstall\";}s:34:\"addquicktag/inc/class-settings.php\";a:2:{i:0;s:21:\"Add_Quicktag_Settings\";i:1;s:19:\"unregister_settings\";}s:47:\"advanced-page-manager/advanced_page_manager.php\";a:2:{i:0;s:21:\"advanced_page_manager\";i:1;s:9:\"uninstall\";}s:34:\"easing-slider/easingsliderlite.php\";a:2:{i:0;s:16:\"EasingSliderLite\";i:1;s:12:\"do_uninstall\";}s:31:\"easing-slider/easing-slider.php\";a:2:{i:0;s:13:\"Easing_Slider\";i:1;s:12:\"do_uninstall\";}}", "no"); INSERT INTO `wp_options` VALUES("83", "timezone_string", "Asia/Tokyo", "yes"); INSERT INTO `wp_options` VALUES("84", "page_for_posts", "0", "yes"); INSERT INTO `wp_options` VALUES("85", "page_on_front", "51", "yes"); INSERT INTO `wp_options` VALUES("86", "default_post_format", "0", "yes"); INSERT INTO `wp_options` VALUES("87", "link_manager_enabled", "0", "yes"); INSERT INTO `wp_options` VALUES("88", "initial_db_version", "29630", "yes"); INSERT INTO `wp_options` VALUES("89", "wp_user_roles", "a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:71:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:31:\"easingsliderlite_edit_slideshow\";b:1;s:30:\"easingsliderlite_can_customize\";b:1;s:30:\"easingsliderlite_edit_settings\";b:1;s:10:\"copy_posts\";b:1;s:25:\"easingslider_edit_sliders\";b:1;s:28:\"easingslider_publish_sliders\";b:1;s:32:\"easingslider_discover_extensions\";b:1;s:28:\"easingslider_manage_settings\";b:1;s:34:\"easingslider_manage_customizations\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"bbp_keymaster\";a:2:{s:4:\"name\";s:9:\"Keymaster\";s:12:\"capabilities\";a:29:{s:9:\"keep_gate\";b:1;s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:18:\"edit_others_forums\";b:1;s:13:\"delete_forums\";b:1;s:20:\"delete_others_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:13:\"bbp_spectator\";a:2:{s:4:\"name\";s:9:\"Spectator\";s:12:\"capabilities\";a:1:{s:8:\"spectate\";b:1;}}s:11:\"bbp_blocked\";a:2:{s:4:\"name\";s:7:\"Blocked\";s:12:\"capabilities\";a:28:{s:8:\"spectate\";b:0;s:11:\"participate\";b:0;s:8:\"moderate\";b:0;s:8:\"throttle\";b:0;s:10:\"view_trash\";b:0;s:14:\"publish_forums\";b:0;s:11:\"edit_forums\";b:0;s:18:\"edit_others_forums\";b:0;s:13:\"delete_forums\";b:0;s:20:\"delete_others_forums\";b:0;s:19:\"read_private_forums\";b:0;s:18:\"read_hidden_forums\";b:0;s:14:\"publish_topics\";b:0;s:11:\"edit_topics\";b:0;s:18:\"edit_others_topics\";b:0;s:13:\"delete_topics\";b:0;s:20:\"delete_others_topics\";b:0;s:19:\"read_private_topics\";b:0;s:15:\"publish_replies\";b:0;s:12:\"edit_replies\";b:0;s:19:\"edit_others_replies\";b:0;s:14:\"delete_replies\";b:0;s:21:\"delete_others_replies\";b:0;s:20:\"read_private_replies\";b:0;s:17:\"manage_topic_tags\";b:0;s:15:\"edit_topic_tags\";b:0;s:17:\"delete_topic_tags\";b:0;s:17:\"assign_topic_tags\";b:0;}}s:13:\"bbp_moderator\";a:2:{s:4:\"name\";s:9:\"Moderator\";s:12:\"capabilities\";a:25:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:15:\"bbp_participant\";a:2:{s:4:\"name\";s:11:\"Participant\";s:12:\"capabilities\";a:8:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:19:\"read_private_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:17:\"assign_topic_tags\";b:1;}}}", "yes"); INSERT INTO `wp_options` VALUES("90", "WPLANG", "ja", "yes"); INSERT INTO `wp_options` VALUES("91", "widget_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes"); INSERT INTO `wp_options` VALUES("92", "widget_recent-posts", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes"); INSERT INTO `wp_options` VALUES("93", "widget_recent-comments", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes"); INSERT INTO `wp_options` VALUES("94", "widget_archives", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes"); INSERT INTO `wp_options` VALUES("95", "widget_meta", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes"); INSERT INTO `wp_options` VALUES("96", "sidebars_widgets", "a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sub-contents\";a:0:{}s:7:\"sidebar\";a:0:{}s:13:\"array_version\";i:3;}", "yes"); INSERT INTO `wp_options` VALUES("97", "cron", "a:8:{i:1427507906;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1427530342;a:1:{s:33:\"heatmap_for_wp_cron_check_account\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1427538040;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1427538070;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1427538840;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1427539465;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1427547898;a:1:{s:13:\"sm_ping_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}", "yes"); INSERT INTO `wp_options` VALUES("107", "auth_key", ":buv)fdIXL`Lw2718!UuGI`(NhZ&SYc,+EE^0>$D2K?]?Ns?S|P0JehEM8<(y&2#", "yes"); INSERT INTO `wp_options` VALUES("108", "auth_salt", "py.(F+5!qM!YrU`idD_Idq lfv8:21s8]ieqRiYDHR#eX2s(Sp=MgDT4U;Hh!fW@~95,.1DZ_f#W)", "yes"); INSERT INTO `wp_options` VALUES("111", "nonce_key", ")Q-9s0E3mB-Vo8/eyrKrEXdlr7t0CyD^^;lWAZ/6,mKIU7IDi5)V?*[-Gm_>M$xL", "yes"); INSERT INTO `wp_options` VALUES("112", "nonce_salt", "(el_M*X[633ZR3vg=U?Mun`s3!5+l%>f>g~~.f$aNoH$2o5L^9)>>P@gpJ!Yf9zY", "yes"); INSERT INTO `wp_options` VALUES("1744", "_transient_timeout_feed_mod_08a9370cca8e4bda25c11f8557e93830", "1428110138", "no"); INSERT INTO `wp_options` VALUES("1756", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1427550897", "no"); INSERT INTO `wp_options` VALUES("1757", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1427507697", "no"); INSERT INTO `wp_options` VALUES("1760", "_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51", "1427550897", "no"); INSERT INTO `wp_options` VALUES("1761", "_transient_dash_4077549d03da2e451c8b5f002294ff51", "
", "no"); INSERT INTO `wp_options` VALUES("1754", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1427550897", "no"); INSERT INTO `wp_options` VALUES("1755", "_transient_feed_b9388c83948825c1edaef0d856b7b109", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Mar 2015 01:51:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Your WordPress, Streamlined.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 12 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"The easiest, most effective way to secure WordPress in seconds.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Wiegman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/wp-optimize/#post-8691\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jan 2009 04:28:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8691@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Simple but effective plugin allows you to extensively clean up your WordPress database and optimize it without doing manual queries.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"ruhanirabin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WPtouch Mobile Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wptouch/#post-5468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2008 04:58:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5468@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Make your WordPress website mobile-friendly with just a few clicks.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Meta Slider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/ml-slider/#post-49521\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 16:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"49521@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matcha Labs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP Smush.it\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-smushit/#post-7936\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Dec 2008 00:00:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"7936@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Improve performance and get faster load times by optimizing image files with Smush.it for WordPress – “It's the best plugin of its kind.”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alex Dunae\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"bbPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/bbpress/#post-14709\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 13 Dec 2009 00:05:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"14709@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"bbPress is forum software, made the WordPress way.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"MailChimp for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/mailchimp-for-wp/#post-54377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jun 2013 17:32:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54377@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"The best MailChimp plugin to get more email subscribers. Easily add MailChimp sign-up forms and sign-up checkboxes to your WordPress site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Danny van Kooten\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"BackUpWordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/backupwordpress/#post-2236\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 02 Sep 2007 21:15:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2236@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Simple automated backups of your WordPress powered website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Tom Willmot\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Captcha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/captcha/#post-26129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Apr 2011 05:53:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26129@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"This plugin allows you to implement super security captcha form into web forms.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"WP Statistics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-statistics/#post-25318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 20 Mar 2011 09:03:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25318@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Complete statistics for your WordPress site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Mostafa Soufi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Smart Website Tools by AddThis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/addthis/#post-8124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Dec 2008 16:03:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8124@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"AddThis provides the best sharing, social, recommended content, and conversion tools to help you make \nyour website smarter.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"_mjk_\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Shortcodes Ultimate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/plugins/shortcodes-ultimate/#post-25618\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Apr 2011 13:08:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25618@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Supercharge your WordPress theme with mega pack of shortcodes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Vladimir Anokhin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Share Buttons by AddToAny\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/add-to-any/#post-498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Mar 2007 23:08:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"498@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"micropat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WP Retina 2x\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wp-retina-2x/#post-39551\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jun 2012 11:25:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"39551@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Make your website look beautiful and crisp on Retina / High DPI displays.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jordy Meow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 28 Mar 2015 01:54:57 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Fri, 09 Mar 2007 22:11:30 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20150322164651\";}", "no"); INSERT INTO `wp_options` VALUES("1758", "_transient_timeout_plugin_slugs", "1427594097", "no"); INSERT INTO `wp_options` VALUES("1759", "_transient_plugin_slugs", "a:25:{i:0;s:27:\"addquicktag/addquicktag.php\";i:1;s:47:\"advanced-page-manager/advanced_page_manager.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:4;s:43:\"auto-post-thumbnail/auto-post-thumbnail.php\";i:5;s:19:\"bbpress/bbpress.php\";i:6;s:34:\"drag-drop-featured-image/index.php\";i:7;s:33:\"duplicate-post/duplicate-post.php\";i:8;s:25:\"duplicator/duplicator.php\";i:9;s:35:\"dynamic-widgets/dynamic-widgets.php\";i:10;s:31:\"easing-slider/easing-slider.php\";i:11;s:36:\"google-sitemap-generator/sitemap.php\";i:12;s:33:\"heatmap-for-wp/heatmap-for-wp.php\";i:13;s:9:\"hello.php\";i:14;s:29:\"image-widget/image-widget.php\";i:15;s:19:\"jetpack/jetpack.php\";i:16;s:27:\"wpmbytplayer/mbYTPlayer.php\";i:17;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:18;s:39:\"plugin-memorandum/plugin-memorandum.php\";i:19;s:41:\"single-post-widget/single-post-widget.php\";i:20;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:21;s:37:\"wordpress-faq-manager/faq-manager.php\";i:22;s:41:\"wp-database-backup/wp-database-backup.php\";i:23;s:41:\"wp-multibyte-patch/wp-multibyte-patch.php\";i:24;s:21:\"ameba-press/index.php\";}", "no"); INSERT INTO `wp_options` VALUES("1612", "_site_transient_timeout_browser_f4146a70cbbacb460a0479387a0fe28d", "1427738622", "yes"); INSERT INTO `wp_options` VALUES("1613", "_site_transient_browser_f4146a70cbbacb460a0479387a0fe28d", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"36.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes"); INSERT INTO `wp_options` VALUES("1737", "_site_transient_update_core", "O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:62:\"https://downloads.wordpress.org/release/ja/wordpress-4.1.1.zip\";s:6:\"locale\";s:2:\"ja\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://downloads.wordpress.org/release/ja/wordpress-4.1.1.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.1.1\";s:7:\"version\";s:5:\"4.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.1.1\";s:7:\"version\";s:5:\"4.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1427505330;s:15:\"version_checked\";s:5:\"4.1.1\";s:12:\"translations\";a:0:{}}", "yes"); INSERT INTO `wp_options` VALUES("1738", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1427505335;s:7:\"checked\";a:4:{s:22:\"keni6_wp_pretty_130621\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"1.0\";s:14:\"twentyfourteen\";s:3:\"1.3\";s:14:\"twentythirteen\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}", "yes"); INSERT INTO `wp_options` VALUES("1412", "easingslider_version", "2.2.1.1", "yes"); INSERT INTO `wp_options` VALUES("1413", "easingslider_settings", "O:8:\"stdClass\":3:{s:14:\"image_resizing\";b:0;s:11:\"load_assets\";s:6:\"header\";s:11:\"remove_data\";b:0;}", "yes"); INSERT INTO `wp_options` VALUES("1417", "easingslider_lite_slider_id", "81", "yes"); INSERT INTO `wp_options` VALUES("1418", "easingslider_upgraded_from_lite", "1", "yes"); INSERT INTO `wp_options` VALUES("1419", "easingslider-customizer_upgraded_from_lite", "1", "yes"); INSERT INTO `wp_options` VALUES("1086", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"support@tonosama.biz\";s:7:\"version\";s:5:\"4.1.1\";s:9:\"timestamp\";i:1424316778;}", "yes"); INSERT INTO `wp_options` VALUES("1750", "_transient_timeout_feed_4c74a77fb0311cda9aef46304170e010", "1427550896", "no"); INSERT INTO `wp_options` VALUES("1751", "_transient_feed_4c74a77fb0311cda9aef46304170e010", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:132:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"日本語 » Recent Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"フォーラム\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"ja\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Mar 2015 01:54:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:35:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"tane2015 : "4つ目のh2タグの後にを自動挿入する方法"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148671#post-206330\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Mar 2015 01:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206330@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"

ご丁寧にありがとうございます。
\nこちらでやってみようと思います。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"tane2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"mayui : "レスポンシブサイトのcssについて"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148948#post-206329\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Mar 2015 00:49:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206329@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:774:\"

nobitaさんmura0403さんありがとうございました。

\n

とても参考になりました。

\n

回答を読めば読むほど新しい知識が増え、とても勉強になりました。
\nmura0403さんの回答は他の方法を提示してくれて簡潔でわかりやすかったです。
\nnobitaさんの回答はこれから勉強していく上でのヒントがかなり出ていて、はかどりそうです。
\n詳しく注釈をつけてもらえて本当にありがたかったです。

\n

最後の回答により何か繋がった気がして、やっと反映されました!

\n

ご丁寧な回答ありがとうございます。
\nもっとwordpressのルールを理解したいと思います。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"mayui\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"kemusi : "特定のカテゴリーに属する子カテゴリー名を取得"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148967#post-206328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Mar 2015 00:28:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206328@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:503:\"

158の子の三つが出てきてしまいます。

\n

三つの内の該当する一つのブランドを取得したいと思っています。
\n例えば、カテゴリー おすすめ ブランド ナイキ としたら
\n「ナイキ」

\n

カテゴリー おすすめ ブランド アディダスとしたら
\n「アディダス」と ブランドの中の 名前だけを取得すると言った感じです。

\n

説明がわかりづらくてすいません。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"kemusi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"gblsm : "特定のカテゴリーに属する子カテゴリー名を取得"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148967#post-206327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 23:31:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206327@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:503:\"

作られているカテゴリーは、カテゴリーIDで言うと158の子に159,160,161の3つだけがある(他には無い)ですね。孫があるかもしれませんが、上記のコードだと孫は非表示になる筈です。

\n

子全ての一覧が出てしまいます。\n

\n

もう少し詳しく教えてください。158の子に4つ以上あって全部が出てしまう、それとも158の孫があってそれも出てしまう?\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"gblsm\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"nobita : "レスポンシブサイトのcssについて"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148948#post-206326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 22:50:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206326@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1806:\"

ご参考まで、mura0403 さんが示された

\n
<link rel="stylesheet" media="screen and (max-width: 640px)" type="text/css" href="<?php bloginfo('template_url'); ?>/フォルダー名/CSSのファイル名.css" />
\n

記述の仕方は、以下のように記述する事も出来ます。
\n

add_action( 'wp_enqueue_scripts', 'register_plugin_styles' );\n\nfunction register_plugin_styles() {\n  //ワードプレスのCSSをすべて集約している部分に対して、登録を行う\n    wp_register_style( 'my-style',get_template_directory_uri(). '/css/extend.css' ),array(),1, 'screen and (max-width: 640px)');\n  //CSSを呼び出して、指定場所に表示する\n    wp_enqueue_style( 'my-style' );\n}
\n

と書くこともできます。

\n

テーマを作ろうとする場合は、自分の作ったCSSをどう表示させるかという事に気が取られがちですが、実際には、WordPress本体のCSS、プラグインによるCSS、テーマによるCSSが使われています。ヘッダーに直書きしても動作はしますが、

\n

CSSは、カスケードして適用されるので、順番のコントロールが出来ないという事は、運を天に任す事になるわけですが、そういう問題は、あまり発生しなかったり、発生しても !importantで乗り越えちゃってる みたいなところがあるのではないでしょうか

\n

「wp_enqueue_style を使ったほうが幸せになれるかもしれないという話」という記事はよくまとまっているので、参考にするといいと思います。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"nobita\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"nobita : "テーマ[Chocolat] 特定のページにおけるサイドバーの削除"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148944#post-206325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 22:05:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206325@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:877:\"

もし、固定ページのIDに書き換えても、動作しないときには、

\n

ブログアーカイブとして表示されるはずの固定ページを開いて

\n
function function_name( $classes ) {\n\n	global $post;\n\n	var_dump( $post->ID );
\n

var_dump( $post->ID );を記述して、ソースのbody要素を見ていただくと
\nクラスの手前ぐらいに int(xxx)と表示されると思いますので、ページのIDと異なっていれば、
\nコードの数字のところを、それに置き換えてみてください。

\n

int(xxx)が固定ページの編集画面で表示されるものと異なっていた場合、お手数ですが、違っていたと書き込んでもらえますか?

\n

styleは、一番上の一個は、なくても大丈夫のようです。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"nobita\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"mayui : "レスポンシブサイトのcssについて"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148948#post-206324\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 20:52:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206324@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3459:\"

ftpsを使用して編集をしております。
\n試しにstyle.cssと同じ階層に置いてみましたがテーマの編集には見えますが中身は反映されずです。
\nnobitaさんの下部の文をみてエラーで管理画面がぐちゃぐちゃになるのは怖いので元の通り、cssフォルダを作りその中に各cssを作りました。

\n

mura0403さんのようにcss内で必要な個所を書き換えるといった方法では対応できないほど大きな変更になりstyle.css内が煩雑してしまうというのと、今後制作する度に外部のcssを読み込むといった作業が多くなりそうなので練習のためにもcssファイルを分ける方法はおさえておきたいです。

\n

なるべくなら@importを使わずヘッダーで分岐させたかったのですが、mura0403さんのように書いてみましたが変化はなかったです。

\n

絶対urlということで\'http://webサイト名/wp-content/themes/site1/css/mini-style.css\'として書いてみました。
\nEnqueue Style の指定は、yesにしてみました。

\n
// Register Style\nfunction サイト名() {\n\n	wp_register_style( 'mini-style', 'http://サイト名/wp-content/themes/site1/css/mini-style.css', array( 'style' ), false, 'all' );\n	wp_enqueue_style( 'mini-style' );\n\n}\n\n// Hook into the 'wp_enqueue_scripts' action\nadd_action( 'wp_enqueue_scripts', 'サイト名' );
\n

そもそもこれが何を目的として何のためにやってるのかが理解できず、htmlやcss側にどう書いていいのかがわかりません。

\n

htmlには
\n<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" media="all">

\n

style.cssには冒頭に
\n@import url ("css/mini-style.css") only screen and(min-width:750px);

\n

と記述しました。

\n

これでhtmlの中にstyle.cssが読み込まれstyle.css内でmin-width:750pxの条件が揃ったときにcssフォルダ内からmini-style.cssが読み込まれるのだと思っていましたが読み込まれずです。

\n

某ページでfunctions.phpの記述が増えてくると管理しずらいのでフォルダを作り分けるといったものを見かけました。
\nその通りに制作し、
\nlibというフォルダを作り数種類のphpフォルダを作って読み込ませる。
\nfunctions.phpに

\n

require_once locate_template('lib/ファイル名.php');

\n

と記述をしたところフォルダ分けされfunctions.phpも動いてるのでcssも同じように何か書けばフォルダ分けされるのだろう位で考えていましたが調べてもたどり着けないといった感じです。

\n

nobitaさんが仰ってるのに近いのがこれかな?と思い
\nhttp://webourgeon.com/2012/12/17/twenty-twelve-child-and-wp-enqueue-style/

\n

http://viral-community.com/wordpress/wp-child-theme-5818/

\n

なども見てみましたがやはりまだつかめずにいます。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"mayui\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"맹조 : "テーマ「anew」に関して"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149004#post-206323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 20:49:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206323@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1562:\"

この「anew」ですが、公式ディレクトリで見つけきれなかったので
\nstudiokikka のサイトのフッターリンクをたどってダウンロード、試用してみました。
\nhttp://magnolia.amadeusrecord.net

\n

結論から申し上げればテーマをインストールしただけでも、わからないという3点は何ら追加の必要はありませんでした
\nテーマ・オプションの設定と、カスタマイズでナビゲーション設定をしただけです。

\n

ヘッダー部分にツイッター等のアイコンが表示されない。

\nこれはアイコン・フォントを使用しているのでアイコン画像は必要ありません。
\nテーマ・オプションのSocial Link で選んだらヘッダーのロゴの右とフッターに表示されました。

\n

ブログ下部にカテゴリーが表示されない。

\nカスタマイズでフッターを選んだ時に既に表示されてました。

\n

記事の「続きを読む」の文字数を増やしたい。

\nExcerpt Length の箇所で34文字がデフォルト設定されていました。0〜100の間で設定できます。
\nそれ以上の文字数を必要とするなら、デフォルトでは Show Excerpt になってますから Show Content にラジオボタンで選びなおしましょう。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"맹조\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"pomfree : "カスタムフィールドで画像をで出力したい。"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149007#post-206322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 17:32:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206322@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1000:\"

閲覧ありがとうございました。
\n無事解決しました。

\n

http://memo-tan.com/wordpress/257_20140709.html
\nこちらを参考にさせて頂きました。

\n
<?php\n	$attachment_id = get_field('カスタムフィールド名');\n	$size = "full"; // (thumbnail, medium, large, full or custom size)\n	$image = wp_get_attachment_image_src( $attachment_id, $size );\n	$attachment = get_post( get_field('カスタムフィールド名') );\n	$alt = get_post_meta($attachment->ID, '_wp_attachment_image_alt', true);\n	$image_title = $attachment->post_title;\n?>\n<div date-src="<?php echo $image[0]; ?>" width="<?php echo $image[1]; ?>" height="<?php echo $image[2]; ?>" alt="<?php echo $alt; ?>" title="<?php echo $image_title; ?>" />
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"pomfree\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"kjmtsh : "特定のカテゴリを持つ記事を別カラムに表示したい"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148962#post-206321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 17:11:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206321@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2846:\"

結論から言うと、可能です。ただ、条件がどんなものかによるかもしれません。Blog と Art Work の関係がどうなっているか、また、1ページで終わるのか、複数ページになるのか (「ページング」と呼びます) によって、2種類の投稿の関係は、次のどれかになると思います。

\n
    \n
  1. Blog、Art Work ともに特定の数が表示できればよい (つまり、ページングをしない)
  2. \n
  3. Blog は複数ページだが、Art Work は2ページ目以降も同じ表示でよい
  4. \n
  5. Blog は同じ表示でよいが、Art Work は複数ページになる
  6. \n
  7. Blog、Art Work ともに2ページ目以降内容が変わっていく (両者ともページングをする)
  8. \n
\n

1は、お考えのとおり、固定ページで可能です (アーカイブ系のページでもできます)。また、最も容易に実現できる形式です。2および3は、固定ページを使わない方がよいと思います。ページングの処理でつまずく可能性が高いからです。アーカイブ系のページを使うのがお勧めです。4が、最も難しいと思います (可能ではあると思いますが)。

\n

QweR95 さんは、「ウィジェット」を扱ったことがありますか? ページングをしない場合、複数の投稿をページに表示するというのは、「ウィジェット」の見せ方を変えているということと同じです。どちらか一方を複数ページにするということは、そちらが主で、他方が「ウィジェット」ということになります。4も結果としては同じ考え方になると思いますが、片方はページ毎に内容を変える「ウィジェット」ということになりそうです。ある程度トリッキーなことをしないと実現できないでしょう。

\n

もっと他のアイディアをお持ちの方がいらっしゃるかもしれませんし、これがすべてでだと主張するつもりもありません。フォーラムでの質問の量を見ると、ページングの処理をしたくなったときにうまくいかなくなるケースが多いようです。それだけに、ケース・スタディは多いともいえますが、すんなり解決するのは少ないように思います。

\n

最後に、2つの投稿の区別ですが、同時に扱われることがないなら、「カスタム投稿タイプ」(Custom Post Type) を使った方がいいかもしれません。分類 (タクソノミー) 系の関数は豊富に用意されていますが、その分、ちょっと変則なことをしようとすると、データベースの扱いが格段に難しくなってしまうからです。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"kjmtsh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Mr_Press : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:57:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206320@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"

megane9988様

\n

かしこまりました。

\n

ご丁寧に回答いただき、感謝しております。

\n

以上をもって、この件は解決にしたいと思います。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Mr_Press\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"맹조 : "テーマに投稿できない"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149001#post-206319\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:52:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206319@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:480:\"

システムの判断次第なので、一概には発生しませんが
\nリンクのアドレスがとても長い、
\nリンクに対して本文が短い、
\nそうしたケースで受け付けない、スパムかもしれないと判断されることは
\n通常WordPress運営でもありがちです。
\np.s. 私事ですが100文字に満たないコメントは、個人ブログでは受け付けないように設定しています。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"맹조\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"megane9988 : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:51:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206318@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"

> そうしたら、日付の先頭に例えば「d」と付加して、
\n> http://example.com/news/d20150327
\n> みたいな感じで工夫するしか無いと考えてよいでしょうか?

\n

そうですね、そういった対応をお勧めいたします。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"megane9988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Mr_Press : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:50:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206317@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:586:\"

megane9988様

\n

> さらに、数字だけのスラッグにされていませんか?

\n

 はい、その通りでございます。

\n

理由は分かりました。
\nWordPressの仕様なのでしょうか。

\n

そうしたら、日付の先頭に例えば「d」と付加して、

\n

http://example.com/news/d20150327

\n

みたいな感じで工夫するしか無いと考えてよいでしょうか?
\n※ちなみに上記方法でしたら上手くいきました。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Mr_Press\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"megane9988 : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:49:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206316@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:800:\"

すでにそういったフォーラムや記事がありましたね

\n

https://ja.forums.wordpress.org/topic/127243

\n

日付をパーマネントリンクにしてしまうことを許可すると、例えば月別一覧や年別一覧などは
\n通常 http://example.com/2014/12 のようになりますので、そことの判定がおかしなことになりかねません。そういった理由から -2 がつくようです。

\n

むりくり頑張ればなんとかなるかもですが、WordPress本体に対して、手を加えたり、それ相当の対応をする必要がありますので、全くお勧めできません。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"megane9988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"맹조 : "Stinger5でテーブルタグを使った際にレイアウトが崩れる"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149000#post-206315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:45:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206315@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:244:\"

WordPressのギャラリー形式で支障がないとしたら、
\nChromeとSafariでは正常に表示ができているので、IEとFireFoxとの互換。
\nスタイルシートの書き方に問題が有るんですよ。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"맹조\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"pomfree : "カスタムフィールドで画像をで出力したい。"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149007#post-206314\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206314@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:789:\"

カスタムフィールドで画像を<div data-src=\"\">で出力したいのですがどのように書けばいいでしょうか?

\n

<?php $attachment_id = get_field(\'スラッグ名\',$post->ID);
\n echo wp_get_attachment_image( $attachment_id, \"スラッグ名\" );
\n ?>

\n

現在このコードでimg画像を出力しております。

\n

下が意味不明なコードを書いて挑戦した足跡です...

\n

<?php
\n$attachment_id = get_field(\'スラッグ名\',$post->ID);
\necho wp_get_attachment_image_src ( $attachment_id, \"スラッグ名\" );
\necho \"<div date-src=>\";
\n?>

\n

どうかよろしくお願いします。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"pomfree\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Mr_Press : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206313\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:37:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206313@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:751:\"

megane9988様

\n

なんと「hoghoge9988」だったら上手くいきました!

\n

でも、日付にするとダメなのです。
\nなぜ日付はダメなのでしょうか・・・

\n

ちなみに有効にしているプラグインは以下の通りです。
\n.html on PAGES
\nTinyMCE Advanced
\nWP Multibyte Patch

\n

他、パーマリンク設定は「カスタム構造」を選択して「/%post_id%」を設定しています。

\n

何とかパーマリンクを・・・
\nhttp://example.com/news/20150327
\nというように日付で扱いたいのですが。

\n

何かをヒントはありますでしょうか?\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Mr_Press\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"megane9988 : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206310\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:26:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206310@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1250:\"

困りましたね。たとえば、いまのパーマネントリンクを”hoghoge9988”など、おそらく全く重複のないパーマネントリンクにされるとどうでしょうか。

\n

また、Custom Permalinks https://wordpress.org/plugins/custom-permalinks/ のような、パーマネントリンクを設定するようなプラグインは利用されていませんでしょうか。

\n

さらに、数字だけのスラッグにされていませんか?

\n

WordPressは記事も固定ページもそれぞれ内部的に固有のIDを持ちます。このIDは下書きをしたり、削除したりしてもどんどん数が増えていく、インクリメント http://e-words.jp/w/%E3%82%A4%E3%83%B3%E3%82%AF%E3%83%AA%E3%83%A1%E3%83%B3%E3%83%88.html という処理によって付与されています。

\n

そのため、以前に利用されたことのあるIDがパーマネントリンクに設定された場合、重複とみなし -2がつくようです。

\n

実際に私の利用してるWordPressでも同様の挙動がみられましたので、その可能性が高いかとおもいます。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"megane9988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"kjmtsh : "タグ一覧を表示したいのですが、上手くいきません"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148969#post-206309\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:23:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206309@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"

カテゴリと同様、$data->count で数値が取れませんか?\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"kjmtsh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Mr_Press : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206308\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:23:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206308@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:526:\"

megane9988様

\n

早速のご回答、どうもありがとうございます。

\n

削除できるものは全て削除し、重複するものは無くしました。
\nでもやはり固定ページのパーマリンクの編集をすると
\n勝手に「-2」が付与されてしまいます。
\n「-1」であれば諦めますが、中途半端な「-2」が勝手に
\n付与されてしまうのはいただけません。

\n

他に思い当たる箇所はないでしょうか?\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Mr_Press\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"kjmtsh : "メディアを追加が無反応"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148946#post-206307\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:18:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206307@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3035:\"

@Hinaloe さん

\n

\nアップロードにFlashを利用していない...\n

\n

おっと、そうでしたか。私が見てたのは、恐るべき「後方互換性」のためのコードってことですね。

\n

\n手元のIE10で試してみたところいずれも問題は発生しませんでした。\n

\n

これって、xdomain の無料サーバが相手ではありませんよね? 互換モードのテストはもうちょっと前のバージョンでやったほうがいいかもです。IE10 は、同じ Chakra ですし、11で追加された feature は必要ないので。ちなみに、互換モードのときは、ログインした途端に、でっかい警告が出るようになってます (最初に見たときには、広告かと思いましたです)。

\n

ちゃんとしたメッセージが出せないというのは、4.1.1 の場合、どうなんでしょうね? 少なくとも、特定の条件下では機能しないということがわかりました。「特定の条件」がわかりませんけど。

\n

@natzmahre-19810825 さん

\n

\nIE11にもネットワークプロファイラがあるはずなのでそれの該当ページの応答本文を確認してみてください。\n

\n

「ネットワーク」と「プロファイラ」ふたつのタブがありますから、「ネットワーク」の方を見てください。

\n

\n4.0位にデグレードするのは有効でしょうか?\n

\n

あまり有効ではないかもしれません。ついに、ベニー・グッドマンまできて、ビッグバンドのスターが出そろったバージョンで、とてもよいバージョンだったとは思いますが、今のところ何もはっきりしたことはわからないという状態ですからね。アップロードが失敗することはもちろん問題ですが、そのときに、エラーメッセージが出ないのは、4.0 では普通で、4.1 ではおかしなことです。少なくとも、リリースノートを見る限りでは、メッセージが出せるようになったはずのバージョンだからです。サーバ設定で影響を受けそうなところをちょっと読みましたが (もちろん、全部は読み切れていません)、わかりませんでした。サーバのログを見ればすぐに解決できそうにも見えますが...

\n

ブラウザアップロードもダメということから、まず、PHP が意図したとおりに動作していないわけですが、「メディアの追加」はまたちょっと違います。一応、JavaScript を使わずに PHP だけでアップロードするテストコードを書いてみましたが、natzmahre-19810825 さん、試してみますか? ここに張り付けるには長いので、やってみようということでしたら、お知らせください。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"kjmtsh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"hokutonojikei : "新規ユーザーが勝手に登録された"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148902#post-206306\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:13:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206306@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:190:\"

貴重なアドバイスありがとうございました。
\nまた疑問点は自分で調査してもダメな場合
\n改めてトピ立てさせていただきます。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"hokutonojikei\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"megane9988 : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206305\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 16:01:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206305@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:296:\"

下書きや、非公開、ゴミ箱に入っているページのスラッグ(パーマネントリンク)も重複の対象となります。同じスラッグのページがその辺りにある場合、完全に削除すると、-1 などは付与されなくなるはずです。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"megane9988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"mura0403 : "4つ目のh2タグの後にを自動挿入する方法"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148671#post-206304\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 15:47:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206304@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2026:\"

tane2015さん

\n

やってみました。
\n「The Repeater Field」の機能で繰り返しフィールドを使い以下のループを組みました。

\n
<?php if ( get_field('サブフィールドを持っているフィールド名') ): ?>\n <?php while( has_sub_field('サブフィールドを持っているフィールド名') ): ?>\n<div>\n<h3><?php esc_html( the_sub_field('sub_title1') ); ?></h3>\n<div>\n<?php esc_html( the_sub_field('content1') ); ?>\n</div>\n<h3><?php esc_html( the_sub_field('sub_title2') ); ?></h3>\n<div>\n<?php esc_html( the_sub_field('content2') ); ?>\n</div>\n<h3><?php esc_html( the_sub_field('sub_title3') ); ?></h3>\n<div>\n<?php esc_html( the_sub_field('content3') ); ?>\n</div>\n<h3><?php esc_html( the_sub_field('sub_title4') ); ?></h3>\n<div>\n<?php esc_html( the_sub_field('content4') ); ?>\n</div>\n </div>\n<!--nextpage-->\n<?php endwhile; ?><?php endif; ?>
\n

これで大丈夫だと思います。
\nただ、これだと標準のコンテンツエディターが邪魔になるので「Advanced Custom Fields」の機能で非表示設定を行い、ソースから以下のソースを消すと良いかもです。
\n<?php custom_wp_link_pages(); ?>
\n後は抜粋に要約文を入れればそれなりに生成できると思います。

\n

投稿画面の中に「追加」ボタンができてますので追加させれば、自動でページが追加されると思うのですが、このやり方ですと最後に無駄な<!--nextpage-->ができてしますので少し工夫が必要です。

\n

こんな感じでいかがでしょうか。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"mura0403\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Mr_Press : "【固定ページ】 パーマリンク編集時、勝手に-2が付く"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149006#post-206303\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 15:38:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206303@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1510:\"

お世話になっております。

\n

今、下記URLのWebサイトを参考にしています。

\n

http://www.adminweb.jp/wordpress/permalink/index3.html

\n

この記事は「投稿」に関するものですが、この記事によると・・・

\n

同じ日に同じタイトルの記事を公開するとパーマリンクがまったく同じになってしまいます。その場合はパーマリンクのタイトルの後ろに「-2」や「-3」のように数字が自動的に付与されます。

\n

とのことです。

\n

上記理由なら納得します。

\n

でも、私が今扱っているWordPressで固定ページのパーマリンクの編集をすると、
\n勝手に「-2」とか「-3」が付きます。
\n例えば、
\nhttp://example.com/news/20150327-2
\nのようになってしまいます。

\n

http://example.com/news/20150327の固定ページが既に存在するなら
\n納得できますが、存在しないパーマリンクなのに何故「-2」が
\n勝手に付加されてしまうのでしょうか?

\n

何かご存知の方、ご教授ください。
\nよろしくお願い致します。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Mr_Press\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"uick : "テーマ[Chocolat] 特定のページにおけるサイドバーの削除"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148944#post-206302\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 14:53:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206302@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1807:\"

大変お手数をおかけしており恐縮です。
\n教えていただいた通りにfunction.phpとstyle.cssを書き換えました。
\n結果、以下のように表示されてしまいます。

\n

・ブログとカスタム投稿のシングルページにはサイドバーが表示されており、スペースも正しく確保されている状態
\n・ブログのアーカイブページにはサイドバー自体も、サイドバーを入れるためのスペースも生成されていない状態
\n・アーカイブ以外のindex.phpも同じ状態(サイドバー無し、スペース無し)

\n

※念のためプラグインをすべて停止してみても結果は変わりませんでした

\n

おそらく私の指定方法が間違っていて、アーカイブのindex.phpとその他のindex.phpの振り分けが出来ていないんだと思います…
\n何度もお手を煩わせて申し訳ありませんが、どこを間違えてしまっているのかチェックしていただけないでしょうか。

\n

function.phpは、

\n
if( ( isset( $post->ID )  && 27746 !== $post->ID ) || is_404() ) { //blog archive id
\n

\n
if( ( isset( $post->ID )  && 254 !== $post->ID ) || is_404() ) { //blog archive id
\n

このように27746の部分をブログのアーカイブページのIDに書き換えています(変更箇所はこれで合っているでしょうか?)
\nその他の部分は触っていません。

\n

cssは以下のように指定しています。

\n
body:not(.single) #sidebar{\n    display:none;\n}\n.inactive-sidebar #sidebar{\n    display:none;\n}\n.active-sidebar #sidebar{\n    display:block;\n}
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"uick\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"hideji123 : "テーマ編集のプラグイン"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149005#post-206301\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 14:15:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206301@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"

コンテンツ幅やヘッダーの高さ等の変更を
\n直接PHP編集ではなく、数値入力やラジオボタン選択で実行できる
\nプラグインがあったと思うのですが、ご存知のかたご紹介いただけないでしょうか。

\n

よろしくお願い致します。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"hideji123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Hinaloe : "違うテーマが読み込まれる"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148992#post-206300\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 14:11:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206300@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"

現在、テーマ名【simple_wp】というのを有効化して使っているのですが\n

\n

どこで配布されてますか?\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Hinaloe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"studiokikka : "テーマに投稿できない"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149001#post-206299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 14:09:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206299@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"

無事にテーマの方に投稿できました!
\nリンクが2つあるのがダメだったんですかね?
\nありがとうございます。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"studiokikka\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"studiokikka : "テーマ「anew」に関して"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149004#post-206298\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 14:08:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206298@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1726:\"

テーマ「anew」をお借りしておりますがいくつかわからないことがあります。
\nサイトはこちらです。

\n

●ヘッダー部分にツイッター等のアイコンが表示されない。
\nダウンロードした中にアイコン画像に入ってないようなので
\nこれはデモ部分だけで元からないのでしょうか。

\n

ないのでしたら、ヘッダー部分にアイコンを表示させる方法を教えて下さい。
\nサイドバーやフローティングでの表示方法はわかりますが
\nヘッダー左に出す方法がわかりません。

\n

●ブログ下部にカテゴリーが表示されない。
\nデモ画面ではサイドバーだけでなくフッターにもサイトマップが表示されてますが
\n今の状態ですと出てきません。
\nどこをいじれば出てきますでしょうか。

\n

●記事の「続きを読む」の文字数を増やしたい。
\nデフォルトでこうなってます。
\nif ( ! function_exists( \'alx_excerpt_length\' ) ) {

\n

function alx_excerpt_length( $length ) {
\n return ot_get_option(\'excerpt-length\',$length);
\n }

\n

}
\nadd_filter( \'excerpt_length\', \'alx_excerpt_length\', 999 );
\nもう少し文字数を増やしたいのですが、どこを直せばいいのか教えてください。

\n

それと、「続きを読む」を押す前段階の記事に改行が反映されないのですが
\n改行が反映するような方法はありますでしょうか。

\n

よろしくお願いします。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"studiokikka\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Hinaloe : "提案:公式プラグイン、テーマ制作者とエンドユーザーのために"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/148998#post-206297\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 14:02:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206297@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:152:\"

+1

\n

公式がローカライズ整備中だからこそ更にそれが整うまでの繋ぎもあってもいいかと(?)\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Hinaloe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"naomixx : "固定ページに全てのカテゴリーとタグの一覧を表示したい"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149003#post-206296\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 13:57:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206296@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:965:\"

WordPress のバージョン:version 4.1
\nPHP、MySQL のバージョン:php5.5.18 MySQL5

\n

よろしくお願いします。
\n調べたのですが、わからないので教えていただけたら嬉しいです。

\n

固定ページにカテゴリーとタグの一覧を表示したいと思っています。
\nカテゴリーとタグは違うページです。

\n

今までは
\n<?php
\n $cat = get_the_category();
\n?>
\nなどで表示ができていたのですが(phpのプラグインを使用して)、WordPress をバージョンアップしてから、phpのプラグインが使用できなくなり、真っ白な状態になってしまいました。

\n

phpのプラグインを使用すると変な文字などが出てくるので、これはもう使用しないとして、他に表示する方法などはありますか?

\n

よろしくお願いしますm(__)m\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"naomixx\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Mr_Press : "固定ページへカスタム構造のパーマリンクを適用したい"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149002#post-206295\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 13:32:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206295@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:752:\"

はじめまして。
\n最近WordPressを始めた者です。

\n

他のWebサイトを探して、私が知りたい情報が無かったので、
\nこちらに質問させていただきます。

\n

固定ページで作成したパーマリンクに自動的に日付を設定したく、
\nパーマリンク設定のカスタム構造で「/%year%%monthnum%%day%」
\nとしました。

\n

上記は「投稿」のパーマリンクでは有効のようですが、「固定ページ」
\nでは有効になりません。

\n

どのようにしたら固定ページでも、パーマリンク設定のカスタム構造に
\n設定したものが適用されるようになるのでしょうか?\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Mr_Press\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"kero2750 : "Stinger5でテーブルタグを使った際にレイアウトが崩れる"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.forums.wordpress.org/topic/149000#post-206294\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Mar 2015 13:30:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"206294@https://ja.forums.wordpress.org/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:393:\"

お返事ありがとうございます。ギャラリー形式では問題ありませんでしたが、画像の下に文字を入れたりリンクを入れたりするのでテーブルタグをどうしても使わないといけません。
\nChromeとSafariでは正常に表示ができているので、IEとFireFoxでも同様に表示できるようにしたいです。\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"kero2750\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:36:\"https://ja.forums.wordpress.org/rss/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 28 Mar 2015 01:54:56 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sat, 28 Mar 2015 01:02:19 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20150322164651\";}", "no"); INSERT INTO `wp_options` VALUES("420", "jetpack_available_modules", "a:1:{s:5:\"3.4.1\";a:36:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:9:\"site-icon\";s:3:\"3.2\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}", "yes"); INSERT INTO `wp_options` VALUES("143", "keni_version", "6.0", "yes"); INSERT INTO `wp_options` VALUES("139", "theme_mods_twentyfourteen", "a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418467118;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}", "yes"); INSERT INTO `wp_options` VALUES("140", "current_theme", "賢威6 プリティ版", "yes"); INSERT INTO `wp_options` VALUES("141", "theme_mods_keni6_wp_pretty_130621", "a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:0;}}", "yes"); INSERT INTO `wp_options` VALUES("142", "theme_switched", "", "yes"); INSERT INTO `wp_options` VALUES("150", "_bbp_private_forums", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("151", "_bbp_hidden_forums", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("149", "recently_activated", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("152", "_bbp_db_version", "250", "yes"); INSERT INTO `wp_options` VALUES("161", "plugin_memorandum", "a:25:{s:19:\"akismet/akismet.php\";s:9:\"スパム\";s:19:\"bbpress/bbpress.php\";s:17:\"BBプレス本体\";s:39:\"plugin-memorandum/plugin-memorandum.php\";s:21:\"プラグインメモ\";s:37:\"wordpress-faq-manager/faq-manager.php\";s:79:\"QAサイト作成\r\nhttp://techacademy.jp/magazine/4367\r\nhttp://pjoy.net/?p=4650\";s:41:\"wp-multibyte-patch/wp-multibyte-patch.php\";s:33:\"ディフォルトにあるもの\";s:27:\"addquicktag/addquicktag.php\";s:64:\"事前登録定型文搬入\r\nhttp://netbiz-life.com/archives/845\";s:47:\"advanced-page-manager/advanced_page_manager.php\";s:83:\"ページ管理ツール\r\nhttp://kachibito.net/wordpress/advanced-page-manager.html\";s:34:\"drag-drop-featured-image/index.php\";s:91:\"アイキャッチ画像 ドラッグ化\r\nhttp://netaone.com/wp/drag-drop-featured-image/\";s:35:\"dynamic-widgets/dynamic-widgets.php\";s:51:\"ページ、投稿毎に表示レイアウト変更\";s:29:\"image-widget/image-widget.php\";s:39:\"サイド 画像 ウィジット用\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:39:\"投稿、ページ、文字パレット\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:59:\"SEO対策\r\nhttp://bazubu.com/all-in-one-seo-pack-23836.html\";s:19:\"jetpack/jetpack.php\";s:0:\"\";s:43:\"auto-post-thumbnail/auto-post-thumbnail.php\";s:65:\"アイキャッチ自動取得\r\nhttp://naruhiko1111.com/1526.html\";s:36:\"google-sitemap-generator/sitemap.php\";s:66:\"サイトマップ自動\r\nhttp://wordpress.siyouyo.com/plugin/748/\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:21:\"ページビルダー\";s:41:\"single-post-widget/single-post-widget.php\";s:223:\"投稿や固定ページのURLを指定するとその記事のアイキャッチ画像(投稿サムネール)や記事の抜粋を単独で出力するプラグインです。\r\nhttps://firegoby.jp/wp/single-post-widget\";s:33:\"duplicate-post/duplicate-post.php\";s:15:\"ページ複製\";s:41:\"wp-database-backup/wp-database-backup.php\";s:0:\"\";s:21:\"ameba-press/index.php\";s:0:\"\";s:25:\"duplicator/duplicator.php\";s:91:\"ワードプレス引越しツール\r\nhttp://design-plus1.com/tcd-w/2014/10/duplicator.html\";s:33:\"heatmap-for-wp/heatmap-for-wp.php\";s:0:\"\";s:9:\"hello.php\";s:0:\"\";s:31:\"easing-slider/easing-slider.php\";s:0:\"\";s:27:\"wpmbytplayer/mbYTPlayer.php\";s:20:\"背景動画設定\r\n\";}", "yes"); INSERT INTO `wp_options` VALUES("165", "drag-drop-post-types", "a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}", "yes"); INSERT INTO `wp_options` VALUES("166", "drag-drop-file-types", "a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}", "yes"); INSERT INTO `wp_options` VALUES("167", "drag-drop-user-capability", "manage_options", "yes"); INSERT INTO `wp_options` VALUES("168", "drag-drop-page-reload", "0", "yes"); INSERT INTO `wp_options` VALUES("170", "dynwid_version", "1.5.9", "yes"); INSERT INTO `wp_options` VALUES("172", "_image_widget_version", "4.1", "yes"); INSERT INTO `wp_options` VALUES("175", "aioseop_options", "a:74:{s:12:\"aiosp_donate\";N;s:16:\"aiosp_home_title\";N;s:22:\"aiosp_home_description\";s:0:\"\";s:20:\"aiosp_togglekeywords\";i:0;s:19:\"aiosp_home_keywords\";N;s:9:\"aiosp_can\";i:1;s:30:\"aiosp_no_paged_canonical_links\";i:0;s:20:\"aiosp_rewrite_titles\";i:1;s:20:\"aiosp_force_rewrites\";i:1;s:24:\"aiosp_use_original_title\";i:0;s:16:\"aiosp_cap_titles\";i:1;s:14:\"aiosp_cap_cats\";i:1;s:23:\"aiosp_page_title_format\";s:27:\"%page_title% | %blog_title%\";s:23:\"aiosp_post_title_format\";s:27:\"%post_title% | %blog_title%\";s:27:\"aiosp_category_title_format\";s:31:\"%category_title% | %blog_title%\";s:26:\"aiosp_archive_title_format\";s:30:\"%archive_title% | %blog_title%\";s:23:\"aiosp_date_title_format\";s:21:\"%date% | %blog_title%\";s:25:\"aiosp_author_title_format\";s:23:\"%author% | %blog_title%\";s:22:\"aiosp_tag_title_format\";s:20:\"%tag% | %blog_title%\";s:25:\"aiosp_search_title_format\";s:23:\"%search% | %blog_title%\";s:24:\"aiosp_description_format\";s:13:\"%description%\";s:22:\"aiosp_404_title_format\";s:33:\"Nothing found for %request_words%\";s:18:\"aiosp_paged_format\";s:14:\" - Part %page%\";s:17:\"aiosp_enablecpost\";s:2:\"on\";s:19:\"aiosp_cpostadvanced\";i:0;s:17:\"aiosp_cpostactive\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:18:\"aiosp_cpostnoindex\";a:0:{}s:19:\"aiosp_cpostnofollow\";a:0:{}s:17:\"aiosp_cposttitles\";i:0;s:21:\"aiosp_posttypecolumns\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:15:\"aiosp_admin_bar\";s:2:\"on\";s:23:\"aiosp_custom_menu_order\";s:2:\"on\";s:19:\"aiosp_google_verify\";s:0:\"\";s:17:\"aiosp_bing_verify\";s:0:\"\";s:22:\"aiosp_pinterest_verify\";s:0:\"\";s:22:\"aiosp_google_publisher\";s:0:\"\";s:28:\"aiosp_google_disable_profile\";i:0;s:28:\"aiosp_google_author_advanced\";i:0;s:28:\"aiosp_google_author_location\";a:1:{i:0;s:3:\"all\";}s:29:\"aiosp_google_enable_publisher\";s:2:\"on\";s:30:\"aiosp_google_specify_publisher\";N;s:20:\"aiosp_google_connect\";N;s:25:\"aiosp_google_analytics_id\";N;s:32:\"aiosp_ga_use_universal_analytics\";i:0;s:15:\"aiosp_ga_domain\";N;s:21:\"aiosp_ga_multi_domain\";i:0;s:21:\"aiosp_ga_anonymize_ip\";N;s:28:\"aiosp_ga_display_advertising\";N;s:22:\"aiosp_ga_exclude_users\";N;s:29:\"aiosp_ga_track_outbound_links\";i:0;s:20:\"aiosp_use_categories\";i:0;s:26:\"aiosp_use_tags_as_keywords\";i:1;s:32:\"aiosp_dynamic_postspage_keywords\";i:1;s:22:\"aiosp_category_noindex\";i:1;s:26:\"aiosp_archive_date_noindex\";i:1;s:28:\"aiosp_archive_author_noindex\";i:1;s:18:\"aiosp_tags_noindex\";i:0;s:20:\"aiosp_search_noindex\";i:0;s:23:\"aiosp_paginated_noindex\";i:0;s:24:\"aiosp_paginated_nofollow\";i:0;s:11:\"aiosp_noodp\";i:0;s:12:\"aiosp_noydir\";i:0;s:27:\"aiosp_generate_descriptions\";i:1;s:20:\"aiosp_run_shortcodes\";i:0;s:33:\"aiosp_hide_paginated_descriptions\";i:0;s:32:\"aiosp_dont_truncate_descriptions\";i:0;s:19:\"aiosp_schema_markup\";i:1;s:20:\"aiosp_unprotect_meta\";i:0;s:14:\"aiosp_ex_pages\";s:0:\"\";s:20:\"aiosp_post_meta_tags\";s:0:\"\";s:20:\"aiosp_page_meta_tags\";s:0:\"\";s:21:\"aiosp_front_meta_tags\";s:0:\"\";s:20:\"aiosp_home_meta_tags\";s:0:\"\";s:12:\"aiosp_do_log\";N;}", "yes"); INSERT INTO `wp_options` VALUES("179", "jetpack_activated", "1", "yes"); INSERT INTO `wp_options` VALUES("180", "jetpack_options", "a:3:{s:7:\"version\";s:16:\"3.2.1:1418471906\";s:11:\"old_version\";s:16:\"3.2.1:1418471906\";s:20:\"last_security_report\";i:1427507693;}", "yes"); INSERT INTO `wp_options` VALUES("184", "easingsliderlite_version", "2.1.4.2", "yes"); INSERT INTO `wp_options` VALUES("185", "easingsliderlite_slideshow", "O:8:\"stdClass\":7:{s:6:\"author\";s:7:\"support\";s:6:\"slides\";a:2:{i:0;O:8:\"stdClass\":7:{s:3:\"url\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/4fa5ebfcbbf287480388f15b79f304ed.png\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:116:\"http://oomori.cc/test1/wp-content/uploads/2014/12/4fa5ebfcbbf287480388f15b79f304ed-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:300;s:3:\"url\";s:116:\"http://oomori.cc/test1/wp-content/uploads/2014/12/4fa5ebfcbbf287480388f15b79f304ed-300x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/4fa5ebfcbbf287480388f15b79f304ed.png\";s:6:\"height\";i:300;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:12:\"お知らせ\";s:4:\"link\";N;s:10:\"linkTarget\";s:6:\"_blank\";s:2:\"id\";i:1;}i:1;O:8:\"stdClass\":7:{s:3:\"url\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/68047e5226c4cbe99b6b7c0cc1d4b8e6.png\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:116:\"http://oomori.cc/test1/wp-content/uploads/2014/12/68047e5226c4cbe99b6b7c0cc1d4b8e6-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:300;s:3:\"url\";s:116:\"http://oomori.cc/test1/wp-content/uploads/2014/12/68047e5226c4cbe99b6b7c0cc1d4b8e6-300x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/68047e5226c4cbe99b6b7c0cc1d4b8e6.png\";s:6:\"height\";i:300;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:3:\"alt\";s:0:\"\";s:5:\"title\";s:14:\"お知らせ11\";s:4:\"link\";N;s:10:\"linkTarget\";s:6:\"_blank\";s:2:\"id\";i:2;}}s:7:\"general\";O:8:\"stdClass\":1:{s:9:\"randomize\";s:0:\"\";}s:10:\"dimensions\";O:8:\"stdClass\":3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"300\";s:10:\"responsive\";s:4:\"true\";}s:11:\"transitions\";O:8:\"stdClass\":2:{s:6:\"effect\";s:4:\"fade\";s:8:\"duration\";s:3:\"100\";}s:10:\"navigation\";O:8:\"stdClass\":7:{s:6:\"arrows\";s:4:\"true\";s:12:\"arrows_hover\";s:4:\"true\";s:15:\"arrows_position\";s:6:\"inside\";s:10:\"pagination\";s:4:\"true\";s:16:\"pagination_hover\";s:5:\"false\";s:19:\"pagination_position\";s:6:\"inside\";s:19:\"pagination_location\";s:10:\"top-center\";}s:8:\"playback\";O:8:\"stdClass\":2:{s:7:\"enabled\";s:4:\"true\";s:5:\"pause\";s:5:\"20000\";}}", "yes"); INSERT INTO `wp_options` VALUES("186", "easingsliderlite_customizations", "O:8:\"stdClass\":4:{s:6:\"arrows\";O:8:\"stdClass\":4:{s:4:\"next\";s:109:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/slideshow_arrow_next.png\";s:4:\"prev\";s:109:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/slideshow_arrow_prev.png\";s:5:\"width\";i:30;s:6:\"height\";i:30;}s:10:\"pagination\";O:8:\"stdClass\":4:{s:8:\"inactive\";s:112:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/slideshow_icon_inactive.png\";s:6:\"active\";s:110:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/slideshow_icon_active.png\";s:5:\"width\";i:15;s:6:\"height\";i:15;}s:6:\"border\";O:8:\"stdClass\":3:{s:5:\"color\";s:4:\"#000\";s:5:\"width\";i:0;s:6:\"radius\";i:0;}s:6:\"shadow\";O:8:\"stdClass\":2:{s:6:\"enable\";b:0;s:5:\"image\";s:105:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/slideshow_shadow.png\";}}", "yes"); INSERT INTO `wp_options` VALUES("187", "easingsliderlite_settings", "a:3:{s:8:\"resizing\";b:0;s:11:\"load_styles\";s:6:\"header\";s:12:\"load_scripts\";s:6:\"header\";}", "yes"); INSERT INTO `wp_options` VALUES("188", "easingsliderlite_major_upgrade", "0", "yes"); INSERT INTO `wp_options` VALUES("189", "easingsliderlite_disable_welcome_panel", "0", "yes"); INSERT INTO `wp_options` VALUES("191", "sm_rewrite_done", "$Id: sitemap-loader.php 937300 2014-06-23 18:04:11Z arnee $", "yes"); INSERT INTO `wp_options` VALUES("193", "siteorigin_panels_initial_version", "1.5.4", "no"); INSERT INTO `wp_options` VALUES("316", "faq_options", "a:10:{s:5:\"htype\";s:2:\"h4\";s:6:\"expand\";s:4:\"true\";s:7:\"exspeed\";s:3:\"200\";s:6:\"extext\";s:9:\"Read More\";s:6:\"scroll\";s:4:\"true\";s:7:\"backtop\";s:4:\"true\";s:3:\"css\";s:4:\"true\";s:10:\"redirectid\";s:4:\"none\";s:6:\"single\";s:8:\"question\";s:4:\"arch\";s:9:\"questions\";}", "yes"); INSERT INTO `wp_options` VALUES("198", "duplicate_post_copyexcerpt", "1", "yes"); INSERT INTO `wp_options` VALUES("199", "duplicate_post_copyattachments", "0", "yes"); INSERT INTO `wp_options` VALUES("200", "duplicate_post_copychildren", "0", "yes"); INSERT INTO `wp_options` VALUES("201", "duplicate_post_copystatus", "0", "yes"); INSERT INTO `wp_options` VALUES("202", "duplicate_post_taxonomies_blacklist", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("203", "duplicate_post_show_row", "1", "yes"); INSERT INTO `wp_options` VALUES("204", "duplicate_post_show_adminbar", "1", "yes"); INSERT INTO `wp_options` VALUES("205", "duplicate_post_show_submitbox", "1", "yes"); INSERT INTO `wp_options` VALUES("206", "duplicate_post_version", "2.6", "yes"); INSERT INTO `wp_options` VALUES("207", "tadv_settings", "a:6:{s:9:\"toolbar_1\";s:190:\"undo,redo,image,fontsizeselect,formatselect,emoticons,bold,underline,italic,forecolor,backcolor,numlist,bullist,alignleft,aligncenter,alignright,link,unlink,removeformat,table,wp_adv,wp_more\";s:9:\"toolbar_2\";s:89:\"alignjustify,outdent,indent,strikethrough,pastetext,fullscreen,charmap,wp_help,blockquote\";s:9:\"toolbar_3\";s:0:\"\";s:9:\"toolbar_4\";s:0:\"\";s:7:\"options\";s:21:\"advlist,menubar,image\";s:7:\"plugins\";s:107:\"anchor,code,insertdatetime,nonbreaking,print,searchreplace,table,visualblocks,visualchars,emoticons,advlist\";}", "yes"); INSERT INTO `wp_options` VALUES("208", "tadv_admin_settings", "a:2:{s:7:\"options\";s:0:\"\";s:16:\"disabled_plugins\";s:0:\"\";}", "yes"); INSERT INTO `wp_options` VALUES("209", "tadv_version", "4000", "yes"); INSERT INTO `wp_options` VALUES("211", "siteorigin_panels_notice_dismissed", "1.5.4", "no"); INSERT INTO `wp_options` VALUES("216", "sm_options", "a:51:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:9:\"sm_b_ping\";b:1;s:10:\"sm_b_stats\";b:0;s:12:\"sm_b_pingmsn\";b:1;s:12:\"sm_b_autozip\";b:1;s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:12:\"sm_b_baseurl\";s:0:\"\";s:11:\"sm_b_robots\";b:1;s:9:\"sm_b_html\";b:1;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:0;s:10:\"sm_in_arch\";b:0;s:10:\"sm_in_auth\";b:0;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:0:{}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:7:\"monthly\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"weekly\";s:10:\"sm_cf_auth\";s:6:\"weekly\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:6:\"yearly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.59999999999999997779553950749686919152736663818359375;s:15:\"sm_pr_posts_min\";d:0.200000000000000011102230246251565404236316680908203125;s:11:\"sm_pr_pages\";d:0.59999999999999997779553950749686919152736663818359375;s:10:\"sm_pr_cats\";d:0.299999999999999988897769753748434595763683319091796875;s:10:\"sm_pr_arch\";d:0.299999999999999988897769753748434595763683319091796875;s:10:\"sm_pr_auth\";d:0.299999999999999988897769753748434595763683319091796875;s:10:\"sm_pr_tags\";d:0.299999999999999988897769753748434595763683319091796875;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";i:1418474481;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;s:9:\"sm_i_hash\";s:20:\"ea1f9d5578b09ea46919\";s:13:\"sm_i_lastping\";i:1426430106;s:16:\"sm_i_supportfeed\";b:1;s:22:\"sm_i_supportfeed_cache\";i:1427505338;}", "yes"); INSERT INTO `wp_options` VALUES("214", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes"); INSERT INTO `wp_options` VALUES("217", "sm_status", "O:28:\"GoogleSitemapGeneratorStatus\":4:{s:39:\"\0GoogleSitemapGeneratorStatus\0startTime\";d:1426430105.9726450443267822265625;s:37:\"\0GoogleSitemapGeneratorStatus\0endTime\";d:1426430106.4848110675811767578125;s:41:\"\0GoogleSitemapGeneratorStatus\0pingResults\";a:2:{s:6:\"google\";a:5:{s:9:\"startTime\";d:1426430105.97465801239013671875;s:7:\"endTime\";d:1426430106.2421629428863525390625;s:7:\"success\";b:1;s:3:\"url\";s:108:\"http://www.google.com/webmasters/sitemaps/ping?sitemap=http%3A%2F%2Fyou-creative.com%2Fwp_test%2Fsitemap.xml\";s:4:\"name\";s:6:\"Google\";}s:4:\"bing\";a:5:{s:9:\"startTime\";d:1426430106.2428569793701171875;s:7:\"endTime\";d:1426430106.483601093292236328125;s:7:\"success\";b:1;s:3:\"url\";s:101:\"http://www.bing.com/webmaster/ping.aspx?siteMap=http%3A%2F%2Fyou-creative.com%2Fwp_test%2Fsitemap.xml\";s:4:\"name\";s:4:\"Bing\";}}s:38:\"\0GoogleSitemapGeneratorStatus\0autoSave\";b:1;}", "no"); INSERT INTO `wp_options` VALUES("1541", "_transient_random_seed", "551223b3086a9792d6aef2992375c95c", "yes"); INSERT INTO `wp_options` VALUES("1638", "duplicator_ui_view_state", "a:2:{s:27:\"dup-settings-diag-srv-panel\";s:1:\"1\";s:14:\"dup-wpnotice01\";b:1;}", "yes"); INSERT INTO `wp_options` VALUES("1639", "duplicator_package_active", "O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:13:\"20150325test7\";s:4:\"Hash\";s:29:\"55160a060950a7451150328015518\";s:8:\"NameHash\";s:43:\"20150325test7_55160a060950a7451150328015518\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:80:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp\";s:8:\"StoreURL\";s:58:\"http://oomori.cc/test1/wp-snapshots/\";s:8:\"ScanFile\";s:53:\"20150325test7_55160a060950a7451150328015518_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:63:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1\";s:4:\"Size\";i:0;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:13:\"20150325test7\";s:4:\"Hash\";s:29:\"55160a060950a7451150328015518\";s:8:\"NameHash\";s:43:\"20150325test7_55160a060950a7451150328015518\";s:7:\"Version\";s:6:\"0.5.12\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:80:\"/home/htz8513/you-creative.com/public_html/wp_test2_azuma/test1/wp-snapshots/tmp\";s:8:\"StoreURL\";s:58:\"http://oomori.cc/test1/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:30;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:30;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";r:45;s:8:\"Database\";r:57;}", "yes"); INSERT INTO `wp_options` VALUES("419", "jetpack_file_data", "a:1:{s:5:\"3.4.1\";a:48:{s:32:\"8b8931753989c34d19ec90a9ec331b26\";a:13:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"6cc517b0f21ce837b86e118838cb1445\";a:13:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:14:\"jumpstart_desc\";s:79:\"brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"1fd5eb775fe35100f134555c270b80a7\";a:13:{s:4:\"name\";s:16:\"Jetpack Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"7516f2da4b31b84191ff3a99bf65f3ff\";a:13:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"0529fb12cb021def4d97a02664f47ca7\";a:13:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"eacc84c7613e63a8dda23ea9486c1125\";a:13:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"c84f9612b6509970e27cf61977b48ac0\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"52a29b482495c27916789d851f2d5746\";a:13:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:74:\"Share your public posts and comments to search engines and other services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"00cd0ed3869379afb211ea83ae3ccf77\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"d0cc4f5183c64c4818f691ce8315dc1c\";a:13:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"4ab1813813cf30df54f1e702e0673031\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"f41e668b59f5cc7cd2460d15e06c0cd7\";a:13:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"1682d7beda5f5a452e231ee79f43cedf\";a:13:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:0:\"\";}s:32:\"2495ff91de2be215c70e5694a7809e30\";a:13:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"799580cf6930d16015df20e3398e1368\";a:13:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"069a28c593d9c29ed7bd8796a7373a9f\";a:13:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:76:\"Manage all your sites from a centralized place, https://wordpress.com/sites.\";s:14:\"jumpstart_desc\";s:151:\"helps you remotely manage plugins, turn on automated updates, and more from wordpress.com.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"a2bf381f81d954f2193e37c3793a7f3c\";a:13:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"60b239a4265042c8d3a3bfd36ec6e226\";a:13:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:64:\"Optimize your site with a mobile-friendly theme for smartphones.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"73ae56d114b76407362a1bc637576faf\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"7dc32574cefb3d4d95d3427bb47a5c5c\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"ccc52eff29d4a1540ffa0ff054ed602f\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"ceca039eec7a7b81322d1517cf04cee8\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"d761a53c41ec76157c32db0f5f477334\";a:13:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:88:\"Receive notifications from Jetpack if your site goes offline — and when it it returns.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"de01cd69905535211c668574d9a0a7bd\";a:13:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";}s:32:\"368f9ba3e572b34d77f8efd4a8f46055\";a:13:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:0:\"\";}s:32:\"2c34591e8a57169c0fbfc99edbb94b36\";a:13:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:66:\"Accelerate your site by loading images from the WordPress.com CDN.\";s:14:\"jumpstart_desc\";s:141:\"mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"17cfe6c4e75b49f434f531617eb610a7\";a:13:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"edae15baca4292c72832b20c5995422d\";a:13:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:70:\"Adds brute force protection to your login page. Formerly BruteProtect.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"0f8e7864c069763669b77946fc546861\";a:13:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:55:\"Share new posts on social media networks automatically.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"0ed2805daed024b9bc3feac07e6484d6\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"409347bc45ac738d9eafc759bd341148\";a:13:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:60:\"Display links to your related content under posts and pages.\";s:14:\"jumpstart_desc\";s:113:\"keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"2910e71194f652480f5463c829e05b51\";a:13:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:81:\"Allow visitors to share your content on Facebook, Twitter, and more with a click.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"be1840032dd69ac305a6c612fb890a15\";a:13:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"2495ef3b206accf31e251737d3905ecf\";a:13:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"96d686339ade88cc029d85778cc5a8fe\";a:13:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:29:\"Add a site icon to your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";}s:32:\"0d3476b34ae9f8d4fd13d2eb3def98a5\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"b5118e64991303b1a528ea7f1f5463ad\";a:13:{s:4:\"name\";s:22:\"Jetpack Single Sign On\";s:11:\"description\";s:62:\"Allow your users to log in using their WordPress.com accounts.\";s:14:\"jumpstart_desc\";s:97:\"lets you login to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"185453e4482184ac79d5d4b8384ac366\";a:13:{s:4:\"name\";s:19:\"WordPress.com Stats\";s:11:\"description\";s:85:\"Monitor your stats with clear, concise reports and no additional load on your server.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:32:\"WordPress.com Stats, Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"bc5519cbbfcd72d9ee218c3dc8adb731\";a:13:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:14:\"jumpstart_desc\";s:126:\"give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"5a7eb6e740efb9cc9e3d7276d4e5c59a\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"5d9e61c5cf39d9ba2672915a508928e5\";a:13:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";}s:32:\"5eda5d9c8059a9220aaccdb53c5814a7\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"a3b0ff47bb8e8bc5f727b1b3ca6f6042\";a:13:{s:4:\"name\";s:10:\"VaultPress\";s:11:\"description\";s:85:\"Protect your site with automatic backups and security scans. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"e1ca3cb5726c904f63d4d94b6c03c555\";a:13:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:78:\"Verify your site or domain with Google Webmaster Tools, Pinterest, and others.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"0628a65988a36bdf50e3f2ac733e738a\";a:13:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:68:\"Upload and embed videos right on your site. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";}s:32:\"f09ede86621f105d0683069b3a380e47\";a:13:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"3287ecbe3206c9986af60a757607b6fc\";a:13:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"b373d15b3ca715264b7d4bad2ec10d96\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}}}", "yes"); INSERT INTO `wp_options` VALUES("244", "dynwid_housekeeping_lastrun", "1427043259", "yes"); INSERT INTO `wp_options` VALUES("245", "advanced_page_manager_tree_db", "a:1:{s:4:\"page\";a:1:{i:0;a:1:{i:0;s:1:\"2\";}}}", "no"); INSERT INTO `wp_options` VALUES("309", "faq-topic_children", "a:1:{i:8;a:2:{i:0;i:9;i:1;i:10;}}", "yes"); INSERT INTO `wp_options` VALUES("303", "heatmapWP_options", "a:5:{s:6:\"active\";b:0;s:17:\"active_last_check\";i:1427505337;s:21:\"active_last_check_err\";s:0:\"\";s:7:\"ext_use\";b:0;s:8:\"ext_code\";s:158:\"var heatmap_ext = {\n cleanupURL: function(url) {\n return url;\n },\n getCurrentURL: function() {\n return heatmap_ext.cleanupURL(document.location.href);\n }\n};\";}", "yes"); INSERT INTO `wp_options` VALUES("261", "category_children", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("1717", "rewrite_rules", "a:174:{s:34:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml$\";s:40:\"index.php?xml_sitemap=params=$matches[2]\";s:38:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml\\.gz$\";s:49:\"index.php?xml_sitemap=params=$matches[2];zip=true\";s:35:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.html$\";s:50:\"index.php?xml_sitemap=params=$matches[2];html=true\";s:38:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.html.gz$\";s:59:\"index.php?xml_sitemap=params=$matches[2];html=true;zip=true\";s:9:\"forums/?$\";s:25:\"index.php?post_type=forum\";s:39:\"forums/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:34:\"forums/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:26:\"forums/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=forum&paged=$matches[1]\";s:9:\"topics/?$\";s:25:\"index.php?post_type=topic\";s:39:\"topics/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:34:\"topics/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:26:\"topics/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=topic&paged=$matches[1]\";s:28:\"forums/forum/([^/]+)/edit/?$\";s:34:\"index.php?forum=$matches[1]&edit=1\";s:28:\"forums/topic/([^/]+)/edit/?$\";s:34:\"index.php?topic=$matches[1]&edit=1\";s:28:\"forums/reply/([^/]+)/edit/?$\";s:34:\"index.php?reply=$matches[1]&edit=1\";s:32:\"forums/topic-tag/([^/]+)/edit/?$\";s:38:\"index.php?topic-tag=$matches[1]&edit=1\";s:47:\"forums/user/([^/]+)/topics/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_tops=1&paged=$matches[2]\";s:48:\"forums/user/([^/]+)/replies/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_reps=1&paged=$matches[2]\";s:50:\"forums/user/([^/]+)/favorites/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_favs=1&paged=$matches[2]\";s:54:\"forums/user/([^/]+)/subscriptions/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_subs=1&paged=$matches[2]\";s:29:\"forums/user/([^/]+)/topics/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_tops=1\";s:30:\"forums/user/([^/]+)/replies/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_reps=1\";s:32:\"forums/user/([^/]+)/favorites/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_favs=1\";s:36:\"forums/user/([^/]+)/subscriptions/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_subs=1\";s:27:\"forums/user/([^/]+)/edit/?$\";s:37:\"index.php?bbp_user=$matches[1]&edit=1\";s:22:\"forums/user/([^/]+)/?$\";s:30:\"index.php?bbp_user=$matches[1]\";s:40:\"forums/view/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bbp_view=$matches[1]&paged=$matches[2]\";s:27:\"forums/view/([^/]+)/feed/?$\";s:47:\"index.php?bbp_view=$matches[1]&feed=$matches[2]\";s:22:\"forums/view/([^/]+)/?$\";s:30:\"index.php?bbp_view=$matches[1]\";s:34:\"forums/search/page/?([0-9]{1,})/?$\";s:27:\"index.php?paged=$matches[1]\";s:16:\"forums/search/?$\";s:20:\"index.php?bbp_search\";s:12:\"questions/?$\";s:28:\"index.php?post_type=question\";s:42:\"questions/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=question&feed=$matches[1]\";s:37:\"questions/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=question&feed=$matches[1]\";s:29:\"questions/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=question&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:38:\"forums/forum/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"forums/forum/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"forums/forum/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"forums/forum/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"forums/forum/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"forums/forum/(.+?)/trackback/?$\";s:32:\"index.php?forum=$matches[1]&tb=1\";s:51:\"forums/forum/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:46:\"forums/forum/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:39:\"forums/forum/(.+?)/page/?([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&paged=$matches[2]\";s:46:\"forums/forum/(.+?)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&cpage=$matches[2]\";s:31:\"forums/forum/(.+?)(/[0-9]+)?/?$\";s:44:\"index.php?forum=$matches[1]&page=$matches[2]\";s:40:\"forums/topic/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"forums/topic/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"forums/topic/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/topic/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/topic/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"forums/topic/([^/]+)/trackback/?$\";s:32:\"index.php?topic=$matches[1]&tb=1\";s:53:\"forums/topic/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:48:\"forums/topic/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:41:\"forums/topic/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&paged=$matches[2]\";s:48:\"forums/topic/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&cpage=$matches[2]\";s:33:\"forums/topic/([^/]+)(/[0-9]+)?/?$\";s:44:\"index.php?topic=$matches[1]&page=$matches[2]\";s:29:\"forums/topic/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"forums/topic/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"forums/topic/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/topic/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/topic/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"forums/reply/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"forums/reply/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"forums/reply/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/reply/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/reply/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"forums/reply/([^/]+)/trackback/?$\";s:32:\"index.php?reply=$matches[1]&tb=1\";s:41:\"forums/reply/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&paged=$matches[2]\";s:48:\"forums/reply/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&cpage=$matches[2]\";s:33:\"forums/reply/([^/]+)(/[0-9]+)?/?$\";s:44:\"index.php?reply=$matches[1]&page=$matches[2]\";s:29:\"forums/reply/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"forums/reply/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"forums/reply/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/reply/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/reply/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"forums/topic-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:52:\"forums/topic-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:45:\"forums/topic-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?topic-tag=$matches[1]&paged=$matches[2]\";s:27:\"forums/topic-tag/([^/]+)/?$\";s:31:\"index.php?topic-tag=$matches[1]\";s:42:\"forums/search/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?bbp_search=$matches[1]&paged=$matches[2]\";s:24:\"forums/search/([^/]+)/?$\";s:32:\"index.php?bbp_search=$matches[1]\";s:36:\"question/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"question/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"question/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"question/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"question/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"question/([^/]+)/trackback/?$\";s:35:\"index.php?question=$matches[1]&tb=1\";s:49:\"question/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?question=$matches[1]&feed=$matches[2]\";s:44:\"question/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?question=$matches[1]&feed=$matches[2]\";s:37:\"question/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?question=$matches[1]&paged=$matches[2]\";s:44:\"question/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?question=$matches[1]&cpage=$matches[2]\";s:29:\"question/([^/]+)(/[0-9]+)?/?$\";s:47:\"index.php?question=$matches[1]&page=$matches[2]\";s:25:\"question/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"question/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"question/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"question/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"question/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"topics/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?faq-topic=$matches[1]&feed=$matches[2]\";s:42:\"topics/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?faq-topic=$matches[1]&feed=$matches[2]\";s:35:\"topics/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?faq-topic=$matches[1]&paged=$matches[2]\";s:17:\"topics/([^/]+)/?$\";s:31:\"index.php?faq-topic=$matches[1]\";s:49:\"faq-tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?faq-tags=$matches[1]&feed=$matches[2]\";s:44:\"faq-tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?faq-tags=$matches[1]&feed=$matches[2]\";s:37:\"faq-tags/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?faq-tags=$matches[1]&paged=$matches[2]\";s:19:\"faq-tags/([^/]+)/?$\";s:30:\"index.php?faq-tags=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=51&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}", "yes"); INSERT INTO `wp_options` VALUES("1746", "_transient_timeout_feed_3b05e8818d3a1ffc177fe8d6c821f3ae", "1427550896", "no"); INSERT INTO `wp_options` VALUES("1747", "_transient_feed_3b05e8818d3a1ffc177fe8d6c821f3ae", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WordPress | 日本語\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://ja.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress 日本語ローカルサイトブログ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Mar 2015 01:43:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"ja\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=4.2-beta3-31913\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"「WordPress への参加・貢献」ページを公開しました\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://ja.wordpress.org/2015/03/05/new-get-involved-page/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://ja.wordpress.org/2015/03/05/new-get-involved-page/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Mar 2015 09:55:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ja.wordpress.org/?p=3351\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:174:\"当サイトで「WordPress への参加・貢献」および「WordPress への参加・貢献 (英語でできること)」という2つのページを公開しました。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Naoko Takano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1942:\"

この度、当サイトで「WordPress への参加・貢献」および「WordPress への参加・貢献 (英語でできること)」という2つのページを公開しました。

\n

ソフトウェア自体の開発やプラグイン・テーマの公開はもちろん、ドキュメンテーション・翻訳・フォーラムへでの回答など、WordPress に参加・貢献する方法はたくさんあります。ぜひ一読して、WordPress の成長を助ける活動への一歩を踏み出してみてください。

\n

\"get-involved-icons\"

\n

これらのページの作成は WordPress のオープンソース活動への参加方法を説明している make.wordpress.org という英語サイトのトップページのようなものを日本語でも提供するとよいのでは、という森山さんの提案から進められました。有志により話し合いを重ねた結果、日本語での貢献についてわかりやすく説明するページを作り、英語版の翻訳を別ページに掲載するという形式になりました。内容へのフィードバックを下さった額賀さん、どうもありがとうございました。

\n

ページへの補足事項や変更についてアイデアがある方は、フォーラムの「WordPress への貢献と参加」トピックよりお気軽にご意見ください。

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://ja.wordpress.org/2015/03/05/new-get-involved-page/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress 4.1.1 メンテナンスリリース\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://ja.wordpress.org/2015/02/20/wordpress-4-1-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://ja.wordpress.org/2015/02/20/wordpress-4-1-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Feb 2015 15:58:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ja.wordpress.org/?p=3309\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:174:\"WordPress 4.1.1 がリリースされました。今回のメンテナンスリリースではバージョン4.1で見つかった21個のバグが修正されています。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4143:\"

以下は、Andrew Nacin が書いた WordPress.org 公式ブログの記事、「WordPress 4.1.1 Maintenance Release」を訳したものです。

\n

誤字脱字誤訳等ありましたらフォーラムまでお知らせください

\n

WordPress 4.1.1 の日本語版はこちらからダウンロードできます。

\n
\n

WordPress 4.1.1 がリリースされました。今回のメンテナンスリリースではバージョン4.1で見つかった21個のバグが修正されています。

\n

早く最新バージョンへアップデートしたくてウズウズしていた方もいたかもしれませんが、実際そんなに手を入れる必要がなかったんです。WordPress 4.1 はまさに順風満帆といった感じで、ここ2ヶ月で一千四百万回もダウンロードされています。

\n

変更点の完全なリストはチケットのリストチェンジログを参照してください。同じ名前のタグとカテゴリーがあった場合に互いにこんがらがって更新が妨げられるという厄介な問題が見られましたがそれも解決済みです。

\n

あなたのサイトが自動バックグラウンドアップデートに対応した環境で動いていて現在すでに WordPress 4.1 になっているなら、放っとけばそのうち4.1.1に自動的にアップデートされるはずです。そうでないなら、WordPress 4.1.1をダウンロードして手動で更新するか、管理メニューのダッシュボード → 更新から「いますぐ更新」をクリックしましょう。

\n

4.1.1 にコードを提供したみなさんに盛大な拍手を: Andrea Fercia, Boone Gorges, ChriCo, Dion Hulse, David Herrera, Drew Jaynes, Takuro Hishikawa, Thorsten Frommen, Iseulde, John Blackbourn, Aaron Jorbin, mattyrob, Konstantin Obenland, Dominik Schilling, Sergey Biryukov, sippis, tmatsuur, Marin Atanasov, Derek Herman, and Weston Ruter

\n

最後に、コミュニティの最愛のメンバー Kim Parsell さんが昨年12月に亡くなりました。私たちは彼女もこのリリースの貢献者の一人と考えます。彼女の功績と思い出をたたえて、カンファレンス参加者のための渡航費支援のプロジェクトが進められています。

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://ja.wordpress.org/2015/02/20/wordpress-4-1-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.1 “Dinah”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ja.wordpress.org/2014/12/19/wordpress-4-1-dinah/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://ja.wordpress.org/2014/12/19/wordpress-4-1-dinah/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 20:37:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ja.wordpress.org/?p=3257\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:272:\"WordPress 4.1 (愛称「Dinah」 --- 偉大なジャズシンガーの Dinah Washington にちなんで) が利用可能になりました。WordPress 4.1 ではもっと書くことに集中できます。新しいデフォルトテーマもぜひお試しください。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:25986:\"

以下は、Matt Mullenweg が書いた WordPress.org 公式ブログの記事、「WordPress 4.1 “Dinah”」を訳したものです。

\n

誤字脱字誤訳等ありましたらフォーラムまでお知らせください

\n

WordPress 4.1 の日本語版はこちらからダウンロードできます。

\n
\n

WordPress 4.1 (愛称「Dinah」 — 偉大なジャズシンガーの Dinah Washington にちなんで) が利用可能になりました。WordPress 4.1 ではもっと書くことに集中できます。新しいデフォルトテーマもぜひお試しください。

\n

Twenty Fifteen の導入

\n

\"2015-laptop\"

\n

最新のデフォルトテーマ、Twenty Fifteen はブログに特化した明快さのためにデザインされたテーマです。

\n

\"\"

\n

Twenty Fifteen は Google の Noto フォントファミリーのおかげで完璧に言語をサポートします。

\n

直線的なタイポグラフィはどんな画面サイズでも読むことができます。

\n

コンテンツは携帯やタブレット、ラップトップ、デスクトップ、どれで見ていても常に主役です。

\n
\n

集中執筆

\n

\"dfw-screen\"

\n

Just write.

\n

時には思考を言葉にのせることに集中しなければなりません。集中執筆モードをオンにしてみてください。入力を開始すると、すべての気の散るものが消え去り、単に執筆に集中できます。すべての編集ツールは必要な時にすぐに戻ってきます。

\n
\n

よりすばらしい点

\n

\"\"

\n
言語を選択
\n

現在、WordPress 4.1 はすでに 40 を超える言語に翻訳されており、より多くが作業中です。一般設定からどの翻訳にも切り替えできます。

\n


\n

\"\"

\n
どこでもログアウト
\n

共有されたコンピューターからサインアウトするのを忘れて心配したことがありませんか。これからはあなたのプロフィールより全ての場所からログアウトすることができます。

\n


\n

\"\"

\n
Vine 埋め込み
\n

Vine の動画は、投稿中の単独行に URL をペーストするだけで簡単に埋め込むことができます。埋め込み機能がサポートするその他のサービスは一覧を参照してください。

\n


\n

\"\"

\n
プラグインのおすすめ
\n

プラグインのインストールは試用をおすすめするプラグインを表示します。これはあなたや他のユーザーがインストールしているプラグインに基づいています。

\n


\n
\n

開発者向けの変更

\n
複雑なクエリー
\n

メタデータ、日付、タクソノミーのクエリーが高度の条件ロジック(ネストされた節や複数の演算子 — A AND ( B OR C ))をサポートするようになりました。

\n
カスタマイザー API
\n

カスタマイザーがプレビューしているページに基づいたパネルとセクションの表示をサポートするようになりました。

\n
テーマの <title> タグ
\n

add_theme_support( \'title-tag\' ) は WordPress にドキュメントタイトルの複雑なものを扱うように指示します。

\n
開発者リファレンス
\n

インラインドキュメントへの継続的な改善により開発者リファレンスはこれまでになく完全なものになりました。

\n
\n

聖歌隊のみなさん

\n

このリリースはリーダーの John Blackbourn をはじめ、以下に紹介するすばらしい仲間たちの協力により成し遂げられました。どうぞ Dinah Washington の歌声に耳を傾けながら、彼らのプロフィールをご覧ください:

\n

Aaron D. Campbell, Aaron Jorbin, Adam Silverstein, akumria, Alex Concha, Alex Mills (Viper007Bond), Alex Shiels, Allan Collins, Amaury Balmer, Amruta Bhosale, Andrea Fercia, Andrea Gandino, Andrew Munro (sumobi), Andrew Nacin, Andrew Ozz, Andrew Ryno, Andrey “Rarst” Savchenko, Ankit Gade, Ankit K Gupta, antpb, arippberger, Austin Matzko, Bainternet, Barry Kooij, Ben Dunkle, Ben May, Bernhard Riedl, birgire, bobbingwide, Boone B. Gorges, Brady Vercher, Bram Duvigneau, Brandon Kraft, Brian DiChiara, Brian Richards, Brian Watson, Camden Segal, Captain Theme, Carlos Zuniga, Caspie, ccprice, Charles Fulton, ChriCo, Chris Aprea, Chris Jean, Chris Marslender, Chris Reynolds, chriscct7, chrisl27, Christian Foellmann, Christopher Finke, Corey Snow, Corphi, curtjen, Damon Cook, Dan Cameron, Daniel Bachhuber, Daniel Convissor, Darren Ethier (nerrad), Daryl Koopersmith, Dave McHale, David A. Kennedy, David Herrera, David Laietta, David Wood, DavidTheMachine, dcavins, Dennis Ploetner, Dion Hulse, Dirk Weise, Dominik Schilling, Dominik Schwind, Drew Jaynes, Dustin Filippini, DustinHartzler, Elio Rivero, Eric Binnion, Eric Holmes, Eric Lewis, Fabien Quatravaux, florianziegler, Gabe Shackle, Gary Cao, Gary Pendergast, Gennady Kovshenin, George Olaru, George Stephanis, Greg Rickaby, Gregory Cornelius, Gregory Karpinsky (@tivnet), Gustavo Bordoni, hardy101, hauvong, Helen Hou-Sandí, heshiming, honeysilvas, hugodelgado, Ian Stewart, ianmjones, Ignacio Cruz Moreno, imath, Ipstenu (Mika Epstein), Ivan Kristianto, J.D. Grimes, jaimieolmstead, jakub.tyrcha, janhenckens, Janneke Van Dorpe, Japh, Jared Wenerd, jarednova, jeanyoungkim, Jeff Farthing, Jeff Stieler, Jeremy Felt, Jeremy Herve, Jesin A, Jesper Johansen (jayjdk), Jesper van Engelen, Jesse Pollak, jipmoors, Joe Dolson, Joe McGill, John Eckman, johnrom, johnstonphilip, Jon Brown, Jon Cave, Jonathan Brinley, Jonathan Desrosiers, Joost de Valk, Jordi Cabot, Joshua Abenazer, JOTAKI Taisuke, jrf, julien731, Justin Sainton, Justin Sternberg, K.Adam White, Kailey (trepmal), Kaito, kamelkev, karpstrucking, keesiemeijer, Kelly Dwan, Kevin Langley, Kiko Doran, Kim Parsell, Kirk Wight, kitchin, Knut Sparhell, Konstantin Kovshenin, Konstantin Obenland, Kostas Vrouvas, kraftner, kristastevens, Kurt Payne, Lance Willett, Laurens Offereins, linuxologos, Liuiza Arunas, loushou, Lutz Schroer, Manoz69, mantismamita, marco, Mario Peshev, Marius (Clorith), Mark Hudnall, Mark Jaquith, Mark Senff, Marko Heijnen, marsjaninzmarsa, Matias Ventura, Matt Mullenweg, Matt Wiebe, Matthew Boynes, Matthew Haines-Young, mattkeys, Mel Choyce, Mert Yazicioglu, Michael Adams (mdawaffe), Michael Arestad, Michael Beckwith, Michael Cain, Michael Pick, michalzuber, Michelle Langston, Miguel Fonseca, Mike Hansen, Mike Jolley, Mike Nelson, Mike Schroder, Mikey Arce, Mitch Canter (studionashvegas), mlteal, Morgan Estes, Morten Rand-Hendriksen, mvd7793, Nashwan Doaqan, Niall Kennedy, Nick Halsey, Nikhil Vimal (NikV), Nikola Nikolov, nobleclem, noplanman, Nowell VanHoesen, OriginalEXE, p_enrique, Paul, Paul de Wouters, Paul Schreiber, Paul Wilde, pavelevap, Peter Chester, Peter J. Herrel, Peter Westwood, Peter Wilson, Philip Arthur Moore, phpmypython, Pippin Williamson, Prasath Nadarajah, psycleuk, Ptah Dunbar, quietnic, Rachel Baker, Rami Yushuvaev, ramiabraham, Reuben Gunday, Rian Rietveld, Richard Archambault, Ricky Lee Whittemore, Robert Chapin, Rodrigo Primo, Ryan Boren, Ryan Kienstra, Ryan McCue, Sakin Shrestha, Sam Hotchkiss, Samuel Wood (Otto), Scott Kingsley Clark, Scott Reilly, Scott Taylor, Sergey Biryukov, Shawn Hooper, Simon Wheatley, simonp303, skaeser, Slobodan Manic, socki03, solarissmoke, Stephane Daury, Stephen Edgar, Stephen Harris, Steve Grunwell, Sumit Singh, TacoVerdo, Takashi Irie, Takayuki Miyauchi, Tammie, Tareq Hasan, Taylor Lovett, Thorsten Frommen, Till, tmtrademark, Tobias Schutter, TobiasBg, Tom J Nowell, Tomas Mackevicius, TomHarrigan, Topher, Torsten Landsiedel, Tracy Levesque, transom, Travis Smith, tywayne, Udit Desai, Umesh Kumar, Vinod Dalvi, vlajos, voldemortensen, Weston Ruter, Yoav Farhi, Yuta Sekine, Zack Rothauser, and Zack Tollman.

\n

今回のリリースには283名もの貢献者が加わりました。またしても新記録達成です。

\n

開発の動向を追いたい場合、または手助けしてくれる場合は、Make WordPressコア開発ブログをチェックしてみてください。

\n

WordPress を選んでくれてありがとうございます。良いお年を!来年またバージョン4.2でお会いしましょう​​!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://ja.wordpress.org/2014/12/19/wordpress-4-1-dinah/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Community Hub 要望ブレストミーティングのお知らせ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://ja.wordpress.org/2014/12/15/community-hub-meeting/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://ja.wordpress.org/2014/12/15/community-hub-meeting/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Dec 2014 13:30:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ja.wordpress.org/?p=3245\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:439:\"WordPress.org で、世界中の WordPress 勉強会の情報をまとめたサイト、その名も「Community Hub」をつくるという計画があります!いろんな地域の方の意見が欲しいということなので、日本のコミュニティの方々にどんな機能があれば良いかの意見をいただき、要望としてWordPress.org に報告したいので、ご協力いただけないでしょうか。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"JOTAKI Taisuke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2725:\"

WordCamp Tokyo 2014 の実行委員長の森山さんより、オンラインミーティングのお知らせです。

\n
\n

Community Hubに要望を伝えよう!

\n

WordPress.org で、世界中の WordPress 勉強会の情報をまとめたサイト、その名も「Community Hub」をつくるという計画があります!いろんな地域の方の意見が欲しいということなので、日本のコミュニティの方々にどんな機能があれば良いかの意見をいただき、要望としてWordPress.org に報告したいので、ご協力いただけないでしょうか。

\n

Community Hub とは

\n

平たく言うと「WordPress 専用の Doorkeeper とか Peatix」というイメージですが、まだまだ決まってないことが多く、意見を集めている段階です。詳しくは個人的に和訳ブログを書いてみたのでこちらをごらんください。

\n\n

ミーティングで意見を集めます

\n

日本語でブレストしたほうが意見が出ると思うので、Google Hangout でミーティングをしてから、まとめて英語にして、投稿しようと思っています。

\n

【日時】12月17日(水)22:00〜

\n

【場所】Google ハングアウト・オンエアを使ったビデオチャット(先着順)

\n

※Googleハングアウトの制限人数を超えた場合は、WordSlack 内の Community チャンネルを利用したチャットを併用します。

\n

【参加登録】以下のフォームからご登録ください。

\n\n

【ミーティングで話す内容の案】

\n\n

なお、英語で書き込みができる方は、以下に直接要望を追加してください。

\n\n

よろしくお願いいたします。

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://ja.wordpress.org/2014/12/15/community-hub-meeting/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.1 リリース候補\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://ja.wordpress.org/2014/12/12/wordpress-4-1-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://ja.wordpress.org/2014/12/12/wordpress-4-1-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Dec 2014 15:19:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ja.wordpress.org/?p=3239\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:689:\"WordPress 4.1 のリリース候補が利用可能になりました。この数週間、私たちはたくさんの改良と微調整をおこなってきました。「リリース候補」とはつまり、私たちがやるべきことはすべて完了したと考えているということなのですが、とはいえ何百万人ものユーザーがいて、何千ものプラグインやテーマが稼働している世界へこれから放り込もうというのですから、何か見落としがないか不安にもなります。WordPress 4.1 は12月16日の火曜日にリリースされる予定ですが、そのためにはあなたの手助けが不可欠です。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3841:\"

以下は、John Blackbourn が書いた WordPress.org 公式ブログの記事、「WordPress 4.1 Release Candidate」を訳したものです。

\n

WordPress 4.1 RC1 の日本語版は wordpress-4.1-RC1-ja.zip よりダウンロードできます。

\n

誤字脱字誤訳等ありましたらフォーラムまでお知らせください

\n
\n

WordPress 4.1 のリリース候補が利用可能になりました。

\n

この数週間、私たちはたくさんの改良と微調整をおこなってきました。「リリース候補」とはつまり、私たちがやるべきことはすべて完了したと考えているということなのですが、とはいえ何百万人ものユーザーがいて、何千ものプラグインやテーマが稼働している世界へこれから放り込もうというのですから、何か見落としがないか不安にもなります。WordPress 4.1 は12月16日の火曜日にリリースされる予定ですが、そのためにはあなたの手助けが不可欠です。もしまだ 4.1 をテストしていないなら、今がその時です! (でも何があるかわからないから、本番稼動中のサイトで試したりはしないで。)

\n

バグを見つけた気がする? それならアルファ/ベータ版サポートフォーラムに投稿を。それが既知の問題だったら、ここで探せば見つかるでしょう

\n

WordPress 4.1 のリリース候補をテストするには、WordPress Beta Tester プラグインを利用するか、WordPress 4.1 RC1 のパッケージ (zip; 英語版) をダウンロードしましょう。(日本語版パッケージはこちら) WordPress 4.1 で何が変わったかもっと知りたいなら、ダッシュボードから About 画面 (ツールバーの \"\" → About; 日本語版では「WordPress について」) を開くか、ベータ版の告知をチェックしましょう。

\n

開発者のみなさん、今のうちに WordPress 4.1 でのプラグインやテーマの動作をテストしてしまいましょう。そして問題なく動くなら、プラグインの readme.txt の Tested up to バージョンを 4.1 に更新してください。互換性の問題が見つかるようなら、すぐにサポートフォーラムに投稿するようにお願いします。そうすれば最終リリースの前に解決できるでしょうから。

\n

コア開発ブログのチェックもお忘れなく。4.1 に関する開発者向けのお知らせも継続的に投稿していきます。(例えば、Twenty Fifteen の子テーマを開発しているなら、一部の新しいページネーション関数の名前が変わってますから要注意。)

\n

Testing four point one
\nWhy are we up at this hour?
\nCode is poetry

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://ja.wordpress.org/2014/12/12/wordpress-4-1-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress 4.0.1 セキュリティリリース\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://ja.wordpress.org/2014/11/21/wordpress-4-0-1-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://ja.wordpress.org/2014/11/21/wordpress-4-0-1-security-release/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Nov 2014 08:51:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ja.wordpress.org/?p=3225\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"WordPress 4.0.1が利用可能になりました。このリリースは、これまでのすべてのバージョンのための重要なセキュリティリリースであり、すぐにサイトを更新することを強くお勧めします。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"JOTAKI Taisuke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5377:\"

以下は、Andrew Nacin が書いた WordPress.org 公式ブログの記事、「WordPress 4.0.1 Security Release」を訳したものです。

\n

WordPress 4.0.1 の日本語版は現在準備中です。
\nWordPress 4.0.1 の日本語版はこちらからダウンロードできます

\n

誤字脱字誤訳等ありましたらフォーラムまでお知らせください

\n
\n

WordPress 4.0.1が利用可能になりました。このリリースは、これまでのすべてのバージョンのための重要なセキュリティリリースであり、すぐにサイトを更新することを強くお勧めします。

\n

自動バックグラウンド更新をサポートしているサイトは、今後数時間以内のうちに WordPress 4.0.1に更新されます。WordPress 3.9.2、3.8.4、または3.7.4にとどまっている場合は、安全性を維持するために3.9.3、3.8.5、または3.7.5に更新されます。(古いバージョンはサポートされません。最新の 4.0.1にアップデートするようにしてください)

\n

WordPress のバージョン3.9.2およびそれ以前のバージョンのサイトは、匿名ユーザーによるサイトへの不正侵入を招くかもしれない重大なクロスサイトスクリプティング脆弱性の影響を受けています。これは Jouko Pynnonen によって報告されました。この問題はバージョン4.0には影響しませんが、バージョン4.0.1は以下の8つのセキュリティ問題に対処しています。

\n\n

バージョン4.0.1はまた、4.0の23個のバグを修正し、アップロードされた写真から抽出する EXIF データのより良いバリデーションを含む2件のセキュリティ強化のための変更を行いました。Chris Andrè Dale によって報告されました。

\n

これらの情報が直接わたしたちのセキュリティチームに責任をもって開示されたことに感謝します。このリリースの詳細については、リリースノートまたは変更リストを参照してください 。

\n

では、WordPress 4.0.1をダウンロードするかダッシュボード→アップデートを開き「いますぐ更新」をクリックしてください。

\n

すでに WordPress 4.1をテスト中ですか?であれば、これらのセキュリティ修正が含まれた2つ目のベータ版が利用可能になっています (zip)。4.1の詳細については ベータ1のアナウンスご覧ください 。

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://ja.wordpress.org/2014/11/21/wordpress-4-0-1-security-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:44:\"\n \n \n \n \n \n \n\n \n \n \n \n \n\n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 4.0 “ベニー”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ja.wordpress.org/2014/09/05/benny/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ja.wordpress.org/2014/09/05/benny/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Sep 2014 10:26:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ja.wordpress.org/?p=3187\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:611:\"ジャズクラリネット奏者でバンドリーダーでもあるベニー·グッドマンに敬意を表して「ベニー」と名づけた WordPress のバージョン4.0 をリリースしました。ダウンロードするか、 WordPress のダッシュボードから更新してください。4.0という数字は私たちにとっては単に3.9の後、4.1の前の数字にすぎませんが、少し余分な磨きを入れたよ うな感じもしています。このリリースでは、みなさんに楽しんでもらえる滑らかな執筆体験と管理体験をお届けします。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:40:\"http://s.w.org/images/core/4.0/embed.mp4\";s:6:\"length\";s:7:\"3521313\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:40:\"http://s.w.org/images/core/4.0/focus.mp4\";s:6:\"length\";s:7:\"5181557\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"JOTAKI Taisuke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:25924:\"

以下は、Matt Mullenweg が書いた WordPress.org 公式ブログの記事、「WordPress 4.0 “Benny”」を訳したものです。

\n

誤字脱字誤訳等ありましたらフォーラムまでお知らせください

\n

WordPress 4.0 の日本語版はこちらからダウンロードできます。

\n

* 言語切り替えについて

\n

4.0から管理画面の設定 > 一般で、日本語・英語の切り替えができるようになりました。
\nただし、こちらで English (United States) にすると機能的にも完全に英語版になりますので、その点をご留意ください。
\n(文字数ベースの抜粋や、WP Multibyte Patch の機能も失われます)

\n

また、その他開発者向けの重要な変更点は日本語版作成チームの倉石さんの以下のブログにまとめてありますので、興味のある方はご覧ください。

\n\n
\n

ジャズクラリネット奏者でバンドリーダーでもあるベニー·グッドマンに敬意を表して「ベニー」と名づけた WordPress のバージョン4.0 をリリースしました。ダウンロードするか、 WordPress のダッシュボードから更新してください。4.0という数字は私たちにとっては単に3.9の後、4.1の前の数字にすぎませんが、少し余分な磨きを入れたよ うな感じもしています。このリリースでは、みなさんに楽しんでもらえる滑らかな執筆体験と管理体験をお届けします。

\n
\n
\n

スタイリッシュにメディアを管理する

\n

\"メディアライブラリー\"

\n

美しくエンドレスなグリッドで、ご自分のアップロードしたメディアを探索してみてください。新しい詳細プレビューで、どんな数のメディアでも閲覧と編集が順番に、そして簡単にできるようのなっています。

\n
\n

埋め込みの作業がかつてないほど容易になりました

\n
\n
\n

新 しい行に YouTube の URL を貼り付け、それが魔法のように埋め込まれたビデオになって表示されるのをご覧ください。ぜひツイートとともに試してください。そうです、埋め込みがビ ジュアルな体験になりました。エディターは埋め込まれたコンテンツの本物のプレビューを表示させることができるようになり、あなたの時間を節約し、自信を 与えてくれます。 デフォルトで対応するサービスも増やしました。 CollegeHumor 、 YouTube のプレイリスト、 TED のトークを埋め込むことができます。 WordPress の対応する埋め込みの一覧を確認してみてください

\n
\n

コンテンツに焦点を当てる

\n
\n

コンテンツの書く量に応じて広がったり、フォーマットツールが常に利用できるようになったりしたエディターにより、コンテンツの作成と編集がよりスムーズに、より没入できるようになりました。

\n
\n

適切なプラグインを見つける

\n

\"プラグインを追加\" WordPress プラグインディレクトリには 30,000 以上の無料でオープンソースなプラグインがあります。WordPress 4.0 は新たなメトリクス、改善された検索、そしてより視覚的なブラウジング体験で、ニーズに合ったものをより容易に見つけられるようになりました。

\n
\n

アンサンブル

\n

このリリースはヘレン·ホウ·サンディに よってリードされ、たくさんの素晴らしい方々の助けを得ました。このリリースでは275名からの貢献があり、一番多い人数となりました。お好みの音楽サー ビスから、バンドリーダーとして、あるいは古典的なクラリネット奏者としての彼の音楽を聞いてみてください。そして、貢献してくれた方々のプロフィールも チェックしてみてください:

\n

_Redd, Aaron D. Campbell, Aaron Jorbin, Adam Silverstein, Alex Mills (Viper007Bond), Alex Shiels, Alexander Rohmann, Alison Barrett, Allan Collins, Amit Gupta, Amy Hendrix (sabreuse), Andrea Fercia, Andres Villarreal, Andrew Mowe, Andrew Nacin, Andrew Ozz, Andy Skelton, Ankit K Gupta, Anton Timmermans, arnee, Aubrey Portwood, Austin Matzko, Ben Dunkle, Bernhard Kau, Boone Gorges, Brady Vercher, bramd, Brandon Kraft, Brian Krogsgard, Brian Layman, Brian Richards, Camden Segal, Carbis, Caroline Moore, Charles Fulton, Chouby, ChriCo, Chris Olbekson, chrisl27, Christian Axelsson, Christopher Finke, Christopher Spires, Clifton Griffin, Corey McKrill, Corphi, Daisuke Takahashi, Dan Griffiths, Daniel Bachhuber, Daniel Husken, Daniel Jalkut (Red Sweater), Danny de Haan, Darin Kotter, Daryl Koopersmith, Daryl L. L. Houston (dllh), David A. Kennedy, David Herrera, David Naber, DavidTheMachine, DeBAAT, Dion Hulse, Dominik Schilling, Donncha O Caoimh, Drew Jaynes, Dustyn Doyle, Eddie Moya, Eduardo Reveles, Edwin Siebel, ehg, Enrique Chavez, erayalakese, Eric Andrew Lewis, Eric Binnion, Eric Mann, Evan Anderson, Evan Herman, Fabien Quatravaux, Fahmi Adib, feedmeastraycat, Frank Klein, garhdez, Gary Cao, Gary Jones, Gary Pendergast, garza, gauravmittal1995, Gavrisimo, George Stephanis, Graham Armfield, Grant Mangham, Gregory Cornelius, Gustavo Bordoni, harrym, hebbet, Hinnerk Altenburg, Hugh Lashbrooke, iljoja, imath, Ipstenu (Mika Epstein), issuu, J.D. Grimes, Jack Lenox, Jack Reichert, Jacob Dubail, JanHenkG, Janneke Van Dorpe, Jared Wenerd, Jaza613, Jeff Stieler, Jeremy Felt, Jeremy Pry, Jeroen Schmit, Jerry Bates (jerrysarcastic), Jesin A, Jesper Johansen (jayjdk), Jesper van Engelen, Jesper van Engelen, Jesse Pollak, jgadbois, Joan Artes, Joe Dolson, Joe Hoyle, Joey Kudish, John Blackbourn, John James Jacoby, John Zanussi, Jon Cave, jonnyauk, Joost de Valk, Jordi Cabot, Josh Eaton, JOTAKI Taisuke, Julio Potier, Justin Sainton, Justin Sternberg, Justin Tadlock, K.Adam White, Kailey (trepmal), Kaito, kapeels, Kelly Dwan, Kevin Langley, Kevin Worthington, Kim Parsell, Kirk Wight, kitchin, Knut Sparhell, Konstantin Kovshenin, Konstantin Obenland, Kurt Payne, Lance Willett, Lee Willis, lessbloat, Lew Ayotte, lritter, Luke Gedeon, m_i_n, Manny Fleurmond, Manuel Schmalstieg, Marius Jensen (Clorith), Mark Jaquith, Marko Heijnen, Matt Banks, Matt Martz, Matt Mullenweg, Matt Wiebe, Matthew Boynes, Matthew Denton, Matthew Eppelsheimer, Matthew Haines-Young, mattyrob, meekyhwang, Mel Choyce, mi_cat, Michael Adams (mdawaffe), michalzuber, Mike Auteri, Mike Hansen, Mike Jolley, Mike Little, Mike Manger, Mike Schroder, Mikey Arce, Milan Dinic, mnelson4, Morgan Estes, Mr Papa, mrmist, Mustafa Uysal, MuViMoTV, nabil_kadimi, Namibia, Nashwan Doaqan, nd987, Neil Pie, Niall Kennedy, Nick Halsey, Nikolay Bachiyski, Nils Schonwald, Ninos, Nowell VanHoesen, Patrick Hesselberg, Paul Bearne, Paul Clark, Paul Wilde, paulschreiber, pavelevap, Peter Westwood, Philip Arthur Moore, Philip John, Piet, Piotr Soluch, Pippin Williamson, purzlbaum, Rachel Baker, RC Lations, Richard Tape, Ricky Lee Whittemore, rob1n, Robert Chapin, Robert Dall, RobertHarm, Rohan Rawat, Rouven Hurling, Ruud Laan, Ryan Boren, Ryan McCue, Sam Brodie, Samuel Wood (Otto), sathishn, Scott Reilly, Scott Taylor, ScreenfeedFr, scribu, Sean Hayes, Sean Nessworthy, Sergej Muller, Sergey Biryukov, shanebp, Shaun Andrews, Simon Wheatley, simonp303, Slobodan Manic, solarissmoke, sphoid, Stephane Daury, Stephen Edgar, Steven Jones, strangerstudios, Sumit Singh, sumobi, t4k1s, Takashi Irie, Taylor Dewey, Thomas van der Beek, Till Kruss, Tim ‘Eli’ Dalbey, TobiasBg, Tom J Nowell, Tom Willmot, Topher, torresga, Tracy Levesque, Travis Smith, treyhunner, Umesh Kumar, Vinod Dalvi, vlajos, voldemortensen, Weston Ruter, winterDev, Wojtek Szkutnik, Yoav Farhi, Zack Katz, Zack Tollman, Zoe Rooney。また、リリースビデオのプロデュースをしてくれたMichael Pick 、音楽に関してはHelenと Adrián Sandí に感謝します。

\n

開発の動向を追いたい場合、または手助けしてくれる場合は、Make WordPressコア開発ブログをチェックしてみてください。WordPress を選んでくれてありがとうございます。またすぐ、バージョン4.1でお会いしましょう​​!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://ja.wordpress.org/2014/09/05/benny/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.0リリース候補\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://ja.wordpress.org/2014/08/28/wordpress-4-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://ja.wordpress.org/2014/08/28/wordpress-4-0-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Aug 2014 04:46:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ja.wordpress.org/?p=3178\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:600:\"WordPress 4.0の最初のリリース候補が利用可能になりました。\r\n\r\nRC 1では、このリリースのために取り組んできたものに改良を加えました。これらの機能の詳細についてはベータ1のアナウンスをご確認ください。来週には WordPress 4.0をリリースしたいと考えていますが、そのためにはみなさんの助けが必要です。まだ4.0をテストしていない場合は、今をおいて他にありません。(冒険がしたいのでなければ、本番環境ではテストしないでください。)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"JOTAKI Taisuke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3371:\"

以下は、Helen Hou-Sandi が書いた WordPress.org 公式ブログの記事、「WordPress 4.0 Release Candidate」を訳したものです。

\n

WordPress 4.0 RC1 の日本語版はwordpress-4.0-RC1-ja.zipよりダウンロードできます。

\n

誤字脱字誤訳等ありましたらフォーラムまでお知らせください

\n
\n

WordPress 4.0の最初のリリース候補が利用可能になりました。

\n

RC 1では、このリリースのために取り組んできたものに改良を加えました。これらの機能の詳細についてはベータ1のアナウンスをご確認ください。来週には WordPress 4.0をリリースしたいと考えていますが、そのためにはみなさんの助けが必要です。まだ4.0をテストしていない場合は、今をおいて他にありません。(冒険がしたいのでなければ、本番環境ではテストしないでください。)

\n

もしバグを見つけたと思ったら?サポートフォーラムのアルファ/ベータエリアに投稿してください。既知の問題かどうか分からなければ、ここで確認できます

\n

WordPress 4.0 RC1 をテストするには、WordPress ベータテスタープラグイン (「最新版ナイトリービルド」を選択) をご利用ください。もしくはこちらからリリース候補版をダウンロードしてください(zip形式)。WordPress 4.0の新機能についての詳細を知りたい場合は、ダッシュボード画面の「WordPressについて」のページをご覧ください。(\"\"ツールバーのWordPressについて )。

\n

開発者みなさま、WordPress 4.0に対してご自分のプラグインやテーマをテストし、来週までにREADMEのTested up toのバージョンを4.0に更新してください。互換性の問題を見つけた場合、サポートフォーラムにその問題を投稿しておいてください。そうすれば、最終的なリリースの前に私たちがそれを把握することができます。また、よかったらご自分のプラグインにアイコンを与えてみてください。これは先週ローンチしたもので、バナーと一緒にダッシュボードに表示されます。

\n

もうそろそろです
\n4.0リリースと
\nその素晴らしさが

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://ja.wordpress.org/2014/08/28/wordpress-4-0-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.0 ベータ 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://ja.wordpress.org/2014/08/16/wordpress-4-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://ja.wordpress.org/2014/08/16/wordpress-4-0-beta-4/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Aug 2014 04:25:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ja.wordpress.org/?p=3168\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:631:\"WordPress 4.0の4番目の、そしておそらく最後のベータ版が利用可能になりました。この一月で私たちは以下を含む250以上の変更を行いました:\r\n\r\n 特にボックスrの2番めのカラムに来た時のエディタースクロールの挙動のさらなる改善。\r\n 小さな画面でのメディアライブラリモーダルの処理を改善。\r\n メディアライブラリグリッド表示時の個別のバルク選択モード。\r\n インストールする言語選択の改善。\r\n プラグイン詳細とカスタマイザパネルの見た目の微調整。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"JOTAKI Taisuke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3684:\"

以下は、Helen Hou-Sandi が書いた WordPress.org 公式ブログの記事、「WordPress 4.0 Beta 4」を訳したものです。

\n

WordPress 4.0 ベータ 4 の日本語版については別途ご案内いたします。

\n

WordPress 4.0 ベータ 4 の日本語版をリリースしました。不具合等ございましたらフォーラムへご連絡をお願いします。

\n\n

誤字脱字誤訳等ありましたらフォーラムまでお知らせください

\n
\n

WordPress 4.0の4番目の、そしておそらく最後のベータ版が利用可能になりました。この一月で私たちは以下を含む250以上の変更を行いました:

\n\n

みなさんの助けが必要です 。私たちはいまもまだ今月のリリースを目指していて、それはつまりバグを特定し、退治するために次の週が重要となることを意味しています。参加協力してくれるのなら、何を探すべきなのかをベータ1のアナウンスで確認してください。

\n

バグを見つけたと思ったらフォーラムのアルファ/ベータエリア日本語)へお知らせください。フレンドリーなモデレーターがお待ちしています。プラグイン開発者の方はもしまだWordPress4.0をテストしていなければ、今がその時です。そしてご自分のプラグインの “tested up to” のバージョンを更新するようにしてください。そうすると4.0と互換性があるものとしてリストアップされます。

\n

このソフトウェアはまだ開発中ですので、本番サイトでこれを動作させることことはお勧めしません。新バージョンを触ってみるためのテストサイトを作るとよいでしょう。WordPress 4.0 をテストするには、WordPress ベータテスタープラグイン (「最新版ナイトリービルド」を選択) をご利用ください。または、ここでベータ版(zip)をダウンロードすることができます。

\n

We are working hard/私たちは頑張って作業中
\nTo finish up 4.0/4.0を仕上げるために
\n
Will you help us too?/あなたも手伝ってくれますか?

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://ja.wordpress.org/2014/08/16/wordpress-4-0-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress 3.9.2 セキュリティリリース\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://ja.wordpress.org/2014/08/07/wordpress-3-9-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://ja.wordpress.org/2014/08/07/wordpress-3-9-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Aug 2014 02:05:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ja.wordpress.org/?p=3159\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:233:\"過去すべてのバージョンに対するセキュリティリリースとして WordPress 3.9.2 がご利用いただけるようになりました。サイトをいますぐ更新されることを強くおすすめします。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Naoko Takano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4030:\"

以下は、Andrew Nacin が書いた WordPress.org 公式ブログの記事、「WordPress 3.9.2 Security Release」を訳したものです。

\n

WordPress 3.9.2 の日本語版は現在準備中です。
\nWordPress 3.9.2 の日本語版はこちらからダウンロードできます。

\n

誤字脱字誤訳等ありましたらフォーラムまでお知らせください

\n
\n

過去すべてのバージョンに対するセキュリティリリースとして WordPress 3.9.2 がご利用いただけるようになりました。サイトをいますぐ更新されることを強くおすすめします。

\n

このリリースでは、Salesforce.com のプロダクトセキュリティチームの Nir Goldshlager によって報告された PHP の XML 処理に含まれるサービス妨害 (DoS) 問題の可能性を修正しています。WordPress セキュリティチームの Michael Adams と Andrew Nacin、そして Drupal セキュリティチームの David Rothstein が修正を行いました。2つのプロジェクトがセキュリティリリースのために共同で調整を行ったのは今回が初めてのことです。

\n

WordPress 3.9.2 には他のセキュリティ関連の変更も含まれています。

\n\n

これらの問題に対し、私たちのセキュリティチームに責任ある情報開示をしてくださったことに感謝します。さらに詳しい情報についてはリリースノートまたは変更点一覧をご覧ください。

\n

WordPress 3.9.2 (英語版、日本語版はこちら) をダウンロードするか、「ダッシュボード → 更新」へ移動して「いますぐ更新」をクリックしてください。

\n

自動バックグラウンド更新に対応しているサイトは12時間以内に WordPress 3.9.2 へ更新されます (もしまだ WordPress 3.8.3 または 3.7.3 をお使いの場合も、3.8.4 または 3.7.4 に自動更新されます。過去のバージョンはサポートしていませんので、最新の 3.9.2 にぜひアップグレードして下さい) 。

\n

WordPress 4.0 をすでにテスト中の方へ。ベータ3がすでにダウンロード可能 (zip) になっており、これらのセキュリティ修正が含まれています。

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://ja.wordpress.org/2014/08/07/wordpress-3-9-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:29:\"http://ja.wordpress.org/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 28 Mar 2015 01:54:55 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:34:\"http://ja.wordpress.org/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Fri, 20 Mar 2015 01:43:22 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20150322164651\";}", "no"); INSERT INTO `wp_options` VALUES("843", "db_upgraded", "", "yes"); INSERT INTO `wp_options` VALUES("1621", "jetpack_security_report", "a:0:{}", "yes"); INSERT INTO `wp_options` VALUES("1693", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1427402438", "yes"); INSERT INTO `wp_options` VALUES("1694", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"4916\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3078\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3022\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2529\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2346\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1892\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1729\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1680\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1678\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1676\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1612\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1609\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1505\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1322\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1276\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1175\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1171\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1083\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1079\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"918\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"905\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"874\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"843\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"837\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"794\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"758\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"748\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"709\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:3:\"700\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"692\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"682\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"657\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"649\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"642\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"642\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"623\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"620\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"605\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"600\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"593\";}}", "yes"); INSERT INTO `wp_options` VALUES("1734", "_site_transient_timeout_theme_roots", "1427507126", "yes"); INSERT INTO `wp_options` VALUES("1735", "_site_transient_theme_roots", "a:4:{s:22:\"keni6_wp_pretty_130621\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}", "yes"); INSERT INTO `wp_options` VALUES("1547", "_site_transient_timeout_browser_2ecdbfd8102b573d256a595b708fbee8", "1427647799", "yes"); INSERT INTO `wp_options` VALUES("1548", "_site_transient_browser_2ecdbfd8102b573d256a595b708fbee8", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"34.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes"); INSERT INTO `wp_options` VALUES("1748", "_transient_timeout_feed_mod_3b05e8818d3a1ffc177fe8d6c821f3ae", "1427550896", "no"); INSERT INTO `wp_options` VALUES("1749", "_transient_feed_mod_3b05e8818d3a1ffc177fe8d6c821f3ae", "1427507696", "no"); INSERT INTO `wp_options` VALUES("849", "can_compress_scripts", "1", "yes"); INSERT INTO `wp_options` VALUES("1696", "mbYTPlayer_version", "", "yes"); INSERT INTO `wp_options` VALUES("1697", "mbYTPlayer_Home_is_active", "", "yes"); INSERT INTO `wp_options` VALUES("1698", "mbYTPlayer_donate", "true", "yes"); INSERT INTO `wp_options` VALUES("1699", "mbYTPlayer_home_video_url", "https://youtu.be/_jl6OgJnqSI", "yes"); INSERT INTO `wp_options` VALUES("1700", "mbYTPlayer_show_controls", "", "yes"); INSERT INTO `wp_options` VALUES("1701", "mbYTPlayer_show_videourl", "", "yes"); INSERT INTO `wp_options` VALUES("1702", "mbYTPlayer_audio_volume", "50", "yes"); INSERT INTO `wp_options` VALUES("1703", "mbYTPlayer_mute", "", "yes"); INSERT INTO `wp_options` VALUES("1704", "mbYTPlayer_start_at", "0.1", "yes"); INSERT INTO `wp_options` VALUES("1705", "mbYTPlayer_stop_at", "0", "yes"); INSERT INTO `wp_options` VALUES("1706", "mbYTPlayer_ratio", "16/9", "yes"); INSERT INTO `wp_options` VALUES("1707", "mbYTPlayer_loop", "true", "yes"); INSERT INTO `wp_options` VALUES("1708", "mbYTPlayer_opacity", "1", "yes"); INSERT INTO `wp_options` VALUES("1709", "mbYTPlayer_quality", "default", "yes"); INSERT INTO `wp_options` VALUES("1710", "mbYTPlayer_add_raster", "", "yes"); INSERT INTO `wp_options` VALUES("1711", "mbYTPlayer_track_ga", "true", "yes"); INSERT INTO `wp_options` VALUES("1712", "mbYTPlayer_stop_onclick", "", "yes"); INSERT INTO `wp_options` VALUES("1713", "mbYTPlayer_stop_on_blur", "", "yes"); INSERT INTO `wp_options` VALUES("1714", "mbYTPlayer_realfullscreen", "false", "yes"); INSERT INTO `wp_options` VALUES("1715", "mbYTPlayer_home_video_page", "static", "yes"); INSERT INTO `wp_options` VALUES("1742", "_transient_timeout_feed_08a9370cca8e4bda25c11f8557e93830", "1428110138", "no"); INSERT INTO `wp_options` VALUES("1743", "_transient_feed_08a9370cca8e4bda25c11f8557e93830", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:23:\"\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Google Sitemap Generator Support Topics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Google Sitemap Generator Support Topics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Wed, 02 Jul 2014 7:54:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:3:{i:0;a:6:{s:4:\"data\";s:19:\"\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Common error messages in Google Webmaster Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://www.arnebrachhold.de/redir/sitemap-feed-gwterrs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"C2VZYxeTESzcCF2IhS13\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Apr 2014 00:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:19:\"\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"How to move your sitemap to the root of your domain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://www.arnebrachhold.de/redir/sitemap-feed-movesm/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"C2VZYxeTESzcCF2IhS12\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Apr 2014 00:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:19:\"\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Introducing a new format for your sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://www.arnebrachhold.de/redir/sitemap-feed-newformat/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"C2VZYxeTESzcCF2IhS1l\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Apr 2014 00:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:4:\"date\";s:29:\"Sat, 28 Mar 2015 01:15:38 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=utf-8\";s:10:\"connection\";s:5:\"close\";s:10:\"set-cookie\";s:133:\"__cfduid=d988ce3008d74b4660abd72aaa190a9b81427505337; expires=Sun, 27-Mar-16 01:15:37 GMT; path=/; domain=.arnebrachhold.de; HttpOnly\";s:13:\"cache-control\";s:21:\"public, max-age=86400\";s:13:\"last-modified\";s:29:\"Wed, 02 Jul 2014 19:54:35 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:6:\"server\";s:16:\"cloudflare-nginx\";s:6:\"cf-ray\";s:20:\"1cdf7c275216043d-NRT\";}s:5:\"build\";s:14:\"20150322164651\";}", "no"); INSERT INTO `wp_options` VALUES("1731", "_transient_timeout_jetpack_site_is_vcs", "1427591724", "no"); INSERT INTO `wp_options` VALUES("1732", "_transient_jetpack_site_is_vcs", "0", "no"); INSERT INTO `wp_options` VALUES("1625", "jetpack_updates", "a:7:{s:7:\"plugins\";i:0;s:6:\"themes\";i:0;s:9:\"wordpress\";i:0;s:12:\"translations\";i:0;s:5:\"total\";i:0;s:10:\"wp_version\";s:5:\"4.1.1\";s:26:\"site_is_version_controlled\";b:0;}", "yes"); INSERT INTO `wp_options` VALUES("1634", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"0.5.12\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes"); INSERT INTO `wp_options` VALUES("1635", "duplicator_version_plugin", "0.5.12", "yes"); INSERT INTO `wp_options` VALUES("1741", "_site_transient_update_plugins", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1427505335;s:8:\"response\";a:2:{s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"520\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:7:\"2.2.6.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip\";}s:41:\"wp-database-backup/wp-database-backup.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"48888\";s:4:\"slug\";s:18:\"wp-database-backup\";s:6:\"plugin\";s:41:\"wp-database-backup/wp-database-backup.php\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wp-database-backup/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-database-backup.zip\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:22:{s:27:\"addquicktag/addquicktag.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"619\";s:4:\"slug\";s:11:\"addquicktag\";s:6:\"plugin\";s:27:\"addquicktag/addquicktag.php\";s:11:\"new_version\";s:5:\"2.4.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/addquicktag/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/addquicktag.zip\";}s:47:\"advanced-page-manager/advanced_page_manager.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"35876\";s:4:\"slug\";s:21:\"advanced-page-manager\";s:6:\"plugin\";s:47:\"advanced-page-manager/advanced_page_manager.php\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/advanced-page-manager/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/advanced-page-manager.1.4.zip\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.1.zip\";}s:43:\"auto-post-thumbnail/auto-post-thumbnail.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14246\";s:4:\"slug\";s:19:\"auto-post-thumbnail\";s:6:\"plugin\";s:43:\"auto-post-thumbnail/auto-post-thumbnail.php\";s:11:\"new_version\";s:5:\"3.3.3\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/auto-post-thumbnail/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/auto-post-thumbnail.3.3.3.zip\";}s:19:\"bbpress/bbpress.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11780\";s:4:\"slug\";s:7:\"bbpress\";s:6:\"plugin\";s:19:\"bbpress/bbpress.php\";s:11:\"new_version\";s:5:\"2.5.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/bbpress/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.6.zip\";}s:34:\"drag-drop-featured-image/index.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"33815\";s:4:\"slug\";s:24:\"drag-drop-featured-image\";s:6:\"plugin\";s:34:\"drag-drop-featured-image/index.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:14:\"upgrade_notice\";s:50:\"Added spanish language files, no critical changes.\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/drag-drop-featured-image/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/drag-drop-featured-image.zip\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1295\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"2.6\";s:14:\"upgrade_notice\";s:90:\"PHP 5.4 (Strict Standards) compatible + Fixed possible XSS and SQL injections + other bugs\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.2.6.zip\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"0.5.12\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.0.5.12.zip\";}s:35:\"dynamic-widgets/dynamic-widgets.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"12388\";s:4:\"slug\";s:15:\"dynamic-widgets\";s:6:\"plugin\";s:35:\"dynamic-widgets/dynamic-widgets.php\";s:11:\"new_version\";s:5:\"1.5.9\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/dynamic-widgets/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/dynamic-widgets.1.5.9.zip\";}s:31:\"easing-slider/easing-slider.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"16460\";s:4:\"slug\";s:13:\"easing-slider\";s:6:\"plugin\";s:31:\"easing-slider/easing-slider.php\";s:11:\"new_version\";s:7:\"2.2.1.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/easing-slider/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/easing-slider.2.2.1.1.zip\";}s:36:\"google-sitemap-generator/sitemap.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:24:\"google-sitemap-generator\";s:6:\"plugin\";s:36:\"google-sitemap-generator/sitemap.php\";s:11:\"new_version\";s:5:\"4.0.8\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.8.zip\";}s:33:\"heatmap-for-wp/heatmap-for-wp.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"47607\";s:4:\"slug\";s:14:\"heatmap-for-wp\";s:6:\"plugin\";s:33:\"heatmap-for-wp/heatmap-for-wp.php\";s:11:\"new_version\";s:5:\"0.3.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/heatmap-for-wp/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/heatmap-for-wp.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:29:\"image-widget/image-widget.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"4078\";s:4:\"slug\";s:12:\"image-widget\";s:6:\"plugin\";s:29:\"image-widget/image-widget.php\";s:11:\"new_version\";s:3:\"4.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/image-widget/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/image-widget.4.1.zip\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"3.4.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.4.1.zip\";}s:27:\"wpmbytplayer/mbYTPlayer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"31313\";s:4:\"slug\";s:12:\"wpmbytplayer\";s:6:\"plugin\";s:27:\"wpmbytplayer/mbYTPlayer.php\";s:11:\"new_version\";s:5:\"1.9.7\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpmbytplayer/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wpmbytplayer.1.9.7.zip\";}s:39:\"siteorigin-panels/siteorigin-panels.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"40030\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:6:\"plugin\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/siteorigin-panels/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/siteorigin-panels.2.0.7.zip\";}s:39:\"plugin-memorandum/plugin-memorandum.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"28900\";s:4:\"slug\";s:17:\"plugin-memorandum\";s:6:\"plugin\";s:39:\"plugin-memorandum/plugin-memorandum.php\";s:11:\"new_version\";s:5:\"0.1.6\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/plugin-memorandum/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/plugin-memorandum.0.1.6.zip\";}s:41:\"single-post-widget/single-post-widget.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"26092\";s:4:\"slug\";s:18:\"single-post-widget\";s:6:\"plugin\";s:41:\"single-post-widget/single-post-widget.php\";s:11:\"new_version\";s:5:\"0.4.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/single-post-widget/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/single-post-widget.0.4.0.zip\";}s:37:\"tinymce-advanced/tinymce-advanced.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"731\";s:4:\"slug\";s:16:\"tinymce-advanced\";s:6:\"plugin\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:11:\"new_version\";s:5:\"4.1.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/tinymce-advanced/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/tinymce-advanced.4.1.7.zip\";}s:37:\"wordpress-faq-manager/faq-manager.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20420\";s:4:\"slug\";s:21:\"wordpress-faq-manager\";s:6:\"plugin\";s:37:\"wordpress-faq-manager/faq-manager.php\";s:11:\"new_version\";s:5:\"1.331\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/wordpress-faq-manager/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/wordpress-faq-manager.1.331.zip\";}s:41:\"wp-multibyte-patch/wp-multibyte-patch.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"24017\";s:4:\"slug\";s:18:\"wp-multibyte-patch\";s:6:\"plugin\";s:41:\"wp-multibyte-patch/wp-multibyte-patch.php\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wp-multibyte-patch/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.2.zip\";}}}", "yes"); INSERT INTO `wp_options` VALUES("1745", "_transient_feed_mod_08a9370cca8e4bda25c11f8557e93830", "1427505338", "no"); INSERT INTO `wp_options` VALUES("1752", "_transient_timeout_feed_mod_4c74a77fb0311cda9aef46304170e010", "1427550896", "no"); INSERT INTO `wp_options` VALUES("1753", "_transient_feed_mod_4c74a77fb0311cda9aef46304170e010", "1427507696", "no"); /* INSERT TABLE DATA: wp_postmeta */ INSERT INTO `wp_postmeta` VALUES("310", "76", "panels_data", "a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"64\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"3.8888888888889\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"90\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:3;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"23.666666666667\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:6:\"number\";s:1:\"5\";s:9:\"show_date\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:22:\"WP_Widget_Recent_Posts\";}}i:5;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:6;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:7;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"7\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:8;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:18:\"23.666666666666668\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"3\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"8\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:9;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"9\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:10;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:2:\"10\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("24", "10", "_edit_last", "1"); INSERT INTO `wp_postmeta` VALUES("25", "10", "_edit_lock", "1418473704:1"); INSERT INTO `wp_postmeta` VALUES("319", "81", "_easingslider_customizations", "O:8:\"stdClass\":4:{s:6:\"arrows\";O:8:\"stdClass\":4:{s:4:\"next\";s:103:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/nav-arrow-next.png\";s:4:\"prev\";s:103:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/nav-arrow-prev.png\";s:5:\"width\";i:30;s:6:\"height\";i:30;}s:10:\"pagination\";O:8:\"stdClass\":4:{s:8:\"inactive\";s:106:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/nav-icon-inactive.png\";s:6:\"active\";s:104:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/nav-icon-active.png\";s:5:\"width\";i:15;s:6:\"height\";i:15;}s:6:\"border\";O:8:\"stdClass\":3:{s:5:\"color\";s:4:\"#000\";s:5:\"width\";i:0;s:6:\"radius\";i:0;}s:6:\"shadow\";O:8:\"stdClass\":2:{s:5:\"image\";s:95:\"http://oomori.cc/test1/wp-content/plugins/easing-slider/images/shadow.png\";s:7:\"enabled\";b:0;}}"); INSERT INTO `wp_postmeta` VALUES("316", "81", "_easingslider_transitions", "O:8:\"stdClass\":2:{s:6:\"effect\";s:4:\"fade\";s:8:\"duration\";i:100;}"); INSERT INTO `wp_postmeta` VALUES("315", "81", "_easingslider_dimensions", "O:8:\"stdClass\":3:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:10:\"responsive\";b:1;}"); INSERT INTO `wp_postmeta` VALUES("318", "81", "_easingslider_playback", "O:8:\"stdClass\":2:{s:7:\"enabled\";b:1;s:5:\"pause\";i:20000;}"); INSERT INTO `wp_postmeta` VALUES("317", "81", "_easingslider_navigation", "O:8:\"stdClass\":7:{s:6:\"arrows\";b:1;s:12:\"arrows_hover\";b:1;s:15:\"arrows_position\";s:6:\"inside\";s:10:\"pagination\";b:1;s:16:\"pagination_hover\";b:0;s:19:\"pagination_position\";s:6:\"inside\";s:19:\"pagination_location\";s:10:\"top-center\";}"); INSERT INTO `wp_postmeta` VALUES("260", "40", "_edit_last", "1"); INSERT INTO `wp_postmeta` VALUES("261", "40", "_edit_lock", "1418546226:1"); INSERT INTO `wp_postmeta` VALUES("218", "33", "_menu_item_url", "http://oomori.cc/test1/"); INSERT INTO `wp_postmeta` VALUES("217", "33", "_menu_item_xfn", ""); INSERT INTO `wp_postmeta` VALUES("216", "33", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("215", "33", "_menu_item_target", ""); INSERT INTO `wp_postmeta` VALUES("214", "33", "_menu_item_object", "custom"); INSERT INTO `wp_postmeta` VALUES("213", "33", "_menu_item_object_id", "33"); INSERT INTO `wp_postmeta` VALUES("212", "33", "_menu_item_menu_item_parent", "0"); INSERT INTO `wp_postmeta` VALUES("211", "33", "_menu_item_type", "custom"); INSERT INTO `wp_postmeta` VALUES("313", "81", "_easingslider_slides", "a:2:{i:0;O:8:\"stdClass\":8:{s:2:\"id\";i:1;s:13:\"attachment_id\";i:59;s:4:\"type\";s:5:\"image\";s:3:\"alt\";s:0:\"\";s:11:\"aspectRatio\";N;s:4:\"link\";s:4:\"none\";s:7:\"linkUrl\";N;s:5:\"title\";s:12:\"お知らせ\";}i:1;O:8:\"stdClass\":8:{s:2:\"id\";i:2;s:13:\"attachment_id\";i:66;s:4:\"type\";s:5:\"image\";s:3:\"alt\";s:0:\"\";s:11:\"aspectRatio\";N;s:4:\"link\";s:4:\"none\";s:7:\"linkUrl\";N;s:5:\"title\";s:14:\"お知らせ11\";}}"); INSERT INTO `wp_postmeta` VALUES("220", "34", "_menu_item_type", "custom"); INSERT INTO `wp_postmeta` VALUES("221", "34", "_menu_item_menu_item_parent", "0"); INSERT INTO `wp_postmeta` VALUES("222", "34", "_menu_item_object_id", "34"); INSERT INTO `wp_postmeta` VALUES("223", "34", "_menu_item_object", "custom"); INSERT INTO `wp_postmeta` VALUES("224", "34", "_menu_item_target", ""); INSERT INTO `wp_postmeta` VALUES("225", "34", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("226", "34", "_menu_item_xfn", ""); INSERT INTO `wp_postmeta` VALUES("227", "34", "_menu_item_url", "http://oomori.cc/test1/"); INSERT INTO `wp_postmeta` VALUES("259", "39", "_edit_lock", "1418546199:1"); INSERT INTO `wp_postmeta` VALUES("229", "35", "_menu_item_type", "custom"); INSERT INTO `wp_postmeta` VALUES("230", "35", "_menu_item_menu_item_parent", "0"); INSERT INTO `wp_postmeta` VALUES("231", "35", "_menu_item_object_id", "35"); INSERT INTO `wp_postmeta` VALUES("232", "35", "_menu_item_object", "custom"); INSERT INTO `wp_postmeta` VALUES("233", "35", "_menu_item_target", ""); INSERT INTO `wp_postmeta` VALUES("234", "35", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("235", "35", "_menu_item_xfn", ""); INSERT INTO `wp_postmeta` VALUES("236", "35", "_menu_item_url", "http://oomori.cc/test1/"); INSERT INTO `wp_postmeta` VALUES("258", "39", "_edit_last", "1"); INSERT INTO `wp_postmeta` VALUES("238", "36", "_menu_item_type", "custom"); INSERT INTO `wp_postmeta` VALUES("239", "36", "_menu_item_menu_item_parent", "0"); INSERT INTO `wp_postmeta` VALUES("240", "36", "_menu_item_object_id", "36"); INSERT INTO `wp_postmeta` VALUES("241", "36", "_menu_item_object", "custom"); INSERT INTO `wp_postmeta` VALUES("242", "36", "_menu_item_target", ""); INSERT INTO `wp_postmeta` VALUES("243", "36", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("244", "36", "_menu_item_xfn", ""); INSERT INTO `wp_postmeta` VALUES("245", "36", "_menu_item_url", "http://oomori.cc/test1/"); INSERT INTO `wp_postmeta` VALUES("257", "38", "_edit_lock", "1418477187:1"); INSERT INTO `wp_postmeta` VALUES("247", "37", "_menu_item_type", "custom"); INSERT INTO `wp_postmeta` VALUES("248", "37", "_menu_item_menu_item_parent", "0"); INSERT INTO `wp_postmeta` VALUES("249", "37", "_menu_item_object_id", "37"); INSERT INTO `wp_postmeta` VALUES("250", "37", "_menu_item_object", "custom"); INSERT INTO `wp_postmeta` VALUES("251", "37", "_menu_item_target", ""); INSERT INTO `wp_postmeta` VALUES("252", "37", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("253", "37", "_menu_item_xfn", ""); INSERT INTO `wp_postmeta` VALUES("254", "37", "_menu_item_url", "http://oomori.cc/test1/"); INSERT INTO `wp_postmeta` VALUES("256", "38", "_edit_last", "1"); INSERT INTO `wp_postmeta` VALUES("262", "41", "_edit_last", "1"); INSERT INTO `wp_postmeta` VALUES("263", "41", "_edit_lock", "1418549275:1"); INSERT INTO `wp_postmeta` VALUES("264", "41", "page_h1", ""); INSERT INTO `wp_postmeta` VALUES("265", "41", "page_layout", "col2"); INSERT INTO `wp_postmeta` VALUES("270", "51", "_edit_last", "1"); INSERT INTO `wp_postmeta` VALUES("271", "51", "_edit_lock", "1426420219:2"); INSERT INTO `wp_postmeta` VALUES("272", "51", "_panels_data_preview", "a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"64\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"3.8888888888889\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"90\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:3;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"23.666666666667\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:6:\"number\";s:1:\"5\";s:9:\"show_date\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:22:\"WP_Widget_Recent_Posts\";}}i:5;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:6;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:7;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"7\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:8;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:18:\"23.666666666666668\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"3\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"8\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:9;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"9\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:10;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:2:\"10\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("273", "51", "page_h1", ""); INSERT INTO `wp_postmeta` VALUES("274", "51", "page_layout", "col1"); INSERT INTO `wp_postmeta` VALUES("275", "51", "panels_data", "a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"64\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"3.8888888888889\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"90\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:3;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"23.666666666667\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:6:\"number\";s:1:\"5\";s:9:\"show_date\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:22:\"WP_Widget_Recent_Posts\";}}i:5;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:6;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:7;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"7\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:8;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:18:\"23.666666666666668\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"3\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"8\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:9;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"9\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:10;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:2:\"10\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("276", "53", "_edit_last", "1"); INSERT INTO `wp_postmeta` VALUES("277", "53", "_edit_lock", "1418550377:1"); INSERT INTO `wp_postmeta` VALUES("278", "57", "_edit_last", "1"); INSERT INTO `wp_postmeta` VALUES("279", "57", "_edit_lock", "1418550832:1"); INSERT INTO `wp_postmeta` VALUES("280", "57", "_bbp_last_active_time", "2014-12-14 18:53:46"); INSERT INTO `wp_postmeta` VALUES("281", "57", "_bbp_forum_subforum_count", "0"); INSERT INTO `wp_postmeta` VALUES("282", "57", "_bbp_reply_count", "0"); INSERT INTO `wp_postmeta` VALUES("283", "57", "_bbp_total_reply_count", "0"); INSERT INTO `wp_postmeta` VALUES("284", "57", "_bbp_topic_count", "0"); INSERT INTO `wp_postmeta` VALUES("285", "57", "_bbp_total_topic_count", "0"); INSERT INTO `wp_postmeta` VALUES("286", "57", "_bbp_topic_count_hidden", "0"); INSERT INTO `wp_postmeta` VALUES("314", "81", "_easingslider_general", "O:8:\"stdClass\":1:{s:9:\"randomize\";s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("287", "59", "_wp_attached_file", "2014/12/4fa5ebfcbbf287480388f15b79f304ed.png"); INSERT INTO `wp_postmeta` VALUES("288", "59", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:44:\"2014/12/4fa5ebfcbbf287480388f15b79f304ed.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"4fa5ebfcbbf287480388f15b79f304ed-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"4fa5ebfcbbf287480388f15b79f304ed-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"4fa5ebfcbbf287480388f15b79f304ed-246x200.png\";s:5:\"width\";i:246;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small_thumbnail\";a:4:{s:4:\"file\";s:42:\"4fa5ebfcbbf287480388f15b79f304ed-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}"); INSERT INTO `wp_postmeta` VALUES("289", "60", "_wp_attached_file", "2014/12/1fbf080ce8275b61157ac18325417979.png"); INSERT INTO `wp_postmeta` VALUES("290", "60", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:150;s:4:\"file\";s:44:\"2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"1fbf080ce8275b61157ac18325417979-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"1fbf080ce8275b61157ac18325417979-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"1fbf080ce8275b61157ac18325417979-246x150.png\";s:5:\"width\";i:246;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small_thumbnail\";a:4:{s:4:\"file\";s:42:\"1fbf080ce8275b61157ac18325417979-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}"); INSERT INTO `wp_postmeta` VALUES("291", "61", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:150;s:4:\"file\";s:45:\"2014/12/1fbf080ce8275b61157ac183254179791.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"1fbf080ce8275b61157ac183254179791-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"1fbf080ce8275b61157ac183254179791-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"1fbf080ce8275b61157ac183254179791-246x150.png\";s:5:\"width\";i:246;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small_thumbnail\";a:4:{s:4:\"file\";s:43:\"1fbf080ce8275b61157ac183254179791-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}"); INSERT INTO `wp_postmeta` VALUES("292", "61", "_wp_attached_file", "2014/12/1fbf080ce8275b61157ac183254179791.png"); INSERT INTO `wp_postmeta` VALUES("293", "51", "_thumbnail_id", "61"); INSERT INTO `wp_postmeta` VALUES("294", "62", "panels_data", "a:3:{s:7:\"widgets\";a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("295", "63", "panels_data", "a:3:{s:7:\"widgets\";a:2:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("296", "64", "_wp_attached_file", "2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png"); INSERT INTO `wp_postmeta` VALUES("297", "64", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:90;s:4:\"file\";s:44:\"2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"ec596c0e52054ccc3fe8e34b385a8c3f-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"ec596c0e52054ccc3fe8e34b385a8c3f-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"ec596c0e52054ccc3fe8e34b385a8c3f-246x90.png\";s:5:\"width\";i:246;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small_thumbnail\";a:4:{s:4:\"file\";s:42:\"ec596c0e52054ccc3fe8e34b385a8c3f-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}"); INSERT INTO `wp_postmeta` VALUES("298", "65", "panels_data", "a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("299", "66", "_wp_attached_file", "2014/12/68047e5226c4cbe99b6b7c0cc1d4b8e6.png"); INSERT INTO `wp_postmeta` VALUES("300", "66", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:44:\"2014/12/68047e5226c4cbe99b6b7c0cc1d4b8e6.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"68047e5226c4cbe99b6b7c0cc1d4b8e6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"68047e5226c4cbe99b6b7c0cc1d4b8e6-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"68047e5226c4cbe99b6b7c0cc1d4b8e6-246x200.png\";s:5:\"width\";i:246;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small_thumbnail\";a:4:{s:4:\"file\";s:42:\"68047e5226c4cbe99b6b7c0cc1d4b8e6-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}"); INSERT INTO `wp_postmeta` VALUES("301", "67", "_wp_attached_file", "2014/12/kousinjouhou.png"); INSERT INTO `wp_postmeta` VALUES("302", "67", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:710;s:6:\"height\";i:30;s:4:\"file\";s:24:\"2014/12/kousinjouhou.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"kousinjouhou-150x30.png\";s:5:\"width\";i:150;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"kousinjouhou-300x12.png\";s:5:\"width\";i:300;s:6:\"height\";i:12;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"kousinjouhou-246x30.png\";s:5:\"width\";i:246;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small_thumbnail\";a:4:{s:4:\"file\";s:22:\"kousinjouhou-60x30.png\";s:5:\"width\";i:60;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}"); INSERT INTO `wp_postmeta` VALUES("303", "68", "panels_data", "a:3:{s:7:\"widgets\";a:3:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"64\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"3.8888888888889\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"90\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("304", "69", "_wp_attached_file", "2014/12/a4e3b91f4efc418660b3cc820e20cab6.png"); INSERT INTO `wp_postmeta` VALUES("305", "69", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:330;s:6:\"height\";i:200;s:4:\"file\";s:44:\"2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"a4e3b91f4efc418660b3cc820e20cab6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"a4e3b91f4efc418660b3cc820e20cab6-300x181.png\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"a4e3b91f4efc418660b3cc820e20cab6-246x200.png\";s:5:\"width\";i:246;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small_thumbnail\";a:4:{s:4:\"file\";s:42:\"a4e3b91f4efc418660b3cc820e20cab6-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}"); INSERT INTO `wp_postmeta` VALUES("306", "70", "panels_data", "a:3:{s:7:\"widgets\";a:5:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"64\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"3.8888888888889\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"90\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:3;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"23.666666666667\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:4;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:18:\"23.666666666666668\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"3\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("307", "71", "_wp_attached_file", "2014/12/1244171682dcb01d6a240e09df148dc2.png"); INSERT INTO `wp_postmeta` VALUES("308", "71", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:44:\"2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"1244171682dcb01d6a240e09df148dc2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"1244171682dcb01d6a240e09df148dc2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"1244171682dcb01d6a240e09df148dc2-246x200.png\";s:5:\"width\";i:246;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small_thumbnail\";a:4:{s:4:\"file\";s:42:\"1244171682dcb01d6a240e09df148dc2-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}"); INSERT INTO `wp_postmeta` VALUES("309", "72", "panels_data", "a:3:{s:7:\"widgets\";a:9:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"64\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"3.8888888888889\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"90\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:3;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"23.666666666667\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:6:\"number\";s:1:\"5\";s:9:\"show_date\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:22:\"WP_Widget_Recent_Posts\";}}i:5;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:6;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"7\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:7;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"8\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:8;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:18:\"23.666666666666668\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"3\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("311", "76", "panels_data", "a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"64\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"3.8888888888889\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"90\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:3;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"23.666666666667\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:6:\"number\";s:1:\"5\";s:9:\"show_date\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:22:\"WP_Widget_Recent_Posts\";}}i:5;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:6;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:7;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"7\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:8;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:18:\"23.666666666666668\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"3\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"8\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:9;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"9\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:10;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:2:\"10\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); INSERT INTO `wp_postmeta` VALUES("312", "76", "panels_data", "a:3:{s:7:\"widgets\";a:11:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:18:\"[easingsliderlite]\";s:6:\"filter\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:14:\"WP_Widget_Text\";}}i:1;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"60\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"2.3333333333333\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"150\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:2;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"64\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"3.8888888888889\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"90\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:3;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:15:\"23.666666666667\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"3\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:6:\"number\";s:1:\"5\";s:9:\"show_date\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"1\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"4\";s:5:\"class\";s:22:\"WP_Widget_Recent_Posts\";}}i:5;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"5\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:6;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:1:\"6\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:7;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"69\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:4:\"1.65\";s:5:\"width\";s:3:\"330\";s:6:\"height\";s:3:\"200\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"2\";s:4:\"cell\";s:1:\"2\";s:2:\"id\";s:1:\"7\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:8;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"67\";s:8:\"imageurl\";s:88:\"http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:18:\"23.666666666666668\";s:5:\"width\";s:3:\"710\";s:6:\"height\";s:2:\"30\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"3\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"8\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:9;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"9\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}i:10;a:14:{s:15:\"uploader_button\";s:15:\"画像を選択\";s:13:\"attachment_id\";s:2:\"71\";s:8:\"imageurl\";s:108:\"http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png\";s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:4:\"size\";s:4:\"full\";s:12:\"aspect_ratio\";s:1:\"1\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:5:\"align\";s:4:\"none\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"4\";s:4:\"cell\";s:1:\"1\";s:2:\"id\";s:2:\"10\";s:5:\"class\";s:18:\"Tribe_Image_Widget\";}}}s:5:\"grids\";a:5:{i:0;a:1:{s:5:\"cells\";s:1:\"2\";}i:1;a:1:{s:5:\"cells\";s:1:\"1\";}i:2;a:1:{s:5:\"cells\";s:1:\"3\";}i:3;a:1:{s:5:\"cells\";s:1:\"1\";}i:4;a:1:{s:5:\"cells\";s:1:\"2\";}}s:10:\"grid_cells\";a:9:{i:0;a:2:{s:6:\"weight\";s:18:\"0.6334841628959276\";s:4:\"grid\";s:1:\"0\";}i:1;a:2:{s:6:\"weight\";s:18:\"0.3665158371040724\";s:4:\"grid\";s:1:\"0\";}i:2;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"1\";}i:3;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:4;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:5;a:2:{s:6:\"weight\";s:18:\"0.3333333333333333\";s:4:\"grid\";s:1:\"2\";}i:6;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"3\";}i:7;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}i:8;a:2:{s:6:\"weight\";s:3:\"0.5\";s:4:\"grid\";s:1:\"4\";}}}"); /* INSERT TABLE DATA: wp_posts */ INSERT INTO `wp_posts` VALUES("1", "1", "2014-12-13 19:20:29", "2014-12-13 19:20:29", "WordPress へようこそ。これは最初の投稿です。編集もしくは削除してブログを始めてください !", "Hello world!", "", "publish", "open", "open", "", "hello-world", "", "", "2014-12-13 19:20:29", "2014-12-13 19:20:29", "", "0", "http://oomori.cc/test1?p=1", "0", "post", "", "1"); INSERT INTO `wp_posts` VALUES("76", "2", "2015-03-13 20:20:00", "2015-03-13 11:20:00", "[easingsliderlite] \"\"\"\"\"\"\n

最近の投稿

\n\n\"\"\"\"\"\"\"\"\"\"\"\"", "トップページ", "", "inherit", "open", "open", "", "51-autosave-v1", "", "", "2015-03-13 20:20:00", "2015-03-13 11:20:00", "", "51", "http://oomori.cc/test1/51-autosave-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("10", "1", "2014-12-13 21:28:24", "0000-00-00 00:00:00", "", "あああ", "", "draft", "open", "open", "", "", "", "", "2014-12-13 21:28:24", "2014-12-13 12:28:24", "", "0", "http://oomori.cc/test1/?p=10", "0", "post", "", "0"); INSERT INTO `wp_posts` VALUES("39", "1", "2014-12-14 17:38:51", "2014-12-14 08:38:51", "回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答", "質問テスト1QA", "", "publish", "open", "open", "", "%e8%b3%aa%e5%95%8f%e3%83%86%e3%82%b9%e3%83%881qa", "", "", "2014-12-14 17:38:51", "2014-12-14 08:38:51", "", "0", "http://oomori.cc/test1/?post_type=question&p=39", "0", "question", "", "0"); INSERT INTO `wp_posts` VALUES("38", "1", "2014-12-13 22:25:31", "2014-12-13 13:25:31", "テスト1テスト1テスト1テスト1テスト1テスト1テスト1テスト1テスト1テスト1テスト1テスト1", "テスト1", "", "publish", "open", "open", "", "%e3%83%86%e3%82%b9%e3%83%881", "", "", "2014-12-13 22:25:31", "2014-12-13 13:25:31", "", "0", "http://oomori.cc/test1/?post_type=question&p=38", "0", "question", "", "0"); INSERT INTO `wp_posts` VALUES("37", "1", "2014-12-13 22:05:37", "2014-12-13 13:05:37", "", "", "", "publish", "open", "open", "", "37", "", "", "2014-12-13 22:05:37", "2014-12-13 13:05:37", "", "0", "http://oomori.cc/test1/?p=37", "5", "nav_menu_item", "", "0"); INSERT INTO `wp_posts` VALUES("36", "1", "2014-12-13 22:05:37", "2014-12-13 13:05:37", "", "", "", "publish", "open", "open", "", "36", "", "", "2014-12-13 22:05:37", "2014-12-13 13:05:37", "", "0", "http://oomori.cc/test1/?p=36", "4", "nav_menu_item", "", "0"); INSERT INTO `wp_posts` VALUES("35", "1", "2014-12-13 22:05:37", "2014-12-13 13:05:37", "", "", "", "publish", "open", "open", "", "35", "", "", "2014-12-13 22:05:37", "2014-12-13 13:05:37", "", "0", "http://oomori.cc/test1/?p=35", "3", "nav_menu_item", "", "0"); INSERT INTO `wp_posts` VALUES("33", "1", "2014-12-13 22:05:36", "2014-12-13 13:05:36", "", "", "", "publish", "open", "open", "", "33", "", "", "2014-12-13 22:05:36", "2014-12-13 13:05:36", "", "0", "http://oomori.cc/test1/?p=33", "1", "nav_menu_item", "", "0"); INSERT INTO `wp_posts` VALUES("34", "1", "2014-12-13 22:05:37", "2014-12-13 13:05:37", "", "", "", "publish", "open", "open", "", "34", "", "", "2014-12-13 22:05:37", "2014-12-13 13:05:37", "", "0", "http://oomori.cc/test1/?p=34", "2", "nav_menu_item", "", "0"); INSERT INTO `wp_posts` VALUES("40", "1", "2014-12-14 17:39:21", "2014-12-14 08:39:21", "回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答\r\n\r\n回答", "質問2QA", "", "publish", "open", "open", "", "%e8%b3%aa%e5%95%8f2qa", "", "", "2014-12-14 17:39:21", "2014-12-14 08:39:21", "", "0", "http://oomori.cc/test1/?post_type=question&p=40", "0", "question", "", "0"); INSERT INTO `wp_posts` VALUES("41", "1", "2014-12-14 17:42:44", "2014-12-14 08:42:44", "[faq]", "よくあるご質問", "", "publish", "open", "open", "", "qa", "", "", "2014-12-14 18:01:36", "2014-12-14 09:01:36", "", "0", "http://oomori.cc/test1/?page_id=41", "0", "page", "", "0"); INSERT INTO `wp_posts` VALUES("43", "1", "2014-12-14 17:44:25", "2014-12-14 08:44:25", "[faq]", "よくあるご質問", "", "inherit", "open", "open", "", "41-revision-v1", "", "", "2014-12-14 17:44:25", "2014-12-14 08:44:25", "", "41", "http://oomori.cc/test1/41-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("42", "1", "2014-12-14 17:42:44", "2014-12-14 08:42:44", "[faqcombo]", "よくあるご質問", "", "inherit", "open", "open", "", "41-revision-v1", "", "", "2014-12-14 17:42:44", "2014-12-14 08:42:44", "", "41", "http://oomori.cc/test1/41-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("45", "1", "2014-12-14 17:48:50", "2014-12-14 08:48:50", "[faqcombo]", "よくあるご質問", "", "inherit", "open", "open", "", "41-revision-v1", "", "", "2014-12-14 17:48:50", "2014-12-14 08:48:50", "", "41", "http://oomori.cc/test1/41-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("46", "1", "2014-12-14 17:49:36", "2014-12-14 08:49:36", "[faqlist]", "よくあるご質問", "", "inherit", "open", "open", "", "41-revision-v1", "", "", "2014-12-14 17:49:36", "2014-12-14 08:49:36", "", "41", "http://oomori.cc/test1/41-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("47", "1", "2014-12-14 17:54:39", "2014-12-14 08:54:39", "faqcombo", "よくあるご質問", "", "inherit", "open", "open", "", "41-autosave-v1", "", "", "2014-12-14 17:54:39", "2014-12-14 08:54:39", "", "41", "http://oomori.cc/test1/41-autosave-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("48", "1", "2014-12-14 17:54:41", "2014-12-14 08:54:41", "「faqcombo」", "よくあるご質問", "", "inherit", "open", "open", "", "41-revision-v1", "", "", "2014-12-14 17:54:41", "2014-12-14 08:54:41", "", "41", "http://oomori.cc/test1/41-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("49", "1", "2014-12-14 17:55:31", "2014-12-14 08:55:31", "[faqlist]", "よくあるご質問", "", "inherit", "open", "open", "", "41-revision-v1", "", "", "2014-12-14 17:55:31", "2014-12-14 08:55:31", "", "41", "http://oomori.cc/test1/41-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("50", "1", "2014-12-14 18:01:36", "2014-12-14 09:01:36", "[faq]", "よくあるご質問", "", "inherit", "open", "open", "", "41-revision-v1", "", "", "2014-12-14 18:01:36", "2014-12-14 09:01:36", "", "41", "http://oomori.cc/test1/41-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("51", "1", "2014-12-14 18:35:28", "2014-12-14 09:35:28", "[easingsliderlite]\n\"\"\"\"\"\"

最近の投稿

\n\nHello world!\n\n\"\"\"\"\"\"\"\"\"\"\"\"", "トップページ", "", "publish", "open", "open", "", "%e3%83%88%e3%83%83%e3%83%97%e3%83%9a%e3%83%bc%e3%82%b8", "", "", "2014-12-15 00:23:21", "2014-12-14 15:23:21", "", "0", "http://oomori.cc/test1/?page_id=51", "0", "page", "", "0"); INSERT INTO `wp_posts` VALUES("52", "1", "2014-12-14 18:35:30", "2014-12-14 09:35:30", "[easingsliderlite]\n        ", "トップページ", "", "inherit", "open", "open", "", "51-revision-v1", "", "", "2014-12-14 18:35:30", "2014-12-14 09:35:30", "", "51", "http://oomori.cc/test1/51-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("53", "1", "2014-12-14 18:46:17", "0000-00-00 00:00:00", "", "テストフォーラム", "", "draft", "closed", "closed", "", "", "", "", "2014-12-14 18:46:17", "2014-12-14 09:46:17", "", "0", "http://oomori.cc/test1/?post_type=forum&p=53", "0", "forum", "", "0"); INSERT INTO `wp_posts` VALUES("57", "1", "2014-12-14 18:53:52", "2014-12-14 09:53:52", "テストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラム", "テストフォーラム", "", "publish", "closed", "open", "", "%e3%83%86%e3%82%b9%e3%83%88%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a9%e3%83%a0", "", "", "2014-12-14 18:53:52", "2014-12-14 09:53:52", "", "0", "http://oomori.cc/test1/?post_type=forum&p=57", "0", "forum", "", "0"); INSERT INTO `wp_posts` VALUES("58", "1", "2014-12-14 18:53:52", "2014-12-14 09:53:52", "テストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラムテストフォーラム", "テストフォーラム", "", "inherit", "open", "open", "", "57-revision-v1", "", "", "2014-12-14 18:53:52", "2014-12-14 09:53:52", "", "57", "http://oomori.cc/test1/57-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("81", "2", "2015-03-15 20:53:19", "2015-03-15 11:53:19", "", "Easing Slider \"Lite\"", "", "publish", "open", "open", "", "easing-slider-lite", "", "", "2015-03-15 20:53:19", "2015-03-15 11:53:19", "", "0", "http://oomori.cc/test1/?post_type=easingslider&p=81", "0", "easingslider", "", "0"); INSERT INTO `wp_posts` VALUES("59", "1", "2014-12-14 23:54:59", "2014-12-14 14:54:59", "", "お知らせ", "", "inherit", "open", "open", "", "%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b", "", "", "2014-12-14 23:54:59", "2014-12-14 14:54:59", "", "0", "http://oomori.cc/test1/wp-content/uploads/2014/12/4fa5ebfcbbf287480388f15b79f304ed.png", "0", "attachment", "image/png", "0"); INSERT INTO `wp_posts` VALUES("60", "1", "2014-12-15 00:11:27", "2014-12-14 15:11:27", "", "", "", "inherit", "open", "open", "", "%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b2", "", "", "2014-12-15 00:11:33", "2014-12-14 15:11:33", "", "51", "http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac18325417979.png", "0", "attachment", "image/png", "0"); INSERT INTO `wp_posts` VALUES("61", "1", "2014-12-15 00:11:38", "2014-12-14 15:11:38", "[easingsliderlite]\n\"\"       ", "", "", "inherit", "open", "open", "", "61", "", "", "2014-12-15 00:11:38", "2014-12-14 15:11:38", "", "51", "http://oomori.cc/test1/wp-content/uploads/2014/12/1fbf080ce8275b61157ac183254179791.png", "0", "attachment", "image/png", "0"); INSERT INTO `wp_posts` VALUES("62", "1", "2014-12-15 00:11:38", "2014-12-14 15:11:38", "[easingsliderlite]\n\"\"       ", "トップページ", "", "inherit", "open", "open", "", "51-revision-v1", "", "", "2014-12-15 00:11:38", "2014-12-14 15:11:38", "", "51", "http://oomori.cc/test1/51-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("63", "1", "2014-12-15 00:12:13", "2014-12-14 15:12:13", "[easingsliderlite]\n\"\"\"\"       ", "トップページ", "", "inherit", "open", "open", "", "51-revision-v1", "", "", "2014-12-15 00:12:13", "2014-12-14 15:12:13", "", "51", "http://oomori.cc/test1/51-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("64", "1", "2014-12-15 00:13:30", "2014-12-14 15:13:30", "", "", "", "inherit", "open", "open", "", "%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b3", "", "", "2014-12-15 00:13:36", "2014-12-14 15:13:36", "", "51", "http://oomori.cc/test1/wp-content/uploads/2014/12/ec596c0e52054ccc3fe8e34b385a8c3f.png", "0", "attachment", "image/png", "0"); INSERT INTO `wp_posts` VALUES("65", "1", "2014-12-15 00:13:40", "2014-12-14 15:13:40", "[easingsliderlite]\n\"\"\"\"       ", "トップページ", "", "inherit", "open", "open", "", "51-revision-v1", "", "", "2014-12-15 00:13:40", "2014-12-14 15:13:40", "", "51", "http://oomori.cc/test1/51-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("66", "1", "2014-12-15 00:14:55", "2014-12-14 15:14:55", "", "お知らせ11", "", "inherit", "open", "open", "", "%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b11", "", "", "2014-12-15 00:14:55", "2014-12-14 15:14:55", "", "0", "http://oomori.cc/test1/wp-content/uploads/2014/12/68047e5226c4cbe99b6b7c0cc1d4b8e6.png", "0", "attachment", "image/png", "0"); INSERT INTO `wp_posts` VALUES("67", "1", "2014-12-15 00:17:40", "2014-12-14 15:17:40", "", "", "", "inherit", "open", "open", "", "kousinjouhou", "", "", "2014-12-15 00:17:46", "2014-12-14 15:17:46", "", "51", "http://oomori.cc/test1/wp-content/uploads/2014/12/kousinjouhou.png", "0", "attachment", "image/png", "0"); INSERT INTO `wp_posts` VALUES("68", "1", "2014-12-15 00:18:10", "2014-12-14 15:18:10", "[easingsliderlite]\n\"\"\"\"\"\"   \"\"  ", "トップページ", "", "inherit", "open", "open", "", "51-revision-v1", "", "", "2014-12-15 00:18:10", "2014-12-14 15:18:10", "", "51", "http://oomori.cc/test1/51-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("69", "1", "2014-12-15 00:20:21", "2014-12-14 15:20:21", "", "", "", "inherit", "open", "open", "", "%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b4", "", "", "2014-12-15 00:20:26", "2014-12-14 15:20:26", "", "51", "http://oomori.cc/test1/wp-content/uploads/2014/12/a4e3b91f4efc418660b3cc820e20cab6.png", "0", "attachment", "image/png", "0"); INSERT INTO `wp_posts` VALUES("70", "1", "2014-12-15 00:20:39", "2014-12-14 15:20:39", "[easingsliderlite]\n\"\"\"\"\"\"

最近の投稿

\n\nHello world!\n\n\"\"\"\"\"\"\"\"  ", "トップページ", "", "inherit", "open", "open", "", "51-revision-v1", "", "", "2014-12-15 00:20:39", "2014-12-14 15:20:39", "", "51", "http://oomori.cc/test1/51-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("71", "1", "2014-12-15 00:23:05", "2014-12-14 15:23:05", "", "", "", "inherit", "open", "open", "", "%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b5", "", "", "2014-12-15 00:23:11", "2014-12-14 15:23:11", "", "51", "http://oomori.cc/test1/wp-content/uploads/2014/12/1244171682dcb01d6a240e09df148dc2.png", "0", "attachment", "image/png", "0"); INSERT INTO `wp_posts` VALUES("72", "1", "2014-12-15 00:23:21", "2014-12-14 15:23:21", "[easingsliderlite]\n\"\"\"\"\"\"

最近の投稿

\n\nHello world!\n\n\"\"\"\"\"\"\"\"\"\"\"\"", "トップページ", "", "inherit", "open", "open", "", "51-revision-v1", "", "", "2014-12-15 00:23:21", "2014-12-14 15:23:21", "", "51", "http://oomori.cc/test1/51-revision-v1/", "0", "revision", "", "0"); INSERT INTO `wp_posts` VALUES("82", "2", "2015-03-23 01:49:59", "0000-00-00 00:00:00", "", "自動下書き", "", "auto-draft", "open", "open", "", "", "", "", "2015-03-23 01:49:59", "0000-00-00 00:00:00", "", "0", "http://oomori.cc/test1/?p=82", "0", "post", "", "0"); INSERT INTO `wp_posts` VALUES("83", "3", "2015-03-24 03:03:42", "0000-00-00 00:00:00", "", "自動下書き", "", "auto-draft", "open", "open", "", "", "", "", "2015-03-24 03:03:42", "0000-00-00 00:00:00", "", "0", "http://oomori.cc/test1/?p=83", "0", "post", "", "0"); /* INSERT TABLE DATA: wp_term_relationships */ INSERT INTO `wp_term_relationships` VALUES("1", "1", "0"); INSERT INTO `wp_term_relationships` VALUES("10", "1", "0"); INSERT INTO `wp_term_relationships` VALUES("37", "6", "0"); INSERT INTO `wp_term_relationships` VALUES("36", "6", "0"); INSERT INTO `wp_term_relationships` VALUES("35", "6", "0"); INSERT INTO `wp_term_relationships` VALUES("34", "6", "0"); INSERT INTO `wp_term_relationships` VALUES("33", "6", "0"); INSERT INTO `wp_term_relationships` VALUES("40", "10", "0"); INSERT INTO `wp_term_relationships` VALUES("39", "9", "0"); /* INSERT TABLE DATA: wp_term_taxonomy */ INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "1"); INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "nav_menu", "", "0", "5"); INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "faq-topic", "", "0", "0"); INSERT INTO `wp_term_taxonomy` VALUES("9", "9", "faq-topic", "", "8", "1"); INSERT INTO `wp_term_taxonomy` VALUES("10", "10", "faq-topic", "", "8", "1"); /* INSERT TABLE DATA: wp_terms */ INSERT INTO `wp_terms` VALUES("1", "未分類", "%e6%9c%aa%e5%88%86%e9%a1%9e", "0"); INSERT INTO `wp_terms` VALUES("6", "グローバルナビ", "%e3%82%b0%e3%83%ad%e3%83%bc%e3%83%90%e3%83%ab%e3%83%8a%e3%83%93", "0"); INSERT INTO `wp_terms` VALUES("8", "質問テスト", "%e8%b3%aa%e5%95%8f%e3%83%86%e3%82%b9%e3%83%88", "0"); INSERT INTO `wp_terms` VALUES("9", "質問テスト1", "%e8%b3%aa%e5%95%8f%e3%83%86%e3%82%b9%e3%83%88-%e8%b3%aa%e5%95%8f%e3%83%86%e3%82%b9%e3%83%88", "0"); INSERT INTO `wp_terms` VALUES("10", "質問テスト2", "%e8%b3%aa%e5%95%8f%e3%83%86%e3%82%b9%e3%83%882", "0"); /* INSERT TABLE DATA: wp_usermeta */ INSERT INTO `wp_usermeta` VALUES("1", "1", "nickname", "support"); INSERT INTO `wp_usermeta` VALUES("2", "1", "first_name", ""); INSERT INTO `wp_usermeta` VALUES("3", "1", "last_name", ""); INSERT INTO `wp_usermeta` VALUES("4", "1", "description", ""); INSERT INTO `wp_usermeta` VALUES("5", "1", "rich_editing", "true"); INSERT INTO `wp_usermeta` VALUES("6", "1", "comment_shortcuts", "false"); INSERT INTO `wp_usermeta` VALUES("7", "1", "admin_color", "fresh"); INSERT INTO `wp_usermeta` VALUES("8", "1", "use_ssl", "0"); INSERT INTO `wp_usermeta` VALUES("9", "1", "show_admin_bar_front", "true"); INSERT INTO `wp_usermeta` VALUES("10", "1", "wp_capabilities", "a:2:{s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;}"); INSERT INTO `wp_usermeta` VALUES("11", "1", "wp_user_level", "10"); INSERT INTO `wp_usermeta` VALUES("12", "1", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets,apm_install,aioseop_menu_220"); INSERT INTO `wp_usermeta` VALUES("13", "1", "show_welcome_panel", "1"); INSERT INTO `wp_usermeta` VALUES("14", "1", "session_tokens", "a:2:{s:64:\"2fad38c6fee25feb0ba3585bfe1d8dbb858e88b45a217fda02f1114887063cc6\";i:1419675669;s:64:\"9c1c150df3e3412030fba46f99203f95300cd2ec1fd0c1e9bc0112e5e4987425\";i:1419676671;}"); INSERT INTO `wp_usermeta` VALUES("15", "1", "wp_dashboard_quick_press_last_post_id", "3"); INSERT INTO `wp_usermeta` VALUES("16", "1", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}"); INSERT INTO `wp_usermeta` VALUES("17", "1", "metaboxhidden_nav-menus", "a:7:{i:0;s:8:\"add-post\";i:1;s:9:\"add-forum\";i:2;s:12:\"add-question\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:13:\"add-faq-topic\";i:6;s:12:\"add-faq-tags\";}"); INSERT INTO `wp_usermeta` VALUES("18", "1", "plugins_per_page", "999"); INSERT INTO `wp_usermeta` VALUES("19", "1", "nav_menu_recently_edited", "6"); INSERT INTO `wp_usermeta` VALUES("20", "1", "advanced_page_manager_tree_state", "a:2:{i:0;i:1;i:2;i:0;}"); INSERT INTO `wp_usermeta` VALUES("21", "1", "wp_user-settings", "editor=html&libraryContent=browse"); INSERT INTO `wp_usermeta` VALUES("22", "1", "wp_user-settings-time", "1418568971"); INSERT INTO `wp_usermeta` VALUES("23", "1", "meta-box-order_page", "a:3:{s:4:\"side\";s:67:\"page_layout,submitdiv,tagsdiv-post_tag,pageparentdiv,drag_to_upload\";s:6:\"normal\";s:85:\"h1,postexcerpt,postcustom,commentstatusdiv,slugdiv,authordiv,commentsdiv,revisionsdiv\";s:8:\"advanced\";s:5:\"aiosp\";}"); INSERT INTO `wp_usermeta` VALUES("24", "1", "screen_layout_page", "2"); INSERT INTO `wp_usermeta` VALUES("25", "1", "closedpostboxes_forum", "a:0:{}"); INSERT INTO `wp_usermeta` VALUES("26", "1", "metaboxhidden_forum", "a:2:{i:0;s:7:\"slugdiv\";i:1;s:5:\"aiosp\";}"); INSERT INTO `wp_usermeta` VALUES("27", "1", "wp__bbp_forum_subscriptions", "57"); INSERT INTO `wp_usermeta` VALUES("28", "2", "nickname", "htz8513"); INSERT INTO `wp_usermeta` VALUES("29", "2", "first_name", ""); INSERT INTO `wp_usermeta` VALUES("30", "2", "last_name", ""); INSERT INTO `wp_usermeta` VALUES("31", "2", "description", ""); INSERT INTO `wp_usermeta` VALUES("32", "2", "rich_editing", "true"); INSERT INTO `wp_usermeta` VALUES("33", "2", "comment_shortcuts", "false"); INSERT INTO `wp_usermeta` VALUES("34", "2", "admin_color", "fresh"); INSERT INTO `wp_usermeta` VALUES("35", "2", "use_ssl", "0"); INSERT INTO `wp_usermeta` VALUES("36", "2", "show_admin_bar_front", "true"); INSERT INTO `wp_usermeta` VALUES("37", "2", "wp_capabilities", "a:2:{s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;}"); INSERT INTO `wp_usermeta` VALUES("38", "2", "wp_user_level", "10"); INSERT INTO `wp_usermeta` VALUES("39", "2", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets,aioseop_menu_220"); INSERT INTO `wp_usermeta` VALUES("44", "2", "session_tokens", "a:2:{s:64:\"bb2a70d232b0517de2d4322f9624f9e5dba8d7a570259763c98243b4d923bed4\";a:4:{s:10:\"expiration\";i:1427207121;s:2:\"ip\";s:13:\"111.99.53.188\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0\";s:5:\"login\";i:1427034321;}s:64:\"45d4494ada9b6c338ce2b96bae662df6a980991311c934692269a1a6486f01ed\";a:4:{s:10:\"expiration\";i:1427312432;s:2:\"ip\";s:13:\"111.99.53.188\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0\";s:5:\"login\";i:1427139632;}}"); INSERT INTO `wp_usermeta` VALUES("62", "3", "session_tokens", "a:2:{s:64:\"856f4ac3dd242471d9f112d226cf15b69de965bf76830f2be6399994e12ab3ad\";a:4:{s:10:\"expiration\";i:1428343421;s:2:\"ip\";s:13:\"59.138.240.18\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0\";s:5:\"login\";i:1427133821;}s:64:\"1f8130a7579472421272d0a6b3b86caa72517860e638d327b89f1b760fecf69f\";a:4:{s:10:\"expiration\";i:1427564406;s:2:\"ip\";s:13:\"111.99.53.188\";s:2:\"ua\";s:72:\"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0\";s:5:\"login\";i:1427391606;}}"); INSERT INTO `wp_usermeta` VALUES("50", "3", "nickname", "azuma"); INSERT INTO `wp_usermeta` VALUES("51", "3", "first_name", ""); INSERT INTO `wp_usermeta` VALUES("52", "3", "last_name", ""); INSERT INTO `wp_usermeta` VALUES("53", "3", "description", ""); INSERT INTO `wp_usermeta` VALUES("54", "3", "rich_editing", "true"); INSERT INTO `wp_usermeta` VALUES("41", "2", "wp_dashboard_quick_press_last_post_id", "82"); INSERT INTO `wp_usermeta` VALUES("45", "2", "nav_menu_recently_edited", "6"); INSERT INTO `wp_usermeta` VALUES("46", "2", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}"); INSERT INTO `wp_usermeta` VALUES("47", "2", "metaboxhidden_nav-menus", "a:7:{i:0;s:8:\"add-post\";i:1;s:9:\"add-forum\";i:2;s:12:\"add-question\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:13:\"add-faq-topic\";i:6;s:12:\"add-faq-tags\";}"); INSERT INTO `wp_usermeta` VALUES("55", "3", "comment_shortcuts", "false"); INSERT INTO `wp_usermeta` VALUES("56", "3", "admin_color", "fresh"); INSERT INTO `wp_usermeta` VALUES("57", "3", "use_ssl", "0"); INSERT INTO `wp_usermeta` VALUES("58", "3", "show_admin_bar_front", "true"); INSERT INTO `wp_usermeta` VALUES("48", "2", "wp_user-settings", "libraryContent=browse&editor=tinymce&urlbutton=none"); INSERT INTO `wp_usermeta` VALUES("49", "2", "wp_user-settings-time", "1427042994"); INSERT INTO `wp_usermeta` VALUES("59", "3", "wp_capabilities", "a:2:{s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;}"); INSERT INTO `wp_usermeta` VALUES("60", "3", "wp_user_level", "10"); INSERT INTO `wp_usermeta` VALUES("61", "3", "dismissed_wp_pointers", "wp360_locks,wp390_widgets,aioseop_menu_220"); INSERT INTO `wp_usermeta` VALUES("63", "3", "wp_dashboard_quick_press_last_post_id", "83"); /* INSERT TABLE DATA: wp_users */ INSERT INTO `wp_users` VALUES("1", "support", "$P$B9e52Dh3BX8KD8mVC2KfNqBf13Vhu.1", "support", "support@tonosama.biz", "", "2014-12-13 19:20:29", "", "0", "support"); INSERT INTO `wp_users` VALUES("2", "htz8513", "$P$BgmsNWcz3dK4eESWzRNXbK/1Bi3KEW0", "htz8513", "fast.pass.kondou@gmail.com", "", "2014-12-14 15:26:58", "", "0", "htz8513"); INSERT INTO `wp_users` VALUES("3", "azuma", "$P$B298SCe0z2BGPRwdzwFyh2jZrrphMg/", "azuma", "htz8513@gmail.com", "", "2015-03-23 18:01:22", "", "0", "azuma"); SET FOREIGN_KEY_CHECKS = 1; /* Duplicator WordPress Timestamp: 2015-03-28 01:55:42*/ /* DUPLICATOR_MYSQLDUMP_EOF */