加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
zhangty.sql 464.62 KB
一键复制 编辑 原始数据 按行查看 历史
张天永 提交于 2015-01-23 19:27 . first commit
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
-- phpMyAdmin SQL Dump
-- version 4.2.7
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: 2015-01-23 19:19:24
-- 服务器版本: 5.5.33
-- PHP Version: 5.3.29
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `zhangty`
--
CREATE DATABASE IF NOT EXISTS `zhangty` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `zhangty`;
-- --------------------------------------------------------
--
-- 表的结构 `zty_commentmeta`
--
DROP TABLE IF EXISTS `zty_commentmeta`;
CREATE TABLE IF NOT EXISTS `zty_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `zty_comments`
--
DROP TABLE IF EXISTS `zty_comments`;
CREATE TABLE IF NOT EXISTS `zty_comments` (
`comment_ID` bigint(20) unsigned NOT NULL,
`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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `zty_comments`
--
INSERT INTO `zty_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'WordPress先生', '', 'https://wordpress.org/', '', '2015-01-21 11:09:41', '2015-01-21 11:09:41', '您好,这是一条评论。\n要删除评论,请先登录,然后再查看这篇文章的评论。登录后您可以看到编辑或者删除评论的选项。', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- 表的结构 `zty_links`
--
DROP TABLE IF EXISTS `zty_links`;
CREATE TABLE IF NOT EXISTS `zty_links` (
`link_id` bigint(20) unsigned NOT NULL,
`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 ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `zty_options`
--
DROP TABLE IF EXISTS `zty_options`;
CREATE TABLE IF NOT EXISTS `zty_options` (
`option_id` bigint(20) unsigned NOT NULL,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=186 ;
--
-- 转存表中的数据 `zty_options`
--
INSERT INTO `zty_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://www.zhangty.cn', 'yes'),
(2, 'home', 'http://www.zhangty.cn', 'yes'),
(3, 'blogname', '随风', 'yes'),
(4, 'blogdescription', '又一个WordPress站点', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'ala1991@163.com', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'Y年n月j日', 'yes'),
(24, 'time_format', 'ag:i', 'yes'),
(25, 'links_updated_date_format', 'Y年n月j日ag:i', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '', 'yes'),
(29, 'gzipcompression', '0', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:1:{i:0;s:45:"disable-google-fonts/disable-google-fonts.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'advanced_edit', '0', 'yes'),
(37, 'comment_max_links', '2', 'yes'),
(38, 'gmt_offset', '0', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', '', 'no'),
(41, 'template', 'flatbox', 'yes'),
(42, 'stylesheet', 'flatbox', 'yes'),
(43, 'comment_whitelist', '1', 'yes'),
(44, 'blacklist_keys', '', 'no'),
(45, 'comment_registration', '0', 'yes'),
(46, 'html_type', 'text/html', 'yes'),
(47, 'use_trackback', '0', 'yes'),
(48, 'default_role', 'subscriber', 'yes'),
(49, 'db_version', '30133', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '1', 'yes'),
(53, 'default_link_category', '2', 'yes'),
(54, 'show_on_front', 'posts', 'yes'),
(55, 'tag_base', '', 'yes'),
(56, 'show_avatars', '1', 'yes'),
(57, 'avatar_rating', 'G', 'yes'),
(58, 'upload_url_path', '', 'yes'),
(59, 'thumbnail_size_w', '150', 'yes'),
(60, 'thumbnail_size_h', '150', 'yes'),
(61, 'thumbnail_crop', '1', 'yes'),
(62, 'medium_size_w', '300', 'yes'),
(63, 'medium_size_h', '300', 'yes'),
(64, 'avatar_default', 'mystery', 'yes'),
(65, 'large_size_w', '1024', 'yes'),
(66, 'large_size_h', '1024', 'yes'),
(67, 'image_default_link_type', 'file', 'yes'),
(68, 'image_default_size', '', 'yes'),
(69, 'image_default_align', '', 'yes'),
(70, 'close_comments_for_old_posts', '0', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '0', 'yes'),
(75, 'comments_per_page', '50', 'yes'),
(76, 'default_comments_page', 'newest', 'yes'),
(77, 'comment_order', 'asc', 'yes'),
(78, 'sticky_posts', 'a:0:{}', 'yes'),
(79, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(80, 'widget_text', 'a:0:{}', 'yes'),
(81, 'widget_rss', 'a:0:{}', 'yes'),
(82, 'uninstall_plugins', 'a:0:{}', 'no'),
(83, 'timezone_string', 'Asia/Shanghai', 'yes'),
(84, 'page_for_posts', '0', 'yes'),
(85, 'page_on_front', '0', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'initial_db_version', '30133', 'yes'),
(89, 'zty_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:62:{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:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{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: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;}}}', 'yes'),
(90, 'WPLANG', 'zh_CN', 'yes'),
(91, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(92, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(93, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'sidebars_widgets', 'a:6:{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:11:"prefooter-1";N;s:11:"prefooter-2";N;s:11:"prefooter-3";N;s:13:"array_version";i:3;}', 'yes'),
(97, 'cron', 'a:4:{i:1422054618;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:1422055080;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:1422097996;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;}}}s:7:"version";i:2;}', 'yes'),
(105, '_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:63:"https://downloads.wordpress.org/release/zh_CN/wordpress-4.1.zip";s:6:"locale";s:5:"zh_CN";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:63:"https://downloads.wordpress.org/release/zh_CN/wordpress-4.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:3:"4.1";s:7:"version";s:3:"4.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:57:"https://downloads.wordpress.org/release/wordpress-4.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:57:"https://downloads.wordpress.org/release/wordpress-4.1.zip";s:10:"no_content";s:68:"https://downloads.wordpress.org/release/wordpress-4.1-no-content.zip";s:11:"new_bundled";s:69:"https://downloads.wordpress.org/release/wordpress-4.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:3:"4.1";s:7:"version";s:3:"4.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:1422011901;s:15:"version_checked";s:3:"4.1";s:12:"translations";a:0:{}}', 'yes'),
(106, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1422011902;s:7:"checked";a:9:{s:5:"earth";s:5:"1.0.1";s:7:"flatbox";s:5:"1.7.1";s:14:"mh-purity-lite";s:5:"1.0.9";s:8:"piedmont";s:5:"1.0.3";s:20:"reviewgine-affiliate";s:3:"1.2";s:8:"sanchari";s:3:"1.4";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'),
(107, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1422011903;s:7:"checked";a:3:{s:19:"akismet/akismet.php";s:5:"3.0.4";s:45:"disable-google-fonts/disable-google-fonts.php";s:3:"1.1";s:9:"hello.php";s:3:"1.6";}s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:3:{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.0.4";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.0.4.zip";}s:45:"disable-google-fonts/disable-google-fonts.php";O:8:"stdClass":6:{s:2:"id";s:5:"46033";s:4:"slug";s:20:"disable-google-fonts";s:6:"plugin";s:45:"disable-google-fonts/disable-google-fonts.php";s:11:"new_version";s:3:"1.1";s:3:"url";s:51:"https://wordpress.org/plugins/disable-google-fonts/";s:7:"package";s:67:"https://downloads.wordpress.org/plugin/disable-google-fonts.1.1.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";}}}', 'yes'),
(108, '_transient_random_seed', 'edd1b8bc22c9bab393f74858edbcbbf5', 'yes'),
(109, '_site_transient_timeout_browser_5745179b6e4dc44155ca95a5622b2ca5', '1422443597', 'yes'),
(110, '_site_transient_browser_5745179b6e4dc44155ca95a5622b2ca5', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"39.0.2171.95";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(114, 'can_compress_scripts', '1', 'yes'),
(133, 'recently_activated', 'a:0:{}', 'yes'),
(134, '_site_transient_timeout_popular_importers_zh_CN', '1422012511', 'yes'),
(135, '_site_transient_popular_importers_zh_CN', 'a:2:{s:9:"importers";a:8:{s:7:"blogger";a:4:{s:4:"name";s:7:"Blogger";s:11:"description";s:86:"Install the Blogger importer to import posts, comments, and users from a Blogger blog.";s:11:"plugin-slug";s:16:"blogger-importer";s:11:"importer-id";s:7:"blogger";}s:9:"wpcat2tag";a:4:{s:4:"name";s:29:"Categories and Tags Converter";s:11:"description";s:109:"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.";s:11:"plugin-slug";s:18:"wpcat2tag-importer";s:11:"importer-id";s:9:"wpcat2tag";}s:11:"livejournal";a:4:{s:4:"name";s:11:"LiveJournal";s:11:"description";s:82:"Install the LiveJournal importer to import posts from LiveJournal using their API.";s:11:"plugin-slug";s:20:"livejournal-importer";s:11:"importer-id";s:11:"livejournal";}s:11:"movabletype";a:4:{s:4:"name";s:24:"Movable Type and TypePad";s:11:"description";s:99:"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.";s:11:"plugin-slug";s:20:"movabletype-importer";s:11:"importer-id";s:2:"mt";}s:4:"opml";a:4:{s:4:"name";s:8:"Blogroll";s:11:"description";s:61:"Install the blogroll importer to import links in OPML format.";s:11:"plugin-slug";s:13:"opml-importer";s:11:"importer-id";s:4:"opml";}s:3:"rss";a:4:{s:4:"name";s:3:"RSS";s:11:"description";s:58:"Install the RSS importer to import posts from an RSS feed.";s:11:"plugin-slug";s:12:"rss-importer";s:11:"importer-id";s:3:"rss";}s:6:"tumblr";a:4:{s:4:"name";s:6:"Tumblr";s:11:"description";s:84:"Install the Tumblr importer to import posts & media from Tumblr using their API.";s:11:"plugin-slug";s:15:"tumblr-importer";s:11:"importer-id";s:6:"tumblr";}s:9:"wordpress";a:4:{s:4:"name";s:9:"WordPress";s:11:"description";s:130:"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.";s:11:"plugin-slug";s:18:"wordpress-importer";s:11:"importer-id";s:9:"wordpress";}}s:10:"translated";b:0;}', 'yes'),
(136, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1421850657', 'yes'),
(137, '_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:"4912";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3077";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"3020";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2528";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2344";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1894";}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:"1679";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1674";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1674";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1611";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1610";}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:"1320";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1274";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1171";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1169";}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:"1078";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"914";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"903";}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:"842";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"835";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"790";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"757";}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:"708";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:3:"697";}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:"681";}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:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"642";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"641";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:3:"621";}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:"604";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"599";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"593";}}', 'yes'),
(141, 'current_theme', 'FlatBox', 'yes'),
(142, 'theme_mods_xiaobei', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1421841062;s:4:"data";a:2:{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";}}}}', 'yes'),
(143, 'theme_switched', '', 'yes'),
(144, '_transient_is_multi_author', '0', 'yes'),
(145, '_transient_twentyfifteen_categories', '1', 'yes'),
(146, 'theme_mods_twentyfifteen', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1421841067;s:4:"data";a:2:{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";}}}}', 'yes'),
(147, 'theme_mods_twentyfourteen', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1421841110;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";N;s:9:"sidebar-3";N;}}}', 'yes'),
(150, '_transient_twentyfourteen_category_count', '1', 'yes'),
(151, 'theme_mods_twentythirteen', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1422011354;s:4:"data";a:3:{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";N;}}}', 'yes'),
(157, '_site_transient_timeout_browser_fa79dd8a6ebcb6d086d7cd9d88872e7e', '1422599632', 'yes'),
(158, '_site_transient_browser_fa79dd8a6ebcb6d086d7cd9d88872e7e', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:4:"35.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'),
(159, '_transient_timeout_feed_7d1d7866a17d17cf5f79e1f075b87a31', '1422038036', 'no');
INSERT INTO `zty_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(160, '_transient_feed_7d1d7866a17d17cf5f79e1f075b87a31', '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:30:"WordPress | China 简体中文";s: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://cn.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:41:"官方 WordPress China 简体中文站点";s: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:"Wed, 24 Dec 2014 08:15:43 +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:5:"zh-CN";s: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-alpha-31269";s: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:24:"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:42:"https://cn.wordpress.org/2014/12/23/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:51:"https://cn.wordpress.org/2014/12/23/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:"Tue, 23 Dec 2014 01:34: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: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:"https://cn.wordpress.org/?p=959";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:49:"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:7:"jimmyxu";s: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:25152:"<div style="width: 692px">\nWordPress 4.1简体中文版现已<a href="https://cn.wordpress.org/releases/">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Dinah”,以纪念爵士歌手<a href="https://en.wikipedia.org/wiki/Dinah_Washington">黛娜·华盛顿</a>。WordPress 4.1中的新功能帮助您聚焦于您的写作,新的默认主题也能让您有型地展示您的文章。</p>\n<hr />\n<h2 style="text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px">向您介绍Twenty Fifteen</h2>\n<p><img class="aligncenter size-large wp-image-3389" src="https://wordpress.org/news/files/2014/12/2015-laptop-1024x533.png" alt="2015-laptop" width="692" height="360" /></p>\n<h3 style="margin: 0 0 5px 0;font-size: 16px;font-weight: bold">Twenty Fifteen,我们最新的默认主题,是一套以明晰为中心的面向博客的主题。</h3>\n<p><img class="alignright wp-image-3426 size-medium" src="https://wordpress.org/news/files/2014/12/2015-phones-languages-small-300x250.png" alt="" width="300" height="250" />感谢<a href="\\&quot;%s\\&quot;">Google的Noto字体家族</a>,Twenty Fifteen有着无懈可击的语言支持。</p>\n<p>简单的排版在任何屏幕尺寸上都容易阅读。</p>\n<p>您的内容永远居于最中,无论是在手机、平板、膝上型电脑还是台式机上阅读都是如此。</p>\n<hr style="clear: both" />\n<h2 style="text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px">免打扰写作</h2>\n<p><img class="aligncenter size-large wp-image-3392" src="https://wordpress.org/news/files/2014/12/dfw-screen-1024x614.png" alt="dfw-screen" width="692" height="415" /></p>\n<h3 style="text-align: center;margin: 0 0 5px 0;font-size: 16px;font-weight: bold"><em>去写吧</em></h3>\n<p>有时,您需要集中精力遣词造句。试试打开<strong>免打扰写作模式</strong>,在您开始打字时,所有会让您分心的东西都会淡出,让您只注意您的写作。您的所有编辑工具都会在您需要用到它们时立刻出现。</p>\n<hr />\n<h2 style="text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px">细节之处</h2>\n<h5><strong><img class="alignleft wp-image-3405" src="https://wordpress.org/news/files/2014/12/icon-language2.png" alt="" width="80" height="80" /></strong>选择语言</h5>\n<p>现在,WordPress 4.1已经有了40多种语言版本,我们也一直在进行更多翻译。您可以在常规选项中切换到任意一种语言。</p>\n<h5><strong><img class="alignleft wp-image-3406" src="https://wordpress.org/news/files/2014/12/icon-logout1.png" alt="" width="80" height="80" /></strong>随处登出</h5>\n<p>如果您曾经担心过忘记在公用电脑上登出,您现在可以前往您的个人资料页面并登出您的所有会话。</p>\n<h5><strong><img class="alignleft wp-image-3407" src="https://wordpress.org/news/files/2014/12/icon-vine1.png" alt="" width="80" height="80" /></strong>Vine嵌入</h5>\n<p>嵌入来自Vine的视频也已被简化为了将URL粘贴进文章里。查看我们支持的嵌入的<a href="https://codex.wordpress.org/Embeds">完整列表</a>。</p>\n<h5><strong><img class="alignleft wp-image-3408" src="https://wordpress.org/news/files/2014/12/icon-recommended1.png" alt="" width="80" height="80" /></strong>插件推荐</h5>\n<p>插件安装器现在会为您推荐值得一试的插件。推荐是基于您和其他用户已经安装的插件做出的。</p>\n<hr />\n<h2 style="text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px">引擎盖下</h2>\n<h5>复杂查询</h5>\n<p>元数据、日期和信息查询现已支持高级条件逻辑,如嵌套语句和多种操作符——<code>A AND ( B OR C )</code>。</p>\n<h5>定制器API</h5>\n<p>定制器现在能够根据当前预览的页面有条件地显示面板和小节。</p>\n<h5>主题中的<code>&lt;title&gt;</code>标签</h5>\n<p><code>add_theme_support( ''title-tag'' )</code>让WordPress来处理复杂的页面标题。</p>\n<h5>开发者参考</h5>\n<p>通过对内联代码文档的改善,<a href="https://developer.wordpress.org/reference/">开发者参考</a>现在比以往任何时候都更完整。</p>\n<hr />\n<h2 style="text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px">合唱团</h2>\n<p>本次发布由<a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>领头,并得到了如下个人的帮助。在您喜欢的音乐服务中听听黛娜·华盛顿,并看看下面这些个人资料吧:</p>\n<p><a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>、<a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>、<a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>、<a href="https://profiles.wordpress.org/akumria">akumria</a>、<a href="https://profiles.wordpress.org/xknown">Alex Concha</a>、<a href="https://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>、<a href="https://profiles.wordpress.org/tellyworth">Alex Shiels</a>、<a href="https://profiles.wordpress.org/collinsinternet">Allan Collins</a>、<a href="https://profiles.wordpress.org/momo360modena">Amaury Balmer</a>、<a href="https://profiles.wordpress.org/amruta123b">Amruta Bhosale</a>、<a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>、<a href="https://profiles.wordpress.org/andg">Andrea Gandino</a>、<a href="https://profiles.wordpress.org/sumobi">Andrew Munro (sumobi)</a>、<a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>、<a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>、<a href="https://profiles.wordpress.org/andrewryno">Andrew Ryno</a>、<a href="https://profiles.wordpress.org/rarst">Andrey &#8220;Rarst&#8221; Savchenko</a>、<a href="https://profiles.wordpress.org/ankitgadertcampcom">Ankit Gade</a>、<a href="https://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>、<a href="https://profiles.wordpress.org/antpb">antpb</a>、<a href="https://profiles.wordpress.org/arippberger">arippberger</a>、<a href="https://profiles.wordpress.org/filosofo">Austin Matzko</a>、<a href="https://profiles.wordpress.org/bainternet">Bainternet</a>、<a href="https://profiles.wordpress.org/barrykooij">Barry Kooij</a>、<a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>、<a href="https://profiles.wordpress.org/benjmay">Ben May</a>、<a href="https://profiles.wordpress.org/neoxx">Bernhard Riedl</a>、<a href="https://profiles.wordpress.org/birgire">Birgir Erlendsson (birgire)</a>、<a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>、<a href="https://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>、<a href="https://profiles.wordpress.org/bradyvercher">Brady Vercher</a>、<a href="https://profiles.wordpress.org/bramd">Bram Duvigneau</a>、<a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>、<a href="https://profiles.wordpress.org/briandichiara">Brian DiChiara</a>、<a href="https://profiles.wordpress.org/rzen">Brian Richards</a>、<a href="https://profiles.wordpress.org/bswatson">Brian Watson</a>、<a href="https://profiles.wordpress.org/camdensegal">Camden Segal</a>、<a href="https://profiles.wordpress.org/captaintheme">Captain Theme</a>、<a href="https://profiles.wordpress.org/hiwhatsup">Carlos Zuniga</a>、<a href="https://profiles.wordpress.org/caspie">Caspie</a>、<a href="https://profiles.wordpress.org/ccprice">ccprice</a>、<a href="https://profiles.wordpress.org/mackensen">Charles Fulton</a>、<a href="https://profiles.wordpress.org/chrico">ChriCo</a>、<a href="https://profiles.wordpress.org/aprea">Chris Aprea</a>、<a href="https://profiles.wordpress.org/chrisbliss18">Chris Jean</a>、<a href="https://profiles.wordpress.org/cmmarslender">Chris Marslender</a>、<a href="https://profiles.wordpress.org/jazzs3quence">Chris Reynolds</a>、<a href="https://profiles.wordpress.org/chriscct7">chriscct7</a>、<a href="https://profiles.wordpress.org/chrisl27">chrisl27</a>、<a href="https://profiles.wordpress.org/cfoellmann">Christian Foellmann</a>、<a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>、<a href="https://profiles.wordpress.org/cyclometh">Corey Snow</a>、<a href="https://profiles.wordpress.org/corphi">Corphi</a>、<a href="https://profiles.wordpress.org/curtjen">curtjen</a>、<a href="https://profiles.wordpress.org/colorful-tones">Damon Cook</a>、<a href="https://profiles.wordpress.org/dancameron">Dan Cameron</a>、<a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>、<a href="https://profiles.wordpress.org/convissor">Daniel Convissor</a>、<a href="https://profiles.wordpress.org/nerrad">Darren Ethier (nerrad)</a>、<a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>、<a href="https://profiles.wordpress.org/dmchale">Dave McHale</a>、<a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>、<a href="https://profiles.wordpress.org/dlh">David Herrera</a>、<a href="https://profiles.wordpress.org/davidjlaietta">David Laietta</a>、<a href="https://profiles.wordpress.org/technical_mastermind">David Wood</a>、<a href="https://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>、<a href="https://profiles.wordpress.org/dcavins">dcavins</a>、<a href="https://profiles.wordpress.org/realloc">Dennis Ploetner</a>、<a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>、<a href="https://profiles.wordpress.org/wedi">Dirk Weise</a>、<a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>、<a href="https://profiles.wordpress.org/dominikschwind-1">Dominik Schwind</a>、<a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>、<a href="https://profiles.wordpress.org/dustyf">Dustin Filippini</a>、<a href="https://profiles.wordpress.org/dustinhartzler">Dustin Hartzler</a>、<a href="https://profiles.wordpress.org/eliorivero">Elio Rivero</a>、<a href="https://profiles.wordpress.org/ebinnion">Eric Binnion</a>、<a href="https://profiles.wordpress.org/ew_holmes">Eric Holmes</a>、<a href="https://profiles.wordpress.org/ericlewis">Eric Lewis</a>、<a href="https://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>、<a href="https://profiles.wordpress.org/florianziegler">florianziegler</a>、<a href="https://profiles.wordpress.org/hereswhatidid">Gabe Shackle</a>、<a href="https://profiles.wordpress.org/garyc40">Gary Cao</a>、<a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>、<a href="https://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>、<a href="https://profiles.wordpress.org/babbardel">George Olaru</a>、<a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>、<a href="https://profiles.wordpress.org/gregrickaby">Greg Rickaby</a>、<a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>、<a href="https://profiles.wordpress.org/tivnet">Gregory Karpinsky (@tivnet)</a>、<a href="https://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>、<a href="https://profiles.wordpress.org/hardy101">hardy101</a>、<a href="https://profiles.wordpress.org/hauvong">hauvong</a>、<a href="https://profiles.wordpress.org/helen">Helen Hou-Sandí</a>、<a href="https://profiles.wordpress.org/heshiming">heshiming</a>、<a href="https://profiles.wordpress.org/honeysilvas">honeysilvas</a>、<a href="https://profiles.wordpress.org/hugodelgado">hugodelgado</a>、<a href="https://profiles.wordpress.org/iandstewart">Ian Stewart</a>、<a href="https://profiles.wordpress.org/ianmjones">ianmjones</a>、<a href="https://profiles.wordpress.org/igmoweb">Ignacio Cruz Moreno</a>、<a href="https://profiles.wordpress.org/imath">imath</a>、<a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>、<a href="https://profiles.wordpress.org/ivankristianto">Ivan Kristianto</a>、<a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>、<a href="https://profiles.wordpress.org/jaimieolmstead">jaimieolmstead</a>、<a href="https://profiles.wordpress.org/jakubtyrcha">jakub.tyrcha</a>、<a href="https://profiles.wordpress.org/janhenckens">janhenckens</a>、<a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>、<a href="https://profiles.wordpress.org/japh">Japh</a>、<a href="https://profiles.wordpress.org/jwenerd">Jared Wenerd</a>、<a href="https://profiles.wordpress.org/jarednova">jarednova</a>、<a href="https://profiles.wordpress.org/jeanyoungkim">jeanyoungkim</a>、<a href="https://profiles.wordpress.org/jfarthing84">Jeff Farthing</a>、<a href="https://profiles.wordpress.org/jeffstieler">Jeff Stieler</a>、<a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>、<a href="https://profiles.wordpress.org/jeherve">Jeremy Herve</a>、<a href="https://profiles.wordpress.org/jesin">Jesin A</a>、<a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>、<a href="https://profiles.wordpress.org/engelen">Jesper van Engelen</a>、<a href="https://profiles.wordpress.org/jessepollak">Jesse Pollak</a>、<a href="https://profiles.wordpress.org/jipmoors">jipmoors</a>、<a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>、<a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>、<a href="https://profiles.wordpress.org/johneckman">John Eckman</a>、<a href="https://profiles.wordpress.org/johnrom">johnrom</a>、<a href="https://profiles.wordpress.org/johnstonphilip">johnstonphilip</a>、<a href="https://profiles.wordpress.org/jb510">Jon Brown</a>、<a href="https://profiles.wordpress.org/duck_">Jon Cave</a>、<a href="https://profiles.wordpress.org/jbrinley">Jonathan Brinley</a>、<a href="https://profiles.wordpress.org/desrosj">Jonathan Desrosiers</a>、<a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>、<a href="https://profiles.wordpress.org/softmodeling">Jordi Cabot</a>、<a href="https://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>、<a href="https://profiles.wordpress.org/tai">JOTAKI Taisuke</a>、<a href="https://profiles.wordpress.org/jrf">jrf</a>、<a href="https://profiles.wordpress.org/julien731">julien731</a>、<a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>、<a href="https://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>、<a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>、<a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>、<a href="https://profiles.wordpress.org/ixkaito">Kaito</a>、<a href="https://profiles.wordpress.org/kamelkev">kamelkev</a>、<a href="https://profiles.wordpress.org/karpstrucking">karpstrucking</a>、<a href="https://profiles.wordpress.org/keesiemeijer">keesiemeijer</a>、<a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>、<a href="https://profiles.wordpress.org/kevinlangleyjr">Kevin Langley</a>、<a href="https://profiles.wordpress.org/kdoran">Kiko Doran</a>、<a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>、<a href="https://profiles.wordpress.org/kwight">Kirk Wight</a>、<a href="https://profiles.wordpress.org/kitchin">kitchin</a>、<a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</a>、<a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>、<a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>、<a href="https://profiles.wordpress.org/kosvrouvas">Kostas Vrouvas</a>、<a href="https://profiles.wordpress.org/kraftner">kraftner</a>、<a href="https://profiles.wordpress.org/kristastevens">kristastevens</a>、<a href="https://profiles.wordpress.org/kurtpayne">Kurt Payne</a>、<a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>、<a href="https://profiles.wordpress.org/offereins">Laurens Offereins</a>、<a href="https://profiles.wordpress.org/linuxologos">linuxologos</a>、<a href="https://profiles.wordpress.org/ideag">Liuiza Arunas</a>、<a href="https://profiles.wordpress.org/loushou">loushou</a>、<a href="https://profiles.wordpress.org/latz">Lutz Schroer</a>、<a href="https://profiles.wordpress.org/manoz69">Manoz69</a>、<a href="https://profiles.wordpress.org/mantismamita">mantismamita</a>、<a href="https://profiles.wordpress.org/marcosf">marco</a>、<a href="https://profiles.wordpress.org/nofearinc">Mario Peshev</a>、<a href="https://profiles.wordpress.org/clorith">Marius (Clorith)</a>、<a href="https://profiles.wordpress.org/landakram">Mark Hudnall</a>、<a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>、<a href="https://profiles.wordpress.org/senff">Mark Senff</a>、<a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>、<a href="https://profiles.wordpress.org/marsjaninzmarsa">marsjaninzmarsa</a>、<a href="https://profiles.wordpress.org/matveb">Matias Ventura</a>、<a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>、<a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>、<a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>、<a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>、<a href="https://profiles.wordpress.org/mattkeys">mattkeys</a>、<a href="https://profiles.wordpress.org/mlteal">Maura Teal</a>、<a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>、<a href="https://profiles.wordpress.org/merty">Mert Yazicioglu</a>、<a href="https://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>、<a href="https://profiles.wordpress.org/michael-arestad">Michael Arestad</a>、<a href="https://profiles.wordpress.org/tw2113">Michael Beckwith</a>、<a href="https://profiles.wordpress.org/cainm">Michael Cain</a>、<a href="https://profiles.wordpress.org/smashcut">Michael Pick</a>、<a href="https://profiles.wordpress.org/michalzuber">michalzuber</a>、<a href="https://profiles.wordpress.org/chellycat">Michelle Langston</a>、<a href="https://profiles.wordpress.org/mcsf">Miguel Fonseca</a>、<a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>、<a href="https://profiles.wordpress.org/mikejolley">Mike Jolley</a>、<a href="https://profiles.wordpress.org/mnelson4">Mike Nelson</a>、<a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>、<a href="https://profiles.wordpress.org/mikeyarce">Mikey Arce</a>、<a href="https://profiles.wordpress.org/studionashvegas">Mitch Canter (studionashvegas)</a>、<a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>、<a href="https://profiles.wordpress.org/mor10">Morten Rand-Hendriksen</a>、<a href="https://profiles.wordpress.org/mvd7793">mvd7793</a>、<a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>、<a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>、<a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>、<a href="https://profiles.wordpress.org/nikv">Nikhil Vimal (NikV)</a>、<a href="https://profiles.wordpress.org/nikolovtmw">Nikola Nikolov</a>、<a href="https://profiles.wordpress.org/nobleclem">nobleclem</a>、<a href="https://profiles.wordpress.org/noplanman">noplanman</a>、<a href="https://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>、<a href="https://profiles.wordpress.org/originalexe">OriginalEXE</a>、<a href="https://profiles.wordpress.org/p_enrique">p_enrique</a>、<a href="https://profiles.wordpress.org/pushplaybang">Paul</a>、<a href="https://profiles.wordpress.org/pauldewouters">Paul de Wouters</a>、<a href="https://profiles.wordpress.org/paulschreiber">Paul Schreiber</a>、<a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>、<a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>、<a href="https://profiles.wordpress.org/peterchester">Peter Chester</a>、<a href="https://profiles.wordpress.org/donutz">Peter J. Herrel</a>、<a href="https://profiles.wordpress.org/westi">Peter Westwood</a>、<a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>、<a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>、<a href="https://profiles.wordpress.org/phpmypython">phpmypython</a>、<a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>、<a href="https://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>、<a href="https://profiles.wordpress.org/psycleuk">psycleuk</a>、<a href="https://profiles.wordpress.org/ptahdunbar">Ptah Dunbar</a>、<a href="https://profiles.wordpress.org/quietnic">quietnic</a>、<a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>、<a href="https://profiles.wordpress.org/ramiy">Rami Yushuvaev</a>、<a href="https://profiles.wordpress.org/ramiabraham">ramiabraham</a>、<a href="https://profiles.wordpress.org/greuben">Reuben Gunday</a>、<a href="https://profiles.wordpress.org/rianrietveld">Rian Rietveld</a>、<a href="https://profiles.wordpress.org/richardmtl">Richard Archambault</a>、<a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>、<a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>、<a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>、<a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>、<a href="https://profiles.wordpress.org/ryankienstra">Ryan Kienstra</a>、<a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>、<a href="https://profiles.wordpress.org/sakinshrestha">Sakin Shrestha</a>、<a href="https://profiles.wordpress.org/samhotchkiss">Sam Hotchkiss</a>、<a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>、<a href="https://profiles.wordpress.org/sc0ttkclark">Scott Kingsley Clark</a>、<a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>、<a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>、<a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>、<a href="https://profiles.wordpress.org/shooper">Shawn Hooper</a>、<a href="https://profiles.wordpress.org/simonp303">Simon Pollard</a>、<a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>、<a href="https://profiles.wordpress.org/skaeser">skaeser</a>、<a href="https://profiles.wordpress.org/slobodanmanic">Slobodan Manic</a>、<a href="https://profiles.wordpress.org/socki03">socki03</a>、<a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>、<a href="https://profiles.wordpress.org/stephdau">Stephane Daury</a>、<a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>、<a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>、<a href="https://profiles.wordpress.org/stevegrunwell">Steve Grunwell</a>、<a href="https://profiles.wordpress.org/5um17">Sumit Singh</a>、<a href="https://profiles.wordpress.org/tacoverdo">TacoVerdo</a>、<a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>、<a href="https://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>、<a href="https://profiles.wordpress.org/karmatosed">Tammie</a>、<a href="https://profiles.wordpress.org/tareq1988">Tareq Hasan</a>、<a href="https://profiles.wordpress.org/tlovett1">Taylor Lovett</a>、<a href="https://profiles.wordpress.org/ipm-frommen">Thorsten Frommen</a>、<a href="https://profiles.wordpress.org/tillkruess">Till Kruss</a>、<a href="https://profiles.wordpress.org/tschutter">Tobias Schutter</a>、<a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>、<a href="https://profiles.wordpress.org/tmtrademark">Toby McKes</a>、<a href="https://profiles.wordpress.org/tjnowell">Tom J Nowell</a>、<a href="https://profiles.wordpress.org/tomasm">Tomas Mackevicius</a>、<a href="https://profiles.wordpress.org/tomharrigan">TomHarrigan</a>、<a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>、<a href="https://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>、<a href="https://profiles.wordpress.org/liljimmi">Tracy Levesque</a>、<a href="https://profiles.wordpress.org/transom">transom</a>、<a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>、<a href="https://profiles.wordpress.org/tywayne">Ty Carlson</a>、<a href="https://profiles.wordpress.org/desaiuditd">Udit Desai</a>、<a href="https://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>、<a href="https://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>、<a href="https://profiles.wordpress.org/vlajos">vlajos</a>、<a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>、<a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>、<a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>、<a href="https://profiles.wordpress.org/nobinobi">Yuta Sekine</a>、<a href="https://profiles.wordpress.org/zrothauser">Zack Rothauser</a>和<a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>。<br />\n本次发布得到了283人的贡献,再次创下新高。</p>\n<p>如果您想帮忙,请查阅<a href="https://make.wordpress.org/">Make WordPress</a>和我们的<a href="https://make.wordpress.org/core/">核心开发博客</a>。</p>\n<p>感谢您选择WordPress。节日快乐,我们4.2见!\n</p></div>\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://cn.wordpress.org/2014/12/23/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:"8";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: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:27:"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:52:"https://cn.wordpress.org/2014/11/21/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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:61:"https://cn.wordpress.org/2014/11/21/wordpress-4-0-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:"Fri, 21 Nov 2014 03:51: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: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:"https://cn.wordpress.org/?p=942";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:45:"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:7:"jimmyxu";s: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:3034:"<p>WordPress 4.0.1现已发布,这是一次对所有较早版本的<strong>重要安全更新</strong>,我们强烈建议您立即升级您的站点。</p>\n<p>支持后台自动更新的站点将在未来几个小时内被自动升级到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来使用我们最新最强大的版本。)</p>\n<p>WordPress 3.9.2与更早版本均受一严重的跨站脚本漏洞影响,可能使匿名用户危害站点安全。此漏洞由<a href="http://klikki.fi/">Jouko Pynnonen</a>报告。这项问题并不影响4.0版,但4.0.1版也修正了如下8个安全问题:</p>\n<ul>\n<li>三个可被网站文章作者利用的跨站脚本问题,由<a href="http://joncave.co.uk/">Jon Cave</a>、<a href="http://www.miqrogroove.com/">Robert Chapin</a>与WordPress安全团队的<a href="https://johnblackbourn.com/">John Blackbourn</a>发现。</li>\n<li>一个可能被用来诱使用户修改密码的跨站请求伪造。</li>\n<li>一项在检查密码时可能引发拒绝服务的问题,由<a href="http://www.behindthefirewalls.com/">Javier Nieto Arevalo</a>与<a href="http://www.devconsole.info/">Andres Rojas Guerrero</a>发现。</li>\n<li>在WordPress发起HTTP请求时对服务器侧请求伪造攻击的额外防护,由Ben Bidner(vortfu)报告。</li>\n<li>一项极不可能发生的散列碰撞,可能导致2008年之后从未登录过的账户被盗,由<a href="http://david.dw-perspective.org.uk/">David Anderson</a>报告。</li>\n<li>WordPress现在会在用户想起密码、登录并修改电子邮件地址后使早前发出的密码重设邮件中的链接失效,由<a href="https://twitter.com/MomenBassel">Momen Bassel</a>、<a href="http://c0dehouse.blogspot.in/">Tanoy Bose</a>与<a href="https://managewp.com/">ManageWP的Bojan Slavković</a>独立报告。</li>\n</ul>\n<p>4.0.1版也修正了4.0中的23个bug,我们也做出了两项强化修改,包括在从上传的照片中提取EXIF数据时进行更好的验证,由<a href="http://www.securesolutions.no/">Chris Andrè Dale</a>报告。</p>\n<p>我们感谢这些问题被<a href="https://codex.wordpress.org/FAQ_Security">负责任地透漏</a>给我们的安全小组。要获取更多信息,请参见<a href="https://codex.wordpress.org/Version_4.0.1">发布说明</a>或查阅<a href="https://core.trac.wordpress.org/log/branches/4.0?rev=30475&amp;stop_rev=29710">修改列表</a>。</p>\n<p><a href="https://cn.wordpress.org/releases/">下载WordPress 4.0.1简体中文版</a>或在仪表盘→更新中点击“现在更新”。</p>\n<p><em>已经在测试WordPress 4.1了?包含这些安全更新的beta 2现已发布(<a href="https://wordpress.org/wordpress-4.1-beta2.zip">zip</a>)。更多有关4.1的信息,请参见<a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">beta 1发布说明</a>。</em></p>\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://cn.wordpress.org/2014/11/21/wordpress-4-0-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:2:"19";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: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:24:"WordPress 4.0“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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"https://cn.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://cn.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 00:38: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: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:30:"http://cn.wordpress.org/?p=925";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:49:"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: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:7:"jimmyxu";s: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:23234:"<div style="width: 692px">\nWordPress 4.0简体中文版现已<a href="https://cn.wordpress.org/wordpress-4.0-zh_CN.zip">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Benny”,以纪念<a href="https://zh.wikipedia.org/wiki/%E7%8F%AD%E5%B0%BC%C2%B7%E5%8F%A4%E5%BE%B7%E6%9B%BC">本尼·古德曼</a>,爵士单簧管家和乐队指挥。这次发布为您带来了更顺滑的写作和管理体验,我们希望您喜欢。<br />\n<div id="v-bUdzKMro-1" class="video-player"><embed id="v-bUdzKMro-1-video" src="http://s0.videopress.com/player.swf?v=1.03&amp;guid=bUdzKMro&amp;isDynamicSeeking=true" type="application/x-shockwave-flash" width="400" height="224" title="Introducing WordPress 4.0 &quot;Benny&quot;" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div></p>\n<hr />\n<h2>优雅地管理媒体</h2>\n<p><img class="alignnone size-full wp-image-3316" src="//i1.wp.com/i0.wp.com/wordpress.org/news/files/2014/09/media.jpg?resize=692%2C406" alt="媒体库" width="632" height="371" /><br />\n在美丽、无尽的网格中浏览您上传的文件。无论您想查看或编辑多少文件,新的详情预览都能使这一过程无比迅捷。</p>\n<hr />\n<h2>管理嵌入现在前所未有地简单</h2>\n<div style="width: 640px; " class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<video class="wp-video-shortcode" id="video-925-1" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://s.w.org/images/core/4.0/embed.mp4?_=1" /><a href="https://s.w.org/images/core/4.0/embed.mp4">https://s.w.org/images/core/4.0/embed.mp4</a></video></div>\n<p>在空行中粘贴一行YouTube URL,它就会魔术般地变成嵌入视频。现在用一条tweet试试。是的——嵌入现在变成了视觉体验。编辑器现在能够显示嵌入内容的真实预览,为您节约时间,也给您自信。</p>\n<p>我们也增加了默认支持的服务数量——您现在可以嵌入来自CollegeHumor的视频、来自YouTube的播放列表和来自TED的演讲。<a href="https://codex.wordpress.org/Embeds">查阅所有WordPress支持的嵌入</a>。</p>\n<hr />\n<h2>专注于您的内容</h2>\n<div style="width: 640px; " class="wp-video"><video class="wp-video-shortcode" id="video-925-2" width="640" height="360" preload="metadata" controls="controls"><source type="video/mp4" src="https://s.w.org/images/core/4.0/focus.mp4?_=2" /><a href="https://s.w.org/images/core/4.0/focus.mp4">https://s.w.org/images/core/4.0/focus.mp4</a></video></div>\n<p>写作和编辑现在变得更顺滑、更身临其境。随着您的写作,编辑器将会自动扩展来适应您的内容,并保证格式工具总是可用。</p>\n<hr />\n<h2>寻找正确的插件</h2>\n<p><img class="aligncenter size-large wp-image-3309" src="//i1.wp.com/i0.wp.com/wordpress.org/news/files/2014/09/add-plugin1.png?resize=692%2C405" alt="添加插件" width="632" height="370" /><br />\nWordPress的插件目录中现在有多于30,000个免费且开源的插件。WordPress 4.0通过加入新的条件、改善的搜索器和更可视化的浏览体验使找到符合您需要的插件变得更简单。</p>\n<hr />\n<h2>乐团</h2>\n<p>本次发布由<a href="http://helenhousandi.com/">Helen Hou-Sandí</a>领头,并得到了以下优秀个人的协助。本次发布有275名贡献者参与,创下新高。在您喜欢的音乐服务中找找本尼·古德曼,并看看下面这些个人资料吧:</p>\n<p><a href="https://profiles.wordpress.org/sharonaustin">_Redd</a>、<a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>、<a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>、<a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>、<a href="https://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>、<a href="https://profiles.wordpress.org/tellyworth">Alex Shiels</a>、<a href="https://profiles.wordpress.org/alexanderrohmann">Alexander Rohmann</a>、<a href="https://profiles.wordpress.org/aliso">Alison Barrett</a>、<a href="https://profiles.wordpress.org/collinsinternet">Allan Collins</a>、<a href="https://profiles.wordpress.org/amit">Amit Gupta</a>、<a href="https://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>、<a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>、<a href="https://profiles.wordpress.org/andrezrv">Andres Villarreal</a>、<a href="https://profiles.wordpress.org/zamfeer">Andrew Mowe</a>、<a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>、<a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>、<a href="https://profiles.wordpress.org/andy">Andy Skelton</a>、<a href="https://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>、<a href="https://profiles.wordpress.org/atimmer">Anton Timmermans</a>、<a href="https://profiles.wordpress.org/arnee">arnee</a>、<a href="https://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>、<a href="https://profiles.wordpress.org/filosofo">Austin Matzko</a>、<a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>、<a href="https://profiles.wordpress.org/kau-boy">Bernhard Kau</a>、<a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>、<a href="https://profiles.wordpress.org/bradyvercher">Brady Vercher</a>、<a href="https://profiles.wordpress.org/bramd">bramd</a>、<a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>、<a href="https://profiles.wordpress.org/krogsgard">Brian Krogsgard</a>、<a href="https://profiles.wordpress.org/brianlayman">Brian Layman</a>、<a href="https://profiles.wordpress.org/rzen">Brian Richards</a>、<a href="https://profiles.wordpress.org/camdensegal">Camden Segal</a>、<a href="https://profiles.wordpress.org/lukecarbis">Carbis</a>、<a href="https://profiles.wordpress.org/sixhours">Caroline Moore</a>、<a href="https://profiles.wordpress.org/mackensen">Charles Fulton</a>、<a href="https://profiles.wordpress.org/chouby">Chouby</a>、<a href="https://profiles.wordpress.org/chrico">ChriCo</a>、<a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>、<a href="https://profiles.wordpress.org/chrisl27">chrisl27</a>、<a href="https://profiles.wordpress.org/caxelsson">Christian Axelsson</a>、<a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>、<a href="https://profiles.wordpress.org/boda1982">Christopher Spires</a>、<a href="https://profiles.wordpress.org/clifgriffin">Clifton Griffin</a>、<a href="https://profiles.wordpress.org/jupiterwise">Corey McKrill</a>、<a href="https://profiles.wordpress.org/corphi">Corphi</a>、<a href="https://profiles.wordpress.org/extendwings">Daisuke Takahashi</a>、<a href="https://profiles.wordpress.org/ghost1227">Dan Griffiths</a>、<a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>、<a href="https://profiles.wordpress.org/danielhuesken">Daniel Husken</a>、<a href="https://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>、<a href="https://profiles.wordpress.org/dannydehaan">Danny de Haan</a>、<a href="https://profiles.wordpress.org/dkotter">Darin Kotter</a>、<a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>、<a href="https://profiles.wordpress.org/dllh">Daryl L. L. Houston (dllh)</a>、<a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>、<a href="https://profiles.wordpress.org/dlh">David Herrera</a>、<a href="https://profiles.wordpress.org/dnaber-de">David Naber</a>、<a href="https://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>、<a href="https://profiles.wordpress.org/debaat">DeBAAT</a>、<a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>、<a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>、<a href="https://profiles.wordpress.org/donncha">Donncha O Caoimh</a>、<a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>、<a href="https://profiles.wordpress.org/dustyn">Dustyn Doyle</a>、<a href="https://profiles.wordpress.org/eddiemoya">Eddie Moya</a>、<a href="https://profiles.wordpress.org/oso96_2000">Eduardo Reveles</a>、<a href="https://profiles.wordpress.org/edwin-at-studiojoyocom">Edwin Siebel</a>、<a href="https://profiles.wordpress.org/ehg">ehg</a>、<a href="https://profiles.wordpress.org/tmeister">Enrique Chavez</a>、<a href="https://profiles.wordpress.org/erayalakese">erayalakese</a>、<a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>、<a href="https://profiles.wordpress.org/ebinnion">Eric Binnion</a>、<a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>、<a href="https://profiles.wordpress.org/ejdanderson">Evan Anderson</a>、<a href="https://profiles.wordpress.org/eherman24">Evan Herman</a>、<a href="https://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>、<a href="https://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>、<a href="https://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>、<a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>、<a href="https://profiles.wordpress.org/garhdez">garhdez</a>、<a href="https://profiles.wordpress.org/garyc40">Gary Cao</a>、<a href="https://profiles.wordpress.org/garyj">Gary Jones</a>、<a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>、<a href="https://profiles.wordpress.org/garza">garza</a>、<a href="https://profiles.wordpress.org/gauravmittal1995">gauravmittal1995</a>、<a href="https://profiles.wordpress.org/gavra">Gavrisimo</a>、<a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>、<a href="https://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>、<a href="https://profiles.wordpress.org/vancoder">Grant Mangham</a>、<a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>、<a href="https://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>、<a href="https://profiles.wordpress.org/harrym">harrym</a>、<a href="https://profiles.wordpress.org/hebbet">hebbet</a>、<a href="https://profiles.wordpress.org/hinnerk">Hinnerk Altenburg</a>、<a href="https://profiles.wordpress.org/hlashbrooke">Hugh Lashbrooke</a>、<a href="https://profiles.wordpress.org/iljoja">iljoja</a>、<a href="https://profiles.wordpress.org/imath">imath</a>、<a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>、<a href="https://profiles.wordpress.org/issuu">issuu</a>、<a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>、<a href="https://profiles.wordpress.org/jacklenox">Jack Lenox</a>、<a href="https://profiles.wordpress.org/jackreichert">Jack Reichert</a>、<a href="https://profiles.wordpress.org/jacobdubail">Jacob Dubail</a>、<a href="https://profiles.wordpress.org/janhenkg">JanHenkG</a>、<a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>、<a href="https://profiles.wordpress.org/jwenerd">Jared Wenerd</a>、<a href="https://profiles.wordpress.org/jaza613">Jaza613</a>、<a href="https://profiles.wordpress.org/jeffstieler">Jeff Stieler</a>、<a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>、<a href="https://profiles.wordpress.org/jpry">Jeremy Pry</a>、<a href="https://profiles.wordpress.org/slimndap">Jeroen Schmit</a>、<a href="https://profiles.wordpress.org/jerrysarcastic">Jerry Bates (jerrysarcastic)</a>、<a href="https://profiles.wordpress.org/jesin">Jesin A</a>、<a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>、<a href="https://profiles.wordpress.org/engelen">Jesper van Engelen</a>、<a href="https://profiles.wordpress.org/jesper800">Jesper van Engelen</a>、<a href="https://profiles.wordpress.org/jessepollak">Jesse Pollak</a>、<a href="https://profiles.wordpress.org/jgadbois">jgadbois</a>、<a href="https://profiles.wordpress.org/jartes">Joan Artes</a>、<a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>、<a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>、<a href="https://profiles.wordpress.org/jkudish">Joey Kudish</a>、<a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>、<a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>、<a href="https://profiles.wordpress.org/johnzanussi">John Zanussi</a>、<a href="https://profiles.wordpress.org/duck_">Jon Cave</a>、<a href="https://profiles.wordpress.org/jonnyauk">jonnyauk</a>、<a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>、<a href="https://profiles.wordpress.org/softmodeling">Jordi Cabot</a>、<a href="https://profiles.wordpress.org/jjeaton">Josh Eaton</a>、<a href="https://profiles.wordpress.org/tai">JOTAKI Taisuke</a>、<a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>、<a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>、<a href="https://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>、<a href="https://profiles.wordpress.org/greenshady">Justin Tadlock</a>、<a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>、<a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>、<a href="https://profiles.wordpress.org/ixkaito">Kaito</a>、<a href="https://profiles.wordpress.org/kapeels">kapeels</a>、<a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>、<a href="https://profiles.wordpress.org/kevinlangleyjr">Kevin Langley</a>、<a href="https://profiles.wordpress.org/kworthington">Kevin Worthington</a>、<a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>、<a href="https://profiles.wordpress.org/kwight">Kirk Wight</a>、<a href="https://profiles.wordpress.org/kitchin">kitchin</a>、<a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</a>、<a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>、<a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>、<a href="https://profiles.wordpress.org/kurtpayne">Kurt Payne</a>、<a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>、<a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>、<a href="https://profiles.wordpress.org/lessbloat">lessbloat</a>、<a href="https://profiles.wordpress.org/layotte">Lew Ayotte</a>、<a href="https://profiles.wordpress.org/lritter">lritter</a>、<a href="https://profiles.wordpress.org/lgedeon">Luke Gedeon</a>、<a href="https://profiles.wordpress.org/m_i_n">m_i_n</a>、<a href="https://profiles.wordpress.org/funkatronic">Manny Fleurmond</a>、<a href="https://profiles.wordpress.org/targz-1">Manuel Schmalstieg</a>、<a href="https://profiles.wordpress.org/clorith">Marius Jensen (Clorith)</a>、<a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>、<a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>、<a href="https://profiles.wordpress.org/mjbanks">Matt Banks</a>、<a href="https://profiles.wordpress.org/sivel">Matt Martz</a>、<a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>、<a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>、<a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>、<a href="https://profiles.wordpress.org/mdbitz">Matthew Denton</a>、<a href="https://profiles.wordpress.org/mattheweppelsheimer">Matthew Eppelsheimer</a>、<a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>、<a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>、<a href="https://profiles.wordpress.org/meekyhwang">meekyhwang</a>、<a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>、<a href="https://profiles.wordpress.org/midxcat">mi_cat</a>、<a href="https://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>、<a href="https://profiles.wordpress.org/michalzuber">michalzuber</a>、<a href="https://profiles.wordpress.org/mauteri">Mike Auteri</a>、<a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>、<a href="https://profiles.wordpress.org/mikejolley">Mike Jolley</a>、<a href="https://profiles.wordpress.org/mikelittle">Mike Little</a>、<a href="https://profiles.wordpress.org/mikemanger">Mike Manger</a>、<a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>、<a href="https://profiles.wordpress.org/mikeyarce">Mikey Arce</a>、<a href="https://profiles.wordpress.org/dimadin">Milan Dinic</a>、<a href="https://profiles.wordpress.org/mnelson4">mnelson4</a>、<a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>、<a href="https://profiles.wordpress.org/usermrpapa">Mr Papa</a>、<a href="https://profiles.wordpress.org/mrmist">mrmist</a>、<a href="https://profiles.wordpress.org/m_uysl">Mustafa Uysal</a>、<a href="https://profiles.wordpress.org/muvimotv">MuViMoTV</a>、<a href="https://profiles.wordpress.org/nabil_kadimi">nabil_kadimi</a>、<a href="https://profiles.wordpress.org/namibia">Namibia</a>、<a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>、<a href="https://profiles.wordpress.org/nd987">nd987</a>、<a href="https://profiles.wordpress.org/neil_pie">Neil Pie</a>、<a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>、<a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>、<a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>、<a href="https://profiles.wordpress.org/schoenwaldnils">Nils Schonwald</a>、<a href="https://profiles.wordpress.org/ninos-ego">Ninos</a>、<a href="https://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>、<a href="https://profiles.wordpress.org/compute">Patrick Hesselberg</a>、<a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>、<a href="https://profiles.wordpress.org/pdclark">Paul Clark</a>、<a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>、<a href="https://profiles.wordpress.org/paulschreiber">paulschreiber</a>、<a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>、<a href="https://profiles.wordpress.org/westi">Peter Westwood</a>、<a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>、<a href="https://profiles.wordpress.org/philipjohn">Philip John</a>、<a href="https://profiles.wordpress.org/senlin">Piet</a>、<a href="https://profiles.wordpress.org/psoluch">Piotr Soluch</a>、<a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>、<a href="https://profiles.wordpress.org/purzlbaum">purzlbaum</a>、<a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>、<a href="https://profiles.wordpress.org/rclations">RC Lations</a>、<a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>、<a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>、<a href="https://profiles.wordpress.org/rob1n">rob1n</a>、<a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>、<a href="https://profiles.wordpress.org/rdall">Robert Dall</a>、<a href="https://profiles.wordpress.org/harmr">RobertHarm</a>、<a href="https://profiles.wordpress.org/rohan013">Rohan Rawat</a>、<a href="https://profiles.wordpress.org/rhurling">Rouven Hurling</a>、<a href="https://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>、<a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>、<a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>、<a href="https://profiles.wordpress.org/sammybeats">Sam Brodie</a>、<a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>、<a href="https://profiles.wordpress.org/sathishn">sathishn</a>、<a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>、<a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>、<a href="https://profiles.wordpress.org/greglone">ScreenfeedFr</a>、<a href="https://profiles.wordpress.org/scribu">scribu</a>、<a href="https://profiles.wordpress.org/seanchayes">Sean Hayes</a>、<a href="https://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>、<a href="https://profiles.wordpress.org/sergejmueller">Sergej Muller</a>、<a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>、<a href="https://profiles.wordpress.org/shanebp">shanebp</a>、<a href="https://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>、<a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>、<a href="https://profiles.wordpress.org/simonp303">simonp303</a>、<a href="https://profiles.wordpress.org/slobodanmanic">Slobodan Manic</a>、<a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>、<a href="https://profiles.wordpress.org/sphoid">sphoid</a>、<a href="https://profiles.wordpress.org/stephdau">Stephane Daury</a>、<a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>、<a href="https://profiles.wordpress.org/stompweb">Steven Jones</a>、<a href="https://profiles.wordpress.org/strangerstudios">strangerstudios</a>、<a href="https://profiles.wordpress.org/5um17">Sumit Singh</a>、<a href="https://profiles.wordpress.org/sumobi">sumobi</a>、<a href="https://profiles.wordpress.org/t4k1s">t4k1s</a>、<a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>、<a href="https://profiles.wordpress.org/taylorde">Taylor Dewey</a>、<a href="https://profiles.wordpress.org/thomasvanderbeek">Thomas van der Beek</a>、<a href="https://profiles.wordpress.org/tillkruess">Till Kruss</a>、<a href="https://profiles.wordpress.org/codenameeli">Tim &#8216;Eli&#8217; Dalbey</a>、<a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>、<a href="https://profiles.wordpress.org/tjnowell">Tom J Nowell</a>、<a href="https://profiles.wordpress.org/willmot">Tom Willmot</a>、<a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>、<a href="https://profiles.wordpress.org/torresga">torresga</a>、<a href="https://profiles.wordpress.org/liljimmi">Tracy Levesque</a>、<a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>、<a href="https://profiles.wordpress.org/treyhunner">treyhunner</a>、<a href="https://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>、<a href="https://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>、<a href="https://profiles.wordpress.org/vlajos">vlajos</a>、<a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>、<a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>、<a href="https://profiles.wordpress.org/winterdev">winterDev</a>、<a href="https://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>、<a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>、<a href="https://profiles.wordpress.org/katzwebdesign">Zack Katz</a>、<a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>和<a href="https://profiles.wordpress.org/zoerooney">Zoe Rooney</a>。也感谢制作发行视频<a href="http://michaelpick.wordpress.com/">Michael Pick</a>,与制作音乐的Helen和<a href="http://adriansandi.com/">Adrián Sandí</a>。</p>\n<p>如果您想帮忙,请查阅<a href="https://make.wordpress.org/">Make WordPress</a>和我们的<a href="https://make.wordpress.org/core/">核心开发博客</a>。感谢选择WordPress,我们4.1见!\n</div>\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://cn.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:2:"39";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:24:"WordPress 3.9“Smith”";s: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://cn.wordpress.org/2014/04/19/smith/";s: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://cn.wordpress.org/2014/04/19/smith/#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, 18 Apr 2014 17:43: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: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:30:"http://cn.wordpress.org/?p=902";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:49:"WordPress 3.9简体中文版现已开放下载。";s: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:"jimmyxu";s: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:23365:"<div style="width: 692px">\nWordPress 3.9简体中文版现已<a href="https://cn.wordpress.org/wordpress-3.9-zh_CN.zip">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Smith”,以纪念<a href="https://en.wikipedia.org/wiki/Jimmy_Smith_(musician)">吉米·史密斯</a>,爵士风琴家。这次发布包含了众多细部修改,我们希望您喜欢。<br />\n<div id="v-sAiXhCfV-1" class="video-player"><embed id="v-sAiXhCfV-1-video" src="http://s0.videopress.com/player.swf?v=1.03&amp;guid=sAiXhCfV&amp;isDynamicSeeking=true" type="application/x-shockwave-flash" width="400" height="224" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div></p>\n<h2 style="text-align: center">更流畅的媒体编辑体验</h2>\n<p><img class="alignright" src="https://wordpress.org/news/files/2014/04/editor1-300x233.jpg" alt="编辑器" width="228" height="177" /></p>\n<h3>改良的可视化编辑</h3>\n<p>新的可视化编辑器在速度、可用性、移动支持方面都有了进步。您现在可以从您的文字处理器中直接粘贴文本到可视化编辑器,无需再受杂乱的样式所困。(没错,我们在说你,Microsoft Word。)</p>\n<div style="clear: both"></div>\n<p><img class="alignright" src="https://wordpress.org/news/files/2014/04/image1-300x233.jpg" alt="图像" width="228" height="178" /></p>\n<h3>方便的图像编辑</h3>\n<p>裁剪和旋转工具更易访问,在您编辑文章时修改图像相比以往更加便捷。您也可在编辑器中缩放图像。</p>\n<div style="clear: both"></div>\n<p><img class="alignright" src="https://wordpress.org/news/files/2014/04/dragdrop1-300x233.jpg" alt="拖放" width="228" height="178" /></p>\n<h3>拖放您的图像</h3>\n<p>上传图像变得更简单,直接从桌面上拖放到编辑器中即可。</p>\n<div style="clear: both"></div>\n<hr />\n<h2 style="text-align: center">相册预览</h2>\n<p><img class="aligncenter size-full" src="https://wordpress.org/news/files/2014/04/gallery1.jpg" alt="gallery" width="980" height="550" /><br />\n相册可在编辑器中展示能与已发布文章中的效果相媲美的图像网格。</p>\n<hr />\n<h2 style="text-align: center">音频、视频的新花样</h2>\n<p>\n<a href=''https://cn.wordpress.org/files/2014/04/AintMisbehavin.mp3''>Ain''t Misbehavin''</a>\n<a href=''https://cn.wordpress.org/files/2014/04/DavenportBlues.mp3''>Davenport Blues</a>\n<a href=''https://cn.wordpress.org/files/2014/04/JellyRollMorton-BuddyBoldensBlues.mp3''>Buddy Bolden''s Blues</a>\n<a href=''https://cn.wordpress.org/files/2014/04/Johnny_Hodges_Orchestra-Squaty_Roo-1941.mp3''>Squaty Roo</a>\n<a href=''https://cn.wordpress.org/files/2014/04/Louisiana_Five-Dixie_Blues-1919.mp3''>Dixie Blues</a>\n<a href=''https://cn.wordpress.org/files/2014/04/WolverineBlues.mp3''>Wolverine Blues</a>\n<br />\n图像属于相册,现在我们也对视频和音频加入了简单的播放列表,您可以方便地展示您的音乐和视频片段。</p>\n<hr />\n<h2 style="text-align: center">实时挂件和顶部图像预览</h2>\n<div style="width: 692px" class="wp-video"><a href="//wordpress.org/news/files/2014/04/widgets.mp4">//wordpress.org/news/files/2014/04/widgets.mp4</a></div>\n<p>在主题编辑器中添加、编辑并重排您站点的挂件,不再有出乎意料——实时预览您的修改,在您放心后才保存。经改善的顶部图像工具让您在自定义主题时可以上传、裁剪并管理顶部图像。</p>\n<hr />\n<h2 style="text-align: center">令人惊叹的主题浏览器</h2>\n<p><img class="aligncenter size-full" src="https://wordpress.org/news/files/2014/04/theme1.jpg" alt="theme" width="1003" height="558" /><br />\n寻找新主题应当是一项令人愉快的任务,通过崭新的主题浏览器漫游WordPress.org提供的无数免费主题吧。</p>\n<hr />\n<h2 style="text-align: center">船员们</h2>\n<p>此次发布由<a href="http://nacin.com/">Andrew Nacin</a>与<a href="http://www.getsource.net/">Mike Schroder</a>牵头,并得到了以下这些优秀个人的帮助。共有267名贡献者参与了这次发布,历史新高:<br />\n<a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>、<a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>、<a href="https://profiles.wordpress.org/kawauso">Adam Harley</a>、<a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>、<a href="https://profiles.wordpress.org/adelval">adelval</a>、<a href="https://profiles.wordpress.org/ajay">Ajay</a>、<a href="https://profiles.wordpress.org/akeda">Akeda Bagus</a>、<a href="https://profiles.wordpress.org/xknown">Alex Concha</a>、<a href="https://profiles.wordpress.org/aliso">Alison Barrett</a>、<a href="https://profiles.wordpress.org/collinsinternet">Allan Collins</a>、<a href="https://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>、<a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>、<a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>、<a href="https://profiles.wordpress.org/norcross">Andrew Norcross</a>、<a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>、<a href="https://profiles.wordpress.org/rarst">Andrey &#8220;Rarst&#8221; Savchenko</a>、<a href="https://profiles.wordpress.org/andykeith">Andy Keith</a>、<a href="https://profiles.wordpress.org/andy">Andy Skelton</a>、<a href="https://profiles.wordpress.org/atimmer">Anton Timmermans</a>、<a href="https://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>、<a href="https://profiles.wordpress.org/barry">Barry</a>、<a href="https://profiles.wordpress.org/toszcze">Bartosz Romanowski</a>、<a href="https://profiles.wordpress.org/bassgang">bassgang</a>、<a href="https://profiles.wordpress.org/bcworkz">bcworkz</a>、<a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>、<a href="https://profiles.wordpress.org/neoxx">Bernhard Riedl</a>、<a href="https://profiles.wordpress.org/bigdawggi">bigdawggi</a>、<a href="https://profiles.wordpress.org/bobbravo2">Bob Gregor</a>、<a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>、<a href="https://profiles.wordpress.org/bradt">Brad Touesnard</a>、<a href="https://profiles.wordpress.org/bradparbs">bradparbs</a>、<a href="https://profiles.wordpress.org/bramd">bramd</a>、<a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>、<a href="https://profiles.wordpress.org/brasofilo">brasofilo</a>、<a href="https://profiles.wordpress.org/bravokeyl">bravokeyl</a>、<a href="https://profiles.wordpress.org/bpetty">Bryan Petty</a>、<a href="https://profiles.wordpress.org/cgaffga">cgaffga</a>、<a href="https://profiles.wordpress.org/chiragswadia">Chirag Swadia</a>、<a href="https://profiles.wordpress.org/chouby">Chouby</a>、<a href="https://profiles.wordpress.org/ehg">Chris Blower</a>、<a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>、<a href="https://profiles.wordpress.org/chrisscott">Chris Scott</a>、<a href="https://profiles.wordpress.org/chriseverson">chriseverson</a>、<a href="https://profiles.wordpress.org/chrisguitarguy">chrisguitarguy</a>、<a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>、<a href="https://profiles.wordpress.org/ciantic">ciantic</a>、<a href="https://profiles.wordpress.org/cmmarslender">cmmarslender</a>、<a href="https://profiles.wordpress.org/antorome">Comparativa de Bancos</a>、<a href="https://profiles.wordpress.org/cojennin">Connor Jennings</a>、<a href="https://profiles.wordpress.org/corvannoorloos">Cor van Noorloos</a>、<a href="https://profiles.wordpress.org/corphi">Corphi</a>、<a href="https://profiles.wordpress.org/cramdesign">cramdesign</a>、<a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>、<a href="https://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>、<a href="https://profiles.wordpress.org/dannydehaan">Danny de Haan</a>、<a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>、<a href="https://profiles.wordpress.org/eightface">Dave Kellam (eightface)</a>、<a href="https://profiles.wordpress.org/dpe415">DaveE</a>、<a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>、<a href="https://profiles.wordpress.org/davidanderson">David Anderson</a>、<a href="https://profiles.wordpress.org/davidmarichal">David Marichal</a>、<a href="https://profiles.wordpress.org/denis-de-bernardy">Denis de Bernardy</a>、<a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>、<a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>、<a href="https://profiles.wordpress.org/dougwollison">Doug Wollison</a>、<a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>、<a href="https://profiles.wordpress.org/drprotocols">DrProtocols</a>、<a href="https://profiles.wordpress.org/dustyf">Dustin Filippini</a>、<a href="https://profiles.wordpress.org/eatingrules">eatingrules</a>、<a href="https://profiles.wordpress.org/plocha">edik</a>、<a href="https://profiles.wordpress.org/eliorivero">Elio Rivero</a>、<a href="https://profiles.wordpress.org/enej">enej</a>、<a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>、<a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>、<a href="https://profiles.wordpress.org/evarlese">Erica Varlese</a>、<a href="https://profiles.wordpress.org/ethitter">Erick Hitter</a>、<a href="https://profiles.wordpress.org/ejdanderson">Evan Anderson</a>、<a href="https://profiles.wordpress.org/fahmiadib">Fahmi</a>、<a href="https://profiles.wordpress.org/fboender">fboender</a>、<a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>、<a href="https://profiles.wordpress.org/garyc40">Gary Cao</a>、<a href="https://profiles.wordpress.org/garyj">Gary Jones</a>、<a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>、<a href="https://profiles.wordpress.org/genkisan">genkisan</a>、<a href="https://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>、<a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>、<a href="https://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>、<a href="https://profiles.wordpress.org/vancoder">Grant Mangham</a>、<a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>、<a href="https://profiles.wordpress.org/tivnet">Gregory Karpinsky</a>、<a href="https://profiles.wordpress.org/hakre">hakre</a>、<a href="https://profiles.wordpress.org/hanni">hanni</a>、<a href="https://profiles.wordpress.org/helen">Helen Hou-Sandí</a>、<a href="https://profiles.wordpress.org/ippetkov">ippetkov</a>、<a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>、<a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>、<a href="https://profiles.wordpress.org/jackreichert">Jack Reichert</a>、<a href="https://profiles.wordpress.org/_jameslee">jameslee</a>、<a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>、<a href="https://profiles.wordpress.org/janrenn">janrenn</a>、<a href="https://profiles.wordpress.org/jaycc">JayCC</a>、<a href="https://profiles.wordpress.org/jeffsebring">Jeff Sebring</a>、<a href="https://profiles.wordpress.org/jenmylo">Jen Mylo</a>、<a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>、<a href="https://profiles.wordpress.org/jesin">Jesin A</a>、<a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>、<a href="https://profiles.wordpress.org/jnielsendotnet">jnielsendotnet</a>、<a href="https://profiles.wordpress.org/jartes">Joan Artes</a>、<a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>、<a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>、<a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>、<a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>、<a href="https://profiles.wordpress.org/johnpbloch">John P. Bloch</a>、<a href="https://profiles.wordpress.org/johnregan3">John Regan</a>、<a href="https://profiles.wordpress.org/duck_">Jon Cave</a>、<a href="https://profiles.wordpress.org/jond3r">Jonas Bolinder (jond3r)</a>、<a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>、<a href="https://profiles.wordpress.org/shelob9">Josh Pollock</a>、<a href="https://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>、<a href="https://profiles.wordpress.org/jstraitiff">jstraitiff</a>、<a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>、<a href="https://profiles.wordpress.org/kopepasah">Justin Kopepasah</a>、<a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>、<a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>、<a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>、<a href="https://profiles.wordpress.org/kasparsd">Kaspars</a>、<a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>、<a href="https://profiles.wordpress.org/kerikae">kerikae</a>、<a href="https://profiles.wordpress.org/kworthington">Kevin Worthington</a>、<a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>、<a href="https://profiles.wordpress.org/kwight">Kirk Wight</a>、<a href="https://profiles.wordpress.org/kitchin">kitchin</a>、<a href="https://profiles.wordpress.org/klihelp">klihelp</a>、<a href="https://profiles.wordpress.org/knutsp">Knut Sparhell</a>、<a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>、<a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>、<a href="https://profiles.wordpress.org/drozdz">Krzysiek Drozdz</a>、<a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>、<a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>、<a href="https://profiles.wordpress.org/lkwdwrd">lkwdwrd</a>、<a href="https://profiles.wordpress.org/lpointet">lpointet</a>、<a href="https://profiles.wordpress.org/ldebrouwer">Luc De Brouwer</a>、<a href="https://profiles.wordpress.org/spmlucas">Lucas Karpiuk</a>、<a href="https://profiles.wordpress.org/mark8barnes">Mark Barnes</a>、<a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>、<a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>、<a href="https://profiles.wordpress.org/marventus">Marventus</a>、<a href="https://profiles.wordpress.org/iammattthomas">Matt (Thomas) Miklic</a>、<a href="https://profiles.wordpress.org/mjbanks">Matt Banks</a>、<a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>、<a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>、<a href="https://profiles.wordpress.org/mdbitz">Matthew Denton</a>、<a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>、<a href="https://profiles.wordpress.org/mattonomics">mattonomics</a>、<a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>、<a href="https://profiles.wordpress.org/matveb">Matías Ventura</a>、<a href="https://profiles.wordpress.org/maxcutler">Max Cutler</a>、<a href="https://profiles.wordpress.org/mcadwell">mcadwell</a>、<a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>、<a href="https://profiles.wordpress.org/meloniq">meloniq</a>、<a href="https://profiles.wordpress.org/michael-arestad">Michael Arestad</a>、<a href="https://profiles.wordpress.org/michelwppi">Michel &#8211; xiligroup dev</a>、<a href="https://profiles.wordpress.org/mcsf">Miguel Fonseca</a>、<a href="https://profiles.wordpress.org/gradyetc">Mike Burns</a>、<a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>、<a href="https://profiles.wordpress.org/mikemanger">Mike Manger</a>、<a href="https://profiles.wordpress.org/mikeschinkel">Mike Schinkel</a>、<a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>、<a href="https://profiles.wordpress.org/mikecorkum">mikecorkum</a>、<a href="https://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>、<a href="https://profiles.wordpress.org/batmoo">Mohammad Jangda</a>、<a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>、<a href="https://profiles.wordpress.org/mor10">Morten Rand-Hendriksen</a>、<a href="https://profiles.wordpress.org/Nao">Naoko Takano</a>、<a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>、<a href="https://profiles.wordpress.org/nendeb55">nendeb55</a>、<a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>、<a href="https://profiles.wordpress.org/nicolealleyinteractivecom">Nicole Arnold</a>、<a href="https://profiles.wordpress.org/nikv">Nikhil Vimal (NikV)</a>、<a href="https://profiles.wordpress.org/nivijah">nivijah</a>、<a href="https://profiles.wordpress.org/nofearinc">nofearinc</a>、<a href="https://profiles.wordpress.org/nunomorgadinho">Nuno Morgadinho</a>、<a href="https://profiles.wordpress.org/olivm">olivM</a>、<a href="https://profiles.wordpress.org/jbkkd">Omer Korner</a>、<a href="https://profiles.wordpress.org/originalexe">OriginalEXE</a>、<a href="https://profiles.wordpress.org/oso96_2000">oso96_2000</a>、<a href="https://profiles.wordpress.org/patricknami">patricknami</a>、<a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>、<a href="https://profiles.wordpress.org/djpaul">Paul Gibbs</a>、<a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>、<a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>、<a href="https://profiles.wordpress.org/westi">Peter Westwood</a>、<a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>、<a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>、<a href="https://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>、<a href="https://profiles.wordpress.org/prettyboymp">prettyboymp</a>、<a href="https://profiles.wordpress.org/raamdev">Raam Dev</a>、<a href="https://profiles.wordpress.org/rachelbaker">rachelbaker</a>、<a href="https://profiles.wordpress.org/mauryaratan">Ram Ratan Maurya</a>、<a href="https://profiles.wordpress.org/ramonchiara">ramonchiara</a>、<a href="https://profiles.wordpress.org/ounziw">Rescuework Support</a>、<a href="https://profiles.wordpress.org/rhyswynne">Rhys Wynne</a>、<a href="https://profiles.wordpress.org/ricardocorreia">Ricardo Correia</a>、<a href="https://profiles.wordpress.org/theorboman">Richard Sweeney</a>、<a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>、<a href="https://profiles.wordpress.org/richard2222">richard2222</a>、<a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>、<a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>、<a href="https://profiles.wordpress.org/robmiller">robmiller</a>、<a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>、<a href="https://profiles.wordpress.org/romaimperator">romaimperator</a>、<a href="https://profiles.wordpress.org/roothorick">roothorick</a>、<a href="https://profiles.wordpress.org/ruudjoyo">ruud@joyo</a>、<a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>、<a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>、<a href="https://profiles.wordpress.org/salcode">Sal Ferrarello</a>、<a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>、<a href="https://profiles.wordpress.org/sandyr">Sandeep</a>、<a href="https://profiles.wordpress.org/scottlee">Scott Lee</a>、<a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>、<a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>、<a href="https://profiles.wordpress.org/greglone">ScreenfeedFr</a>、<a href="https://profiles.wordpress.org/scribu">scribu</a>、<a href="https://profiles.wordpress.org/sdasse">sdasse</a>、<a href="https://profiles.wordpress.org/bootsz">Sean Butze</a>、<a href="https://profiles.wordpress.org/seanchayes">Sean Hayes</a>、<a href="https://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>、<a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>、<a href="https://profiles.wordpress.org/shahpranaf">shahpranaf</a>、<a href="https://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>、<a href="https://profiles.wordpress.org/shinichin">ShinichiN</a>、<a href="https://profiles.wordpress.org/pross">Simon Prosser</a>、<a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>、<a href="https://profiles.wordpress.org/siobhan">Siobhan</a>、<a href="https://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>、<a href="https://profiles.wordpress.org/sirzooro">sirzooro</a>、<a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>、<a href="https://profiles.wordpress.org/sonjanyc">sonjanyc</a>、<a href="https://profiles.wordpress.org/spencerfinnell">Spencer Finnell</a>、<a href="https://profiles.wordpress.org/piontkowski">Spencer Piontkowski</a>、<a href="https://profiles.wordpress.org/stephcook22">stephcook22</a>、<a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>、<a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>、<a href="https://profiles.wordpress.org/sbruner">Steve Bruner</a>、<a href="https://profiles.wordpress.org/stevenkword">Steven Word</a>、<a href="https://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>、<a href="https://profiles.wordpress.org/tanner-m">Tanner Moushey</a>、<a href="https://profiles.wordpress.org/tlovett1">Taylor Lovett</a>、<a href="https://profiles.wordpress.org/tbrams">tbrams</a>、<a href="https://profiles.wordpress.org/tellyworth">tellyworth</a>、<a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>、<a href="https://profiles.wordpress.org/tomauger">Tom Auger</a>、<a href="https://profiles.wordpress.org/willmot">Tom Willmot</a>、<a href="https://profiles.wordpress.org/topher1kenobe">Topher</a>、<a href="https://profiles.wordpress.org/topquarky">topquarky</a>、<a href="https://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>、<a href="https://profiles.wordpress.org/toru">Toru</a>、<a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>、<a href="https://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>、<a href="https://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>、<a href="https://profiles.wordpress.org/varunagw">VarunAgw</a>、<a href="https://profiles.wordpress.org/wawco">wawco</a>、<a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>、<a href="https://profiles.wordpress.org/wokamoto">wokamoto</a>、<a href="https://profiles.wordpress.org/xsonic">xsonic</a>、<a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>、<a href="https://profiles.wordpress.org/yurivictor">Yuri Victor</a>、<a href="https://profiles.wordpress.org/zbtirrell">Zach Tirrell</a>和<a href="https://profiles.wordpress.org/vanillalounge">Ze Fontainhas</a>。同时感谢<a href="http://michaelpick.wordpress.com/">Michael Pick</a>制作了发行视频。</p>\n<p>如果您想帮忙,请查看<a href="https://make.wordpress.org/">Make WordPress</a>和我们的<a href="https://make.wordpress.org/core/">核心开发博客</a>。感谢选择WordPress,我们在4.0版等您!\n</div>\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://cn.wordpress.org/2014/04/19/smith/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:2:"67";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: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:27:"WordPress 3.8.3维护更新";s: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://cn.wordpress.org/2014/04/15/wordpress-3-8-3/";s: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://cn.wordpress.org/2014/04/15/wordpress-3-8-3/#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:"Tue, 15 Apr 2014 05:33: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: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:30:"http://cn.wordpress.org/?p=897";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:45:"WordPress 3.8.3简体中文版现已可用。";s: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:"jimmyxu";s: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:1403:"<p>WordPress 3.8.3现已发布,修正了<a href="https://wordpress.org/news/2014/04/wordpress-3-8-2/">WordPress 3.8.2安全更新</a>中的一个bug。</p>\n<p>仪表盘中的“快速草稿”工具在3.8.2中未能正常工作,在您使用它时,您的草稿将不会被保存。尽管我们觉得不会有人用这个工具写小说,但<em>任何</em>数据丢失对我们来说都是不能接受的。</p>\n<p>我们认识到您对我们的信任,并且我们认真对待这份责任。我们对让您失望诚致歉意。</p>\n<p>仍<em>有可能</em>您上周丢失的快速草稿还在数据库中,只是您看不到它。然而,这些“丢弃的草稿”通常会在7天后被删除,而现在离我们上次发布已经过了6天。如果我们有幸救回您的草稿,您将会于更新后在“所有文章”界面看到它。(我们也将在后台推送3.8.3,所以可能您会发现列表中突然出现了一篇草稿。)</p>\n<p><a href="https://wordpress.org/download/">下载WordPress 3.8.3</a>(<a href="https://cn.wordpress.org/wordpress-3.8.3-zh_CN.zip">简体中文版</a>)或在仪表盘→更新中点击“现在更新”。</p>\n<p><em>这个bug也影响了3.7.2,所以我们发布了3.7.3版。但我们仍然希望您升级到最新版。</em></p>\n<hr />\n<p><em>Now for some good news:<br />\nWordPress 3.9 is near.<br />\nExpect it this week</em></p>\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://cn.wordpress.org/2014/04/15/wordpress-3-8-3/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:2:"34";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: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:27:"WordPress 3.8.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://cn.wordpress.org/2014/01/25/wordpress-3-8-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://cn.wordpress.org/2014/01/25/wordpress-3-8-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:"Sat, 25 Jan 2014 03:46: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: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:30:"http://cn.wordpress.org/?p=894";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:45:"WordPress 3.8.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:7:"jimmyxu";s: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:3832:"<p>在WordPress 3.8发布逾六周,下载量<a href="https://wordpress.org/download/counter/">逾9.3百万次</a>之后,我们很高兴能够发布WordPress 3.8.1。</p>\n<p>3.8.1版是为修正3.8中的31个bug而做出的维护更新,其中包含了对新仪表盘设计和主题管理屏幕的修正和改进。一项关于WP_Query中分类查询的问题已被修复。此外,如果您发现点击“提交”按钮后没有任何反应(或像我们中的某些人一样感到抓狂),请安心,我们已经发现并修复了这个问题。</p>\n<p>此版本也包含对<strong>嵌入推特</strong>(即将一条推特的URL置于单独的一行中)的修正,使其能够适应最近的Twitter API更新。(要查阅更多关于Embeds的资讯,请参见<a href="https://codex.wordpress.org/Embeds">Codex</a>。)</p>\n<p>要查阅全部修改,请参见<a href="https://core.trac.wordpress.org/query?milestone=3.8.1">工单列表</a>和<a href="https://core.trac.wordpress.org/log/branches/3.8?rev=27018&amp;stop_rev=26862">修改历史</a>。此外,在开发博客上有关于此版本的<a href="https://make.wordpress.org/core/2014/01/22/wordpress-3-8-1-release-candidate/">详细摘要</a>。</p>\n<p>如果您已经是WordPress 3.8的百万用户中的一员,我们将在未来几小时内为您自动在后台更新到WordPress 3.8.1。当然,这仅限<a href="https://wordpress.org/plugins/background-update-tester/">支持后台更新</a>的站点。</p>\n<p><a href="https://wordpress.org/wordpress-3.8.1.zip">下载WordPress 3.8.1</a>(<a href="https://cn.wordpress.org/wordpress-3.8.1-zh_CN.zip">简体中文版</a>)或到管理后台的“仪表盘”→“更新”来升级。</p>\n<p>我们向以下对3.8.1做出贡献的人士致谢:</p>\n<p><a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>、<a href="https://profiles.wordpress.org/collinsinternet">Allan Collins</a>、<a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>、<a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>、<a href="https://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>、<a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>、<a href="https://profiles.wordpress.org/cojennin">Connor Jennings</a>、<a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>、<a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>、<a href="https://profiles.wordpress.org/fboender">fboender</a>、<a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>、<a href="https://profiles.wordpress.org/janrenn">janrenn</a>、<a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>、<a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>、<a href="https://wordpress.org/news/2014/01/wordpress-3-8-1/#">José Pino</a>、<a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>、<a href="https://profiles.wordpress.org/matveb">Matias Ventura</a>、<a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>、<a href="https://profiles.wordpress.org/iammattthomas">Matt Thomas</a>、<a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>、<a href="https://profiles.wordpress.org/batmoo">Mohammad Jangda</a>、<a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>、<a href="https://profiles.wordpress.org/nivijah">nivijah</a>、<a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>、<a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>、<a href="https://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>和<a href="https://profiles.wordpress.org/yurivictor">Yuri Victor</a>。</p>\n<p><em>WordPress three eight one<br />\nWe heard you didn’t like bugs<br />\nSo we took them out</em></p>\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://cn.wordpress.org/2014/01/25/wordpress-3-8-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:2:"65";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: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 3.8“Parker”";s: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:43:"https://cn.wordpress.org/2013/12/13/parker/";s: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:52:"https://cn.wordpress.org/2013/12/13/parker/#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, 13 Dec 2013 07:27:43 +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:30:"http://cn.wordpress.org/?p=887";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:49:"WordPress 3.8简体中文版现已开放下载。";s: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:"jimmyxu";s: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:17018:"<p>WordPress 3.8简体中文版现已<a href="https://cn.wordpress.org/wordpress-3.8-zh_CN.zip">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Parker”,以纪念<a href="https://zh.wikipedia.org/zh-cn/%E6%9F%A5%E5%88%A9%C2%B7%E5%B8%95%E5%85%8B">查利·帕克</a>,波普爵士乐的先驱者。我们希望您能觉得这是迄今为止最美丽的更新。</p>\n<div id="v-6wORgoGb-1" class="video-player"><embed id="v-6wORgoGb-1-video" src="http://s0.videopress.com/player.swf?v=1.03&amp;guid=6wORgoGb&amp;isDynamicSeeking=true" type="application/x-shockwave-flash" width="400" height="224" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<h2>向您介绍全新的现代设计</h2>\n<p><img alt="overview" src="//i2.wp.com/i0.wp.com/wpdotorg.files.wordpress.com/2013/12/overview.jpg?resize=623%2C193" width="623" height="193" /><br />\nWordPress已经变得焕然一新。3.8给整个仪表盘带来了全新的外观。告别强盛的渐变和几十度灰——迎来更宏大、更大胆、更丰富多彩的设计!<br />\n<img alt="about-modern-wordpress" src="//i2.wp.com/i2.wp.com/wpdotorg.files.wordpress.com/2013/12/design.png?resize=623%2C151" width="623" height="151" /></p>\n<h3>现代美学</h3>\n<p>新的WordPress仪表盘有着清新、整洁的设计,简洁明了。</p>\n<h3>干净排版</h3>\n<p>Open Sans字体提供了为桌面和移动浏览优化过的,简单、友好的文本。和WordPress一样,它也是开源的。</p>\n<h3>精致对比</h3>\n<p>我们认为漂亮的设计不应该以牺牲可读性为代价。凭借卓越的对比度和宽大舒适的排版,新的设计很容易阅读,浏览起来也是一种享受。</p>\n<hr />\n<h2>每台设备上的WordPress</h2>\n<p><img alt="responsive" src="//i2.wp.com/i2.wp.com/wpdotorg.files.wordpress.com/2013/12/responsive.jpg?resize=255%2C255" width="255" height="255" />我们通过不同的方式访问互联网:智能手机、平板、笔记本电脑、台式机——不论您使用什么,WordPress都能妥善应对,让您宾至如归。</p>\n<h3>高清高速</h3>\n<p>通过使用矢量图标,WordPress比以往更锐利、更能适应您的屏幕。而且通过抛弃像素点,页面加载速度也获得显著提升。</p>\n<hr />\n<h2>让配色方案符合您的个性</h2>\n<p><img alt="colors" src="//i2.wp.com/i0.wp.com/wpdotorg.files.wordpress.com/2013/12/colors.jpg?resize=623%2C339" width="623" height="339" /><br />\nWordPress的本次更新丰富多彩,我们为您提供了8种配色方案,总有一种适合您。</p>\n<p>您可在您的个人资料页面预览和修改配色方案。</p>\n<hr />\n<h2>精致的主题管理</h2>\n<p><img alt="themes" src="//i2.wp.com/i0.wp.com/wpdotorg.files.wordpress.com/2013/12/themes.jpg?resize=360%2C344" width="360" height="344" />新的主题屏幕让您能对您的主题一览无余,您也可以点击以获得更多信息。键盘上的方向键现也可用于主题浏览。</p>\n<h3>流畅的小工具体验</h3>\n<p>通过新的设计,您即可告别以往不断的拖动。我们致力于精简小工具屏幕。</p>\n<p>有大监视器?多个挂件区域现可并排放置来使用空余空间。有平板电脑?轻触某一挂件来添加。</p>\n<hr />\n<h2>Twenty Fourteen,时髦的新杂志主题</h2>\n<h3><img alt="显示在笔记本电脑、平板电脑和手机中的全新Twenty Fourteen主题" src="//i2.wp.com/i0.wp.com/wpdotorg.files.wordpress.com/2013/12/twentyfourteen.jpg?resize=692%2C275" width="692" height="275" /></h3>\n<h3>将您的博客变身为一本杂志</h3>\n<p>使用WordPress和Twenty Fourteen,您可以创建漂亮的杂志风格站点。选择特色内容在您主页的显示方式:网格还是滑块;通过三块挂件区域自定义您的站点;或是用两种页面模板修改您的布局。</p>\n<p>通过不妨害我们的简洁性的引人注目的设计,Twenty Fourteen是我们迄今为止最强悍的默认主题</p>\n<hr />\n<h2>新时代</h2>\n<p>本次发布由Matt Mullenweg牵头,这是我们第二次采用插件优先的开发模式,开发时间窗口也比以往更小。我们认为一切都很顺利。您可以在<a title="Make WordPress Core" href="https://make.wordpress.org/core/" target="_blank">make/core博客</a>查阅当前正被开发的新功能。</p>\n<p>本次发布得到了175名贡献者的支持:</p>\n<p><a href="https://profiles.wordpress.org/aaronholbrook">Aaron Holbrook</a>、<a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>、<a href="https://profiles.wordpress.org/adamsilverstein">adamsilverstein</a>、<a href="https://profiles.wordpress.org/ahoereth">Alexander Hoereth</a>、<a href="https://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>、<a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>、<a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>、<a href="https://profiles.wordpress.org/aralbald">Andrey Kabakchiev</a>、<a href="https://profiles.wordpress.org/apeatling">Andy Peatling</a>、<a href="https://profiles.wordpress.org/ankitgadertcampcom">Ankit Gade</a>、<a href="https://profiles.wordpress.org/atimmer">Anton Timmermans</a>、<a href="https://profiles.wordpress.org/fliespl">Arkadiusz Rzadkowolski</a>、<a href="https://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>、<a href="https://profiles.wordpress.org/bassgang">bassgang</a>、<a href="https://profiles.wordpress.org/bananastalktome">Billy (bananastalktome)</a>、<a href="https://profiles.wordpress.org/binarymoon">binarymoon</a>、<a href="https://profiles.wordpress.org/bradyvercher">Brady Vercher</a>、<a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>、<a href="https://profiles.wordpress.org/rzen">Brian Richards</a>、<a href="https://profiles.wordpress.org/bpetty">Bryan Petty</a>、<a href="https://profiles.wordpress.org/carldanley">Carl Danley</a>、<a href="https://profiles.wordpress.org/sixhours">Caroline Moore</a>、<a href="https://profiles.wordpress.org/corphi">Corphi</a>、<a href="https://profiles.wordpress.org/dbernar1">Dan Bernardic</a>、<a href="https://profiles.wordpress.org/danieldudzic">danieldudzic</a>、<a href="https://profiles.wordpress.org/datafeedrcom">datafeedrcom</a>、<a href="https://profiles.wordpress.org/drw158">Dave Whitley</a>、<a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>、<a href="https://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>、<a href="https://profiles.wordpress.org/dougwollison">Doug Wollison</a>、<a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>、<a href="https://profiles.wordpress.org/dziudek">dziudek</a>、<a href="https://profiles.wordpress.org/empireoflight">Empireoflight</a>、<a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>、<a href="https://profiles.wordpress.org/ethitter">Erick Hitter</a>、<a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>、<a href="https://profiles.wordpress.org/evansolomon">Evan Solomon</a>、<a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>、<a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>、<a href="https://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>、<a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>、<a href="https://profiles.wordpress.org/tivnet">Gregory Karpinsky</a>、<a href="https://profiles.wordpress.org/hanni">hanni</a>、<a href="https://profiles.wordpress.org/helen">Helen Hou-Sandi</a>、<a href="https://profiles.wordpress.org/iandunn">Ian Dunn</a>、<a href="https://profiles.wordpress.org/iblamefish">iblamefish</a>、<a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>、<a href="https://profiles.wordpress.org/isaackeyet">Isaac Keyet</a>、<a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>、<a href="https://profiles.wordpress.org/jacklenox">Jack Lenox</a>、<a href="https://profiles.wordpress.org/janhenckens">janhenckens</a>、<a href="https://profiles.wordpress.org/jblz">Jeff Bowen</a>、<a href="https://profiles.wordpress.org/jeffr0">Jeff Chandler</a>、<a href="https://profiles.wordpress.org/jenmylo">Jen Mylo</a>、<a href="https://profiles.wordpress.org/buffler">Jeremy Buller</a>、<a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>、<a href="https://profiles.wordpress.org/jeherve">Jeremy Herve</a>、<a href="https://profiles.wordpress.org/jpry">Jeremy Pry</a>、<a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>、<a href="https://profiles.wordpress.org/jhned">jhned</a>、<a href="https://profiles.wordpress.org/jartes">Joan Artes</a>、<a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>、<a href="https://profiles.wordpress.org/joen">Joen Asmussen</a>、<a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>、<a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>、<a href="https://profiles.wordpress.org/duck_">Jon Cave</a>、<a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>、<a href="https://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>、<a href="https://profiles.wordpress.org/nukaga">Junko Nukaga</a>、<a href="https://profiles.wordpress.org/devesine">Justin de Vesine</a>、<a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>、<a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>、<a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>、<a href="https://profiles.wordpress.org/littlethingsstudio">Kate Whitley</a>、<a href="https://profiles.wordpress.org/codebykat">Kat Hagan</a>、<a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>、<a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>、<a href="https://profiles.wordpress.org/kwight">Kirk Wight</a>、<a href="https://profiles.wordpress.org/koki4a">Konstantin Dankov</a>、<a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>、<a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>、<a href="https://profiles.wordpress.org/drozdz">Krzysiek Drozdz</a>、<a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>、<a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>、<a href="https://profiles.wordpress.org/lessbloat">lessbloat</a>、<a href="https://profiles.wordpress.org/lite3">lite3</a>、<a href="https://profiles.wordpress.org/latz">Lutz Schroer</a>、<a href="https://profiles.wordpress.org/mako09">Mako</a>、<a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>、<a href="https://profiles.wordpress.org/markmcwilliams">Mark McWilliams</a>、<a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>、<a href="https://profiles.wordpress.org/matveb">Matias Ventura</a>、<a href="https://profiles.wordpress.org/mdbitz">Matthew Denton</a>、<a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>、<a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>、<a href="https://profiles.wordpress.org/iammattthomas">Matt Thomas</a>、<a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>、<a href="https://profiles.wordpress.org/megane9988">megane9988</a>、<a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>、<a href="https://profiles.wordpress.org/micahwave">micahwave</a>、<a href="https://profiles.wordpress.org/cainm">Michael Cain</a>、<a href="https://profiles.wordpress.org/michelwppi">Michel – xiligroup dev</a>、<a href="https://profiles.wordpress.org/chellycat">Michelle Langston</a>、<a href="https://profiles.wordpress.org/gradyetc">Mike Burns</a>、<a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>、<a href="https://profiles.wordpress.org/mikelittle">Mike Little</a>、<a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>、<a href="https://profiles.wordpress.org/dimadin">Milan Dinic</a>、<a href="https://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>、<a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>、<a href="https://profiles.wordpress.org/mt8biz">moto hachi</a>、<a href="https://profiles.wordpress.org/Nao">Naoko Takano</a>、<a href="https://profiles.wordpress.org/neil_pie">neil_pie</a>、<a href="https://profiles.wordpress.org/nickdaugherty">Nick Daugherty</a>、<a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>、<a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>、<a href="https://profiles.wordpress.org/ninio">ninio</a>、<a href="https://profiles.wordpress.org/ninnypants">ninnypants</a>、<a href="https://profiles.wordpress.org/nofearinc">nofearinc</a>、<a href="https://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>、<a href="https://profiles.wordpress.org/odysseygate">odyssey</a>、<a href="https://profiles.wordpress.org/originalexe">OriginalEXE</a>、<a href="https://profiles.wordpress.org/swissspidy">Pascal Birchler</a>、<a href="https://profiles.wordpress.org/pauldewouters">Paul de Wouters</a>、<a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>、<a href="https://profiles.wordpress.org/westi">Peter Westwood</a>、<a href="https://profiles.wordpress.org/ptahdunbar">Ptah Dunbar</a>、<a href="https://profiles.wordpress.org/raamdev">Raam Dev</a>、<a href="https://profiles.wordpress.org/rachelbaker">rachelbaker</a>、<a href="https://profiles.wordpress.org/bamadesigner">Rachel Carden</a>、<a href="https://profiles.wordpress.org/radices">Radices</a>、<a href="https://profiles.wordpress.org/mauryaratan">Ram Ratan Maurya</a>、<a href="https://profiles.wordpress.org/defries">Remkus de Vries</a>、<a href="https://profiles.wordpress.org/ounziw">Rescuework Support</a>、<a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>、<a href="https://profiles.wordpress.org/rdall">Robert Dall</a>、<a href="https://profiles.wordpress.org/wet">Robert Wetzlmayr</a>、<a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>、<a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>、<a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>、<a href="https://profiles.wordpress.org/sanchothefat">sanchothefat</a>、<a href="https://profiles.wordpress.org/scottbasgaard">Scott Basgaard</a>、<a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>、<a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>、<a href="https://profiles.wordpress.org/scribu">scribu</a>、<a href="https://profiles.wordpress.org/seanchayes">seanchayes</a>、<a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>、<a href="https://profiles.wordpress.org/shaunandrews">shaunandrews</a>、<a href="https://profiles.wordpress.org/designsimply">Sheri Bigelow (designsimply)</a>、<a href="https://profiles.wordpress.org/shinichin">ShinichiN</a>、<a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>、<a href="https://profiles.wordpress.org/siobhan">Siobhan</a>、<a href="https://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>、<a href="https://profiles.wordpress.org/sirbrillig">sirbrillig</a>、<a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>、<a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>、<a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>、<a href="https://profiles.wordpress.org/stevenkword">Steven Word</a>、<a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>、<a href="https://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>、<a href="https://profiles.wordpress.org/tmtoy">Takuma Morikawa</a>、<a href="https://profiles.wordpress.org/thomasguillot">Thomas Guillot</a>、<a href="https://profiles.wordpress.org/tierra">tierra</a>、<a href="https://profiles.wordpress.org/tillkruess">Till Kruss</a>、<a href="https://profiles.wordpress.org/tlamedia">TLA Media</a>、<a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>、<a href="https://profiles.wordpress.org/tommcfarlin">Tom McFarlin</a>、<a href="https://profiles.wordpress.org/taupecat">Tracy Rotton</a>、<a href="https://profiles.wordpress.org/trishasalas">trishasalas</a>、<a href="https://profiles.wordpress.org/mbmufffin">Tyler Smith</a>、<a href="https://profiles.wordpress.org/grapplerulrich">Ulrich</a>、<a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>、<a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>、<a href="https://profiles.wordpress.org/yonasy">yonasy</a>、和<a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>。也感谢<a href="http://benmorrison.org/">Ben Morrison</a>和<a href="http://christineswebb.com/">Christine Webb</a>制作的视频。</p>\n<p>感谢您选择WordPress,我们3.9见!</p>\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:48:"https://cn.wordpress.org/2013/12/13/parker/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:2:"57";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: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:27:"WordPress 3.7.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://cn.wordpress.org/2013/10/30/wordpress-3-7-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://cn.wordpress.org/2013/10/30/wordpress-3-7-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:"Wed, 30 Oct 2013 04:33: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: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:30:"http://cn.wordpress.org/?p=883";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:45:"WordPress 3.7.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:7:"jimmyxu";s: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:1563:"<p>WordPress 3.7.1现已可用!这个维护更新修正了WordPress 3.7中的11个bug,包括:</p>\n<ul>\n<li>有说明的图像可在可视化编辑器中正确显示。</li>\n<li>使得部分较旧或未得到妥善配置的服务器上的站点能够继续从WordPress.org检查更新。</li>\n<li>防止因部分插件过早地调用部分WordPress函数而造成的致命错误。</li>\n<li>修正了get_pages()中的层级排序、wp_list_categories()中的排除项、和以空值调用in_category()时的行为。</li>\n<li>修复了在搜索时可能出现的警告和一些其他提示。</li>\n</ul>\n<p>要查看全部修改,请参见<a href="https://core.trac.wordpress.org/query?milestone=3.7.1">工单列表</a>和<a href="https://core.trac.wordpress.org/log/branches/3.7?stop_rev=25914&amp;rev=25986">修改历史</a>。</p>\n<p>如果您已经是<a href="https://wordpress.org/download/counter/">近两百万</a>名WordPress 3.7用户中的一员,我们将会在未来几小时中为您<a href="https://cn.wordpress.org/2013/10/25/basie/">在后台自动更新</a>到WordPress 3.7.1。(当然,只是对于那些<a href="https://wordpress.org/plugins/background-update-tester/">支持自动更新</a>的站点。)</p>\n<p><a href="https://wordpress.org/wordpress-3.7.1.zip">下载WordPress 3.7.1</a>(<a href="https://cn.wordpress.org/wordpress-3.7.1-zh_CN.zip">简体中文版</a>)或到管理后台的“仪表盘”→“更新”来升级。</p>\n<p><em>Just a few fixes<br />\nYour new update attitude:<br />\nZero clicks given</em></p>\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://cn.wordpress.org/2013/10/30/wordpress-3-7-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:2:"48";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: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:24:"WordPress 3.7“Basie”";s: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://cn.wordpress.org/2013/10/25/basie/";s: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://cn.wordpress.org/2013/10/25/basie/#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, 25 Oct 2013 03:34: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:30:"http://cn.wordpress.org/?p=870";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:49:"WordPress 3.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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"jimmyxu";s: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:17476:"<p>WordPress 3.7简体中文版现已可<a href="https://cn.wordpress.org/wordpress-3.7-zh_CN.zip">下载</a>或在您的WordPress仪表盘中更新。为了纪念<a href="http://en.wikipedia.org/wiki/Count_basie">Count Basie</a>,我们将这个版本命名为”Basie”。这次更新包含了我们做出的一些重要架构更新,如:</p>\n<ul>\n<li><strong>在您睡觉时更新</strong>:在WordPress 3.7中,您不需要做任何事,系统就会自动为您完成维护和安全更新。大部分站点都已能于后台完成这些更新。我们为升级过程加入了许多检查和保护措施,使升级更加可靠和安全。</li>\n<li><strong>推广强密码</strong>:您的密码是您站点的第一道防线,请最好创建足够复杂、长和独一无二的密码。我们在WordPress 3.7中更新了密码强度指示条,以期发现更多会降低您密码的安全性的常见问题:日期、名字、按键序列(123456789)、甚至是流行文化。</li>\n<li><strong>更加全球化</strong>: 本地化的WordPress将会得到更新更完整的翻译。WordPress 3.7将能够自动安装正确的语言文件,并保证它们是最新的。这对WordPress全球数百万非英语用户来说是一件大好事。</li>\n</ul>\n<p>对开发者而言,有许多选项可用来控制新功能,比如可允许WordPress在有重大更新自动升级、更加精密的日期查询支持、和许多多站点相关的改进。和以前一样,如果您想知道更多,请参见<a href="https://codex.wordpress.org/Version_3.7">Codex</a>或浏览<a href="https://core.trac.wordpress.org/query?status=closed&amp;group=resolution&amp;milestone=3.7">超过400张已完成的工单</a>。</p>\n<h3>长江后浪</h3>\n<p>这次发布由Andrew Nacin领导,并得到了Dion Hulse和Jon Cave的支持。这是我们首次采用插件优先的开发模式,开发时间窗口也比以往更小。(3.6是在八月发布的。)预计会在十二月发布的3.8版本会继续走这条使道路,使得插件开发更独立,也能够让我们将功能开发和发布脱钩。您可以<a href="https://make.wordpress.org/core/">在make/core博客</a>跟进这个宏大实验,也可以了解我们从中学到的东西。这次发布得到了211位贡献者的支持:</p>\n<p><a href="https://profiles.wordpress.org/technosailor">Aaron Brazell</a>、<a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>、<a href="https://profiles.wordpress.org/aaronholbrook">Aaron Holbrook</a>、<a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>、<a href="https://profiles.wordpress.org/adamsilverstein">adamsilverstein</a>、<a href="https://profiles.wordpress.org/ahoereth">Alexander Hoereth</a>、<a href="https://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>、<a href="https://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>、<a href="https://profiles.wordpress.org/andg">andg</a>、<a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>、<a href="https://profiles.wordpress.org/norcross">Andrew Norcross</a>、<a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>、<a href="https://profiles.wordpress.org/andrewspittle">Andrew Spittle</a>、<a href="https://profiles.wordpress.org/askapache">askapache</a>、<a href="https://profiles.wordpress.org/atimmer">atimmer</a>、<a href="https://profiles.wordpress.org/barry">Barry</a>、<a href="https://profiles.wordpress.org/beaulebens">Beau Lebens</a>、<a href="https://profiles.wordpress.org/benmoody">ben.moody</a>、<a href="https://profiles.wordpress.org/bhengh">Ben Miller</a>、<a href="https://profiles.wordpress.org/neoxx">Bernhard Riedl</a>、<a href="https://profiles.wordpress.org/bftrick">BFTrick</a>、<a href="https://profiles.wordpress.org/bananastalktome">Billy (bananastalktome)</a>、<a href="https://profiles.wordpress.org/bmb">bmb</a>、<a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>、<a href="https://profiles.wordpress.org/brianhogg">brianhogg</a>、<a href="https://profiles.wordpress.org/rzen">Brian Richards</a>、<a href="https://profiles.wordpress.org/bpetty">Bryan Petty</a>、<a href="https://profiles.wordpress.org/carldanley">Carl Danley</a>、<a href="https://profiles.wordpress.org/charlesclarkson">CharlesClarkson</a>、<a href="https://profiles.wordpress.org/chipbennett">Chip Bennett</a>、<a href="https://profiles.wordpress.org/chouby">Chouby</a>、<a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>、<a href="https://profiles.wordpress.org/chrisrudzki">Chris Rudzki</a>、<a href="https://profiles.wordpress.org/aeg0125">coderaaron</a>、<a href="https://profiles.wordpress.org/coenjacobs">Coen Jacobs</a>、<a href="https://profiles.wordpress.org/crrobi01">Colin Robinson</a>、<a href="https://profiles.wordpress.org/andreasnrb">cyonite</a>、<a href="https://profiles.wordpress.org/daankortenbach">Daan Kortenbach</a>、<a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>、<a href="https://profiles.wordpress.org/convissor">Daniel Convissor</a>、<a href="https://profiles.wordpress.org/dartiss">dartiss</a>、<a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>、<a href="https://profiles.wordpress.org/csixty4">Dave Ross</a>、<a href="https://profiles.wordpress.org/davidjlaietta">David Laietta</a>、<a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>、<a href="https://profiles.wordpress.org/dllh">dllh</a>、<a href="https://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>、<a href="https://profiles.wordpress.org/dpash">dpash</a>、<a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>、<a href="https://profiles.wordpress.org/drprotocols">DrProtocols</a>、<a href="https://profiles.wordpress.org/dustyf">Dustin Filippini</a>、<a href="https://profiles.wordpress.org/dzver">dzver</a>、<a href="https://profiles.wordpress.org/cais">Edward Caissie</a>、<a href="https://profiles.wordpress.org/enej">enej</a>、<a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>、<a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>、<a href="https://profiles.wordpress.org/evansolomon">Evan Solomon</a>、<a href="https://profiles.wordpress.org/faishal">faishal</a>、<a href="https://profiles.wordpress.org/faison">Faison</a>、<a href="https://profiles.wordpress.org/foofy">Foofy</a>、<a href="https://profiles.wordpress.org/fjarrett">Frankie Jarrett</a>、<a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>、<a href="https://profiles.wordpress.org/garyc40">Gary Cao</a>、<a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>、<a href="https://profiles.wordpress.org/gayadesign">Gaya Kessler</a>、<a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>、<a href="https://profiles.wordpress.org/gizburdt">Gizburdt</a>、<a href="https://profiles.wordpress.org/goldenapples">goldenapples</a>、<a href="https://profiles.wordpress.org/gradyetc">gradyetc</a>、<a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>、<a href="https://profiles.wordpress.org/webord">Gustavo Bordoni</a>、<a href="https://profiles.wordpress.org/hakre">hakre</a>、<a href="https://profiles.wordpress.org/helen">Helen Hou-Sandi</a>、<a href="https://profiles.wordpress.org/iandunn">Ian Dunn</a>、<a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>、<a href="https://profiles.wordpress.org/creativeinfusion">itinerant</a>、<a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>、<a href="https://profiles.wordpress.org/jakubtyrcha">jakub.tyrcha</a>、<a href="https://profiles.wordpress.org/jamescollins">James Collins</a>、<a href="https://profiles.wordpress.org/jenmylo">Jen Mylo</a>、<a href="https://profiles.wordpress.org/buffler">Jeremy Buller</a>、<a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>、<a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>、<a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>、<a href="https://profiles.wordpress.org/jkudish">Joey Kudish</a>、<a href="https://profiles.wordpress.org/johnnyb">John Beales</a>、<a href="https://profiles.wordpress.org/johnbillion">John Blackbourn (johnbillion)</a>、<a href="https://profiles.wordpress.org/johnafish">John Fish</a>、<a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>、<a href="https://profiles.wordpress.org/johnpbloch">John P. Bloch</a>、<a href="https://profiles.wordpress.org/jond3r">Jonas Bolinder (jond3r)</a>、<a href="https://profiles.wordpress.org/jchristopher">Jonathan Christopher</a>、<a href="https://profiles.wordpress.org/desrosj">Jonathan Desrosiers</a>、<a href="https://profiles.wordpress.org/duck_">Jon Cave</a>、<a href="https://profiles.wordpress.org/jonlynch">Jon Lynch</a>、<a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>、<a href="https://profiles.wordpress.org/josephscott">Joseph Scott</a>、<a href="https://profiles.wordpress.org/betzster">Josh Betz</a>、<a href="https://profiles.wordpress.org/devesine">Justin de Vesine</a>、<a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>、<a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>、<a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>、<a href="https://profiles.wordpress.org/ketwaroo">Ketwaroo</a>、<a href="https://profiles.wordpress.org/kevinb">kevinB</a>、<a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>、<a href="https://profiles.wordpress.org/kitchin">kitchin</a>、<a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>、<a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>、<a href="https://profiles.wordpress.org/koopersmith">koopersmith</a>、<a href="https://profiles.wordpress.org/kurtpayne">Kurt Payne</a>、<a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>、<a href="https://profiles.wordpress.org/leewillis77">Lee Willis (leewillis77)</a>、<a href="https://profiles.wordpress.org/lessbloat">lessbloat</a>、<a href="https://profiles.wordpress.org/layotte">Lew Ayotte</a>、<a href="https://profiles.wordpress.org/lgedeon">Luke Gedeon</a>、<a href="https://profiles.wordpress.org/iworks">Marcin Pietrzak</a>、<a href="https://profiles.wordpress.org/cimmo">Marco Cimmino</a>、<a href="https://profiles.wordpress.org/marco_teethgrinder">Marco Galasso</a>、<a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>、<a href="https://profiles.wordpress.org/markmcwilliams">Mark McWilliams</a>、<a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>、<a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>、<a href="https://profiles.wordpress.org/tw2113">Michael Beckwith</a>、<a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>、<a href="https://profiles.wordpress.org/mikeschinkel">Mike Schinkel</a>、<a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>、<a href="https://profiles.wordpress.org/dimadin">Milan Dinic</a>、<a href="https://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>、<a href="https://profiles.wordpress.org/usermrpapa">Mr Papa</a>、<a href="https://profiles.wordpress.org/Nao">Naoko Takano</a>、<a href="https://profiles.wordpress.org/naomicbush">Naomi</a>、<a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>、<a href="https://profiles.wordpress.org/natejacobs">NateJacobs</a>、<a href="https://profiles.wordpress.org/nathanrice">nathanrice</a>、<a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>、<a href="https://profiles.wordpress.org/nickdaugherty">Nick Daugherty</a>、<a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>、<a href="https://profiles.wordpress.org/nickmomrik">Nick Momrik</a>、<a href="https://profiles.wordpress.org/nikv">Nikhil Vimal (NikV)</a>、<a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>、<a href="https://profiles.wordpress.org/noahsilverstein">noahsilverstein</a>、<a href="https://profiles.wordpress.org/nofearinc">nofearinc</a>、<a href="https://profiles.wordpress.org/nukaga">nukaga</a>、<a href="https://profiles.wordpress.org/nullvariable">nullvariable</a>、<a href="https://profiles.wordpress.org/butuzov">Oleg Butuzov</a>、<a href="https://profiles.wordpress.org/paolal">Paolo Belcastro</a>、<a href="https://profiles.wordpress.org/xparham">Parham</a>、<a href="https://profiles.wordpress.org/pbiron">Paul Biron</a>、<a href="https://profiles.wordpress.org/pauldewouters">Paul de Wouters</a>、<a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>、<a href="https://profiles.wordpress.org/peterjaap">peterjaap</a>、<a href="https://profiles.wordpress.org/westi">Peter Westwood</a>、<a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>、<a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>、<a href="https://profiles.wordpress.org/plocha">plocha</a>、<a href="https://profiles.wordpress.org/pollett">Pollett</a>、<a href="https://profiles.wordpress.org/ptahdunbar">Ptah Dunbar</a>、<a href="https://profiles.wordpress.org/ramiy">Rami Yushuvaev</a>、<a href="https://profiles.wordpress.org/rasheed">Rasheed Bydousi</a>、<a href="https://profiles.wordpress.org/raybernard">RayBernard</a>、<a href="https://profiles.wordpress.org/rboren">rboren</a>、<a href="https://profiles.wordpress.org/greuben">Reuben Gunday</a>、<a href="https://profiles.wordpress.org/rfair404">rfair404</a>、<a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>、<a href="https://profiles.wordpress.org/r3df">Rick Radko</a>、<a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>、<a href="https://profiles.wordpress.org/rdall">Robert Dall</a>、<a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>、<a href="https://profiles.wordpress.org/wpmuguru">Ron Rennick</a>、<a href="https://profiles.wordpress.org/rpattillo">rpattillo</a>、<a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>、<a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>、<a href="https://profiles.wordpress.org/hotchkissconsulting">Sam Hotchkiss</a>、<a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>、<a href="https://profiles.wordpress.org/scottsweb">scottsweb</a>、<a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>、<a href="https://profiles.wordpress.org/scribu">scribu</a>、<a href="https://profiles.wordpress.org/scruffian">scruffian</a>、<a href="https://profiles.wordpress.org/tenpura">Seisuke Kuraishi (tenpura)</a>、<a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>、<a href="https://profiles.wordpress.org/shinichin">ShinichiN</a>、<a href="https://profiles.wordpress.org/pross">Simon Prosser</a>、<a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>、<a href="https://profiles.wordpress.org/siobhan">Siobhan</a>、<a href="https://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>、<a href="https://profiles.wordpress.org/sirzooro">sirzooro</a>、<a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>、<a href="https://profiles.wordpress.org/sillybean">Stephanie Leary</a>、<a href="https://profiles.wordpress.org/netweb">Stephen Edgar (@netweb)</a>、<a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>、<a href="https://profiles.wordpress.org/strangerstudios">strangerstudios</a>、<a href="https://profiles.wordpress.org/sweetie089">sweetie089</a>、<a href="https://profiles.wordpress.org/swissspidy">swissspidy</a>、<a href="https://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>、<a href="https://profiles.wordpress.org/tmtoy">Takuma Morikawa</a>、<a href="https://profiles.wordpress.org/tlovett1">Taylor Lovett</a>、<a href="https://profiles.wordpress.org/tivnet">tivnet</a>、<a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>、<a href="https://profiles.wordpress.org/tomauger">Tom Auger</a>、<a href="https://profiles.wordpress.org/toscho">toscho</a>、<a href="https://profiles.wordpress.org/wpsmith">Travis Smith</a>、<a href="https://profiles.wordpress.org/sorich87">Ulrich Sossou</a>、<a href="https://profiles.wordpress.org/vericgar">vericgar</a>、<a href="https://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>、<a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>、<a href="https://profiles.wordpress.org/wikicms">wikicms</a>、<a href="https://profiles.wordpress.org/willnorris">Will Norris</a>、<a href="https://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>、<a href="https://profiles.wordpress.org/wycks">wycks</a>、<a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>、和<a href="https://profiles.wordpress.org/yurivictor">Yuri Victor</a>.</p>\n<p>请享受这为数不多的几次手动更新中的一次吧,我们3.8见!</p>\n<p><ins><strong>更新(2013-10-26)</strong>:昨日发布之版本中一处可能造成<code>theme-editor.php</code>产生警告的问题已被修复,如果您已经升级,您可在“更新”页面执行“现在重新安装”即可。对给您带来的不便诚致歉意。</ins></p>\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://cn.wordpress.org/2013/10/25/basie/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:2:"61";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:36:"WordPress 3.6.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://cn.wordpress.org/2013/09/12/wordpress-3-6-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://cn.wordpress.org/2013/09/12/wordpress-3-6-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, 12 Sep 2013 05:36: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: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:30:"http://cn.wordpress.org/?p=863";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:45:"WordPress 3.6.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:7:"jimmyxu";s: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:1846:"<p>在WordPress 3.6有了<a href="https://wordpress.org/download/counter/">近七百万次下载</a>之后,我们高兴地发布了3.6.1版。这个维护性更新修正3.6版中的<a href="https://core.trac.wordpress.org/query?status=closed&amp;group=resolution&amp;milestone=3.6.1">13个bug</a></p>\n<p><strong>WordPress 3.6.1也是对之前所有WordPress版本的安全修正</strong>,我们强烈推荐您升级您的站点。这次发布包含了我们的安全团队做出的三项修正:</p>\n<ul>\n<li>阻止一些情形中可能出现的不安全的PHP反序列化,这可能导致远程代码执行。由<a href="http://vagosec.org/" rel="nofollow">Tom Van Goethem</a>报告。</li>\n<li>防止&#8221;作者&#8221;用户通过一个特制的请求来创建“由其他用户创作”的文章。由<a href="http://anakornk.wordpress.com/" rel="nofollow">Anakorn Kyavatanakij</a>报告。</li>\n<li>修正了可能导致用户被重定向到引导到其他网站的一处输入验证不足。由Dave Cummo,Northrup Grumman的<a href="http://www.cdc.gov/" rel="nofollow">美国疾病控制和预防中心</a>分包商报告。</li>\n</ul>\n<p>此外,我们也调整了上传文件时的安全限制,来防止可能出现的跨站脚本。</p>\n<p>我们感谢这些问题被<a href="https://codex.wordpress.org/FAQ_Security">负责任地透漏</a>给我们的安全小组。要获取更多资讯,请参见<a href="https://codex.wordpress.org/Version_3.6.1">发布说明</a>或查阅<a href="https://core.trac.wordpress.org/log/branches/3.6?stop_rev=24972&amp;rev=25345">修改列表</a>。</p>\n<p><a href="https://wordpress.org/wordpress-3.6.1.zip">下载WordPress 3.6.1</a> (<a href="https://cn.wordpress.org/wordpress-3.6.1-zh_CN.zip">简体中文版</a>)或到管理后台的“仪表盘”→“更新”来升级。</p>\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://cn.wordpress.org/2013/09/12/wordpress-3-6-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:2:"57";s: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://cn.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:"Fri, 23 Jan 2015 06:33: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:10:"x-pingback";s:34:"http://cn.wordpress.org/xmlrpc.php";s:13:"last-modified";s:29:"Wed, 24 Dec 2014 08:15:43 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130911040210";}', 'no');
INSERT INTO `zty_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(161, '_transient_timeout_feed_mod_7d1d7866a17d17cf5f79e1f075b87a31', '1422038036', 'no'),
(162, '_transient_feed_mod_7d1d7866a17d17cf5f79e1f075b87a31', '1421994836', 'no'),
(163, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1422038039', 'no');
INSERT INTO `zty_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(164, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '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:61:"\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\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:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s: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:28:"http://planet.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:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s: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:47:"WordPress Planet - http://planet.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:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\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:"WPTavern: New French Theme Shop Hexagone Launches with Free and Commercial WordPress Themes";s: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:28:"http://wptavern.com/?p=37748";s: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:101:"http://wptavern.com/new-french-theme-shop-hexagone-launches-with-free-and-commercial-wordpress-themes";s: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:3087:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/hexagone-themes.jpg" rel="prettyphoto[37748]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/hexagone-themes.jpg?resize=1025%2C309" alt="hexagone-themes" class="aligncenter size-full wp-image-37761" /></a></p>\n<p>Earlier this week, <a href="http://wptheming.com/" target="_blank">WP Theming</a>&#8216;s Devin Price <a href="http://wptheming.com/2015/01/announcing-hexagone/" target="_blank">announced</a> a partnership with French translation specialist <a href="https://twitter.com/fxbenard" target="_blank">Fx Benard</a> on a new theme shop aimed at the French-speaking WordPress community. <a href="https://hexagone.io/" target="_blank">Hexagone</a> is now open for business with four <a href="https://hexagone.io/boutique/" target="_blank">products</a> available &#8211; two commercial themes and two free themes.</p>\n<p>The duo plan to expand to offer more &#8220;products, support, content, and documentation in the language of Molière.&#8221; Price joined forces with Bernard after successfully working with him on translation workflows and French translations for DevPress themes. The shop&#8217;s name is derived from &#8220;l’Hexagone,&#8221; which is often used to describe France&#8217;s geographical shape.</p>\n<p>Price and Bernard are aiming to make Hexagone the leading source for WordPress themes and tutorials in French. &#8220;There aren&#8217;t too many companies in this space yet, and we’re hoping a great company that’s devoted to the ideals of open-source can do well,&#8221; he said. <strong>&#8220;There&#8217;s 75 million native speakers of French and about 338 million total.&#8221;</strong></p>\n<p>While the vast majority of theme shops conduct business and support in English, the number of non-English speaking WordPress users is on the rise. Hexagone&#8217;s founders believe that the market is ripe for a theme shop that can provide French language-specific products, documentation, articles, and support. &#8220;If it takes off, we’d love to hire some writers and developers to work with us full-time,&#8221; Price said.</p>\n<p>Hexagone <a href="http://wptheming.com/2015/01/selling-products-with-wordpress/" target="_blank">published</a> a detailed writeup of the technologies used to build the online storefront. The site is powered by Easy Digital Downloads, Stripe, Gravity Forms, and their <a href="https://hexagone.io/boutique/reunion/" target="_blank">Reunion</a> theme. The article offers insight on the different types of plugins and technologies useful for selling digital products with WordPress.</p>\n<p>If Hexagone is successful, it will demonstrate that there is room in the wide world of WordPress themes for more language-niche theme shops. WordPress&#8217; continued international success depends on the ability for non-English speakers to be able to find documentation and support in their own native languages. <a href="https://hexagone.io/" target="_blank">Hexagone</a> is setting out to prove that the French market is ready for it.</p>";s: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, 22 Jan 2015 21:49: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:27:"Matt: Scaling PAPER for Kim";s: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:21:"http://ma.tt/?p=44619";s: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:43:"http://ma.tt/2015/01/scaling-paper-for-kim/";s: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:615:"<p>I always like reading <a href="http://www.ftrain.com/">Paul Ford&#8217;s writing</a>, and this one about <a href="https://medium.com/message/how-paper-magazines-web-engineers-scaled-kim-kardashians-back-end-sfw-6367f8d37688">How PAPER Magazine’s web engineers scaled Kim Kardashian’s back-end (SFW)</a> is funny and accessible. I learned that people still use Movable Type. Also if PAPER used <a href="http://vip.wordpress.com/">VIP</a>, the story would be short and boring:</p>\n<ol>\n<li>Wake up, press the publish button.</li>\n<li>Watch the stats go crazy. Sip some bourbon.</li>\n<li>Go to sleep.</li>\n</ol>";s: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, 22 Jan 2015 21:02: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:"WPTavern: HeroPress Launches Kickstarter Campaign to Highlight WordPress Developers";s: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:28:"http://wptavern.com/?p=37724";s: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:93:"http://wptavern.com/heropress-launches-kickstarter-campaign-to-highlight-wordpress-developers";s: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:3349:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/heropress.jpg" rel="prettyphoto[37724]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/heropress.jpg?resize=956%2C423" alt="heropress" class="aligncenter size-full wp-image-37733" /></a></p>\n<p><a href="http://heropress.com/" target="_blank">HeroPress</a> is a new WordPress community initiative with a <a href="https://www.kickstarter.com/projects/heropress/heropress-developing-the-wordpress-heroes-of-the-w" target="_blank">Kickstarter campaign</a>, created by Topher DeRosia, a developer for XWP. Its mission is to &#8220;develop the WordPress heroes of the world by sharing the accumulated wisdom of the community.&#8221;</p>\n<p>While looking for a way to give back to the WordPress community, DeRosia spoke with hundreds of people, many of whom live in different time zones around the world.</p>\n<p>&#8220;I began to notice a common problem,&#8221; he said. &#8220;Many of them felt disconnected from the greater WordPress community &#8211; the Western WordPress community. For some it was a language issue, for others location, and still others simply not understanding culture.&#8221;</p>\n<p>The initiative&#8217;s $60K AUD (~$48,000 USD) Kickstarter goal is intended to fund video production, branding, and marketing for DeRosia and his team to film six episodes, spotlighting WordPress developers.</p>\n<p>&#8220;These presentations will share the wisdom these WordPress Heroes have acquired through their successes and failures with one goal in mind: to provide information, insight, and inspiration to WordPress developers all around the world that will help them become WordPress Heroes,&#8221; DeRosia writes in the campaign description.</p>\n<p>Turning developers into &#8220;WordPress heroes&#8221; is a rather nebulous goal that may not easily catch on with the general community. However, the fact that international WordPress developers feel disconnected is a real issue that could use more attention.</p>\n<p>Many WordPress professionals who would like to attend some of the larger community events are denied visas or unable to afford the expense. Cultural misunderstandings across borders are quite common in the community, which is growing fastest in the non-English speaking world.</p>\n<p>This initiative recognizes a real problem, but the marketing and approach could use some additional refining. HeroPress has already received sharp criticism from one of WordPress&#8217; lead developers for its male-only speaker lineup and use of the term &#8220;hero:&#8221;</p>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/pippinsplugins">@pippinsplugins</a> unambiguous hero worship in an open source community (and of six males) doesn''t seem like much of an achievement.</p>\n<p>&mdash; Andrew Nacin (@nacin) <a href="https://twitter.com/nacin/status/558347928977145856">January 22, 2015</a></p></blockquote>\n<p></p>\n<p>DeRosia has a passion for mentoring people and hopes to encourage developers around the world by highlighting their work and expertise. It&#8217;s not yet clear whether video production to highlight &#8220;heroes&#8221; will resonate with the WordPress community, but the campaign has already received $8,565 AUD of its $60K goal. DeRosia has 24 days remaining to get HeroPress fully funded.</p>";s: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, 22 Jan 2015 20:07: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:"WPTavern: High Risk Security Vulnerability Discovered and Patched in Pagelines and Platform Themes";s: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:28:"http://wptavern.com/?p=37702";s: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:108:"http://wptavern.com/high-risk-security-vulnerability-discovered-and-patched-in-pagelines-and-platform-themes";s: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:3131:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/pagelines.jpg" rel="prettyphoto[37702]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/pagelines.jpg?resize=1000%2C450" alt="pagelines" class="aligncenter size-full wp-image-37721" /></a></p>\n<p>The <a href="https://wordpress.org/themes/pagelines" target="_blank">PageLines</a> and <a href="https://wordpress.org/themes/platform" target="_blank">Platform</a> drag-and-drop themes for WordPress have recently been patched for a privilege escalation vulnerability and a remote code execution issue discovered by Sucuri during a routine audit. Sucuri is classifying the vulnerabilities as high risk, with a <a href="http://en.wikipedia.org/wiki/DREAD:_Risk_assessment_model" target="_blank">DREAD</a> score of 9/10, and recommends that users update their copies of the themes as soon as possible.</p>\n<p>The privilege escalation vulnerability is present in both themes, where a WordPress AJAX hook is used to modify a set of options. &#8220;Because all wp_ajax_ hooks are usable by any logged-in users (no matter what privileges they have on the target site), a subscribed user could use this hook to overwrite any options located on WordPress options database table,&#8221; Sucuri explained in the <a href="http://blog.sucuri.net/2015/01/security-advisory-vulnerabilities-in-pagelinesplatform-theme-for-wordpress.html" target="_blank">advisory</a>.</p>\n<p>This makes it possible for an attacker to grant all new users the administrator role. However, a user&#8217;s site must be open for registration in order for this kind of attack to be successful.</p>\n<p>The free versions of these themes have been downloaded from WordPress.org more than half a million times apiece, so there are likely to be thousands of WordPress users who could potentially be affected. Fortunately, a patch is already available. The WordPress Theme Review team worked quickly to fast-track the two patched versions of the themes, so anyone who has them installed will see an update notice in the WordPress admin. Users who purchased the commercial versions will also see an update available.</p>\n<p>If you are currently unable or unwilling to update, a plugin is available that will block exploits for the legacy themes. You can <a href="https://gist.github.com/Pross/769de6e9219705041c67">download it from GitHub</a> and install it like any other plugin if you need a quick fix to buy you time to update.</p>\n<p>&#8220;To clarify, this is ONLY in legacy version of these two PageLines products (Framework and Platform),&#8221; PageLines founder Andrew Powers commented on the advisory. &#8220;Since this was first reported to us three days ago, we&#8217;ve immediately patched those files and updated them on WordPress.org, GitHub and anywhere on PageLines servers.&#8221;</p>\n<p>So far, Powers has no knowledge of the issue having been exploited. The fact that the danger is limited to sites with open registration should also cut down on the number of vulnerable sites. Now that the security issue is public, it&#8217;s imperative that users update immediately.</p>";s: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, 22 Jan 2015 19:07: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:20:"Matt: New Simplenote";s: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:21:"http://ma.tt/?p=44613";s: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:36:"http://ma.tt/2015/01/new-simplenote/";s: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:425:"<p><a href="http://simplenote.com/2015/01/21/new-simplenote-app-updates-for-ios-android-and-mac/">New Simplenote App Updates for iOS, Android, and Mac</a>, some nice iterations. <ins datetime="2015-01-22T18:30:50+00:00">Update: Simplenote for Android was <a href="http://www.theverge.com/2015/1/22/7871293/best-material-design-android-apps">just highlighted by The Verge as one of the best Material design apps</a>.</ins></p>";s: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, 22 Jan 2015 00:27: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:43:"WPTavern: Drew Jaynes to Lead WordPress 4.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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37669";s: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:"http://wptavern.com/drew-jaynes-to-lead-wordpress-4-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2490:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/drew-jaynes.jpg" rel="prettyphoto[37669]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/drew-jaynes.jpg?resize=256%2C256" alt="photo credit: 10up" class="size-full wp-image-37692" /></a>photo credit: <a href="http://10up.com/about/#employee-drew-jaynes">10up</a>\n<p>WordPress 4.2 development officially kicked off today at the regularly scheduled core development meeting. Andrew Nacin announced that 10up engineer <a href="http://werdswords.com/" target="_blank">Drew Jaynes</a> will be leading the release.</p>\n<p>Jaynes, who has contributed to every major release since 3.3, recently led the initiative to create inline documentation for every hook in WordPress. He will be accompanied by Scott Taylor, who will help guide core feature plugin development for the media and image efforts that will be in motion throughout 2015.</p>\n<p>The WordPress core team is planning three releases this year. &#8220;At the moment, that looks like one in April, one in August, and one in early December,&#8221; Nacin said. He anticipates that the WP REST API will see the light of day in 4.3 or 4.4, due later this year.</p>\n<p>Jaynes opened the meeting with discussion on <a href="https://wordpress.slack.com/archives/core/p1421875969001302" target="_blank">possible candidates for features in 4.2</a>, which are likely to include <a href="https://wordpress.org/plugins/press-this/" target="_blank">Press This</a>, <a href="https://wordpress.org/plugins/customizer-theme-switcher/" target="_blank">Theme Switcher</a>, and <a href="https://core.trac.wordpress.org/ticket/29820" target="_blank">Shiny Updates</a> (smoother installation and updating of plugins and themes). The merge deadline for feature plugins is approximately two weeks away.</p>\n<p>&#8220;In addition to feature plugins, I&#8217;d like the general focus to be on polishing up some of our existing UIs in terms of mobile and accessibility wherever we can,&#8221; Jaynes said. &#8220;Seems like there&#8217;s tickets hanging out there we could get some wins on.&#8221;</p>\n<p>A 4.1.1 maintenance release is on its way this week or possibly early next week. The <a href="https://make.wordpress.org/core/version-4-2-project-schedule/" target="_blank">4.2 project schedule</a> is now updated with tentative dates for the release. The team is targeting April 8th for the official release, with the first beta planned for the week of February 25th.</p>";s: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 2015 22:35: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:"WPTavern: How to Set Up a WordPress Development Site with Codio’s Free Cloud-Based IDE";s: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:28:"http://wptavern.com/?p=37626";s: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:95:"http://wptavern.com/how-to-set-up-a-wordpress-development-site-with-codios-free-cloud-based-ide";s: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:7395:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-new-logo.jpg" rel="prettyphoto[37626]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-new-logo.jpg?resize=1020%2C469" alt="codio-new-logo" class="aligncenter size-full wp-image-37640" /></a></p>\n<p><a href="https://codio.com/" target="_blank">Codio</a> is a cloud-based IDE that is primarily used in the education sector but is also available to developer professionals. The service provides instant coding environments with support for code editing and a large array of popular programming languages and software components.</p>\n<p>By making the IDE available to users through the browser, Codio eliminates the hassle that educators experience when setting up development environments for students. Projects created in Codio are accessible both in the classroom and at home, which helps students continue their learning outside of the classroom.</p>\n<p>Codio offers a <a href="https://codio.com/pricing/" target="_blank">free account</a> that gives you 256 MB memory per project and 2 GB storage per project. Other pricing tiers cater to teachers, students, schools, universities, and professionals. However, the free account is perfect for creating a quick development site with WordPress, and you can set it up in under five minutes.</p>\n<h2>Step 1: Create a New Project</h2>\n<p>After creating an account with Codio, you&#8217;ll be greeted with a prompt to create a new project. Click through to get started with a new project that will contain your development environment.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-projects-screen.png" rel="prettyphoto[37626]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-projects-screen.png?resize=1025%2C812" alt="codio-projects-screen" class="aligncenter size-full wp-image-37632" /></a></p>\n<p>You&#8217;ll now have the opportunity to choose from three different starting points: an empty project, a starter pack, or a GitHub import. Select &#8220;a starter pack.&#8221;</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-create-project.png" rel="prettyphoto[37626]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-create-project.png?resize=1025%2C724" alt="codio-create-project" class="aligncenter size-full wp-image-37631" /></a></p>\n<p>This will take you to a page that lists all of Codio&#8217;s certified starter packs, which help you easily get started with technologies like Angular, Node + Express, Drupal, Ruby on Rails, and more. There are a dozen starter packs that are certified and supported by the Codio team.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-starter-packs.png" rel="prettyphoto[37626]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-starter-packs.png?resize=1025%2C724" alt="codio-starter-packs" class="aligncenter size-full wp-image-37633" /></a></p>\n<p>Fortunately, there&#8217;s a starter pack for WordPress that will automatically set up MySQL, Apache, and PHP. This makes the setup process quick and hassle-free, and you&#8217;ll be using the latest version of WordPress in just a couple minutes.</p>\n<p>After you select the WordPress starter pack, you&#8217;ll be returned to the project page. Free accounts are limited to public visibility on projects, so you may need to upgrade to the Pro plan if you require private projects.</p>\n<h2>Step 2: Configure WordPress</h2>\n<p>After you complete the project setup, you&#8217;ll be dumped out onto the readme file for your project where you&#8217;ll find instructions for configuring and installing WordPress. If you&#8217;re bothered by non-capital P&#8217;s in WordPress, steady your nerves and remember that someone made this for you to use for free.</p>\n<p>Navigate to &#8220;Configure Project&#8221; in the top menu and then follow the instructions in the terminal to run the configuration script. When prompted for your password, press Enter. This is the only action you need to take during the process.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-configure-project.png" rel="prettyphoto[37626]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-configure-project.png?resize=1025%2C534" alt="codio-configure-project" class="aligncenter size-full wp-image-37630" /></a></p>\n<h2>Step 3: Install WordPress</h2>\n<p>Once configuration is complete, navigate to &#8220;WordPress Login&#8221; in the top menu. This will take you through the normal installation process.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-wordpress-install.png" rel="prettyphoto[37626]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-wordpress-install.png?resize=1025%2C658" alt="codio-wordpress-install" class="aligncenter size-full wp-image-37635" /></a></p>\n<p>Now you should be able to log in at the following URL:</p>\n<p><code>http://theory-opera.codio.io:3000/wordpress/wp-admin/</code></p>\n<h2>Step 4: Activate the Permalink Fix &#038; Disable Canonical Redirects Pack Plugin</h2>\n<p>Once you&#8217;re in, the last required step is to go straight to plugins and activate the <a href="https://wordpress.org/plugins/permalink-fix-disable-canonical-redirects-pack/" target="_blank">Permalink Fix &amp; Disable Canonical Redirects Pack</a> plugin, which you&#8217;ll find pre-installed. Visit the front end like you normally would and you&#8217;ll see your shiny new WordPress site.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-wordpress-frontend.png" rel="prettyphoto[37626]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/codio-wordpress-frontend.png?resize=1025%2C569" alt="codio-wordpress-frontend" class="aligncenter size-full wp-image-37634" /></a></p>\n<p>The URL for your site will look something like this:</p>\n<p><code>http://theory-opera.codio.io:3000/wordpress/</code></p>\n<p>Within the Codio interface you can easily edit WordPress core, theme, and plugin files, as well as upload new files. If you have WordPress projects hosted on GitHub, you can easily import those into Codio to make changes and push those changes back to the repository.</p>\n<p>The cloud-based IDE is very similar to using <a href="http://wptavern.com/wordpress-in-the-cloud-how-to-set-up-a-development-site-with-koding" target="_blank">WordPress on Koding</a> in many respects, and I found it equally easy to set up on both services. Both provide a quick way to do some testing, without having to set up a development environment on your local machine. If you decide to experiment and break everything, it&#8217;s safe and easy to start over. Codio&#8217;s friendly environment provides a great way to get your friends or children started with using WordPress.</p>\n<p>Since Codio was developed with educators in mind, the dashboard has a handful of helpful tutorials for learning about Git, an introduction to HTML and CSS, and an introduction Javascript. If one of your 2015 resolutions is to get started learning some technologies outside of WordPress, such as Ruby, Python, or Angular, <a href="https://codio.com" target="_blank">Codio</a> is a great option for getting development environments up and running so that you can start learning right away.</p>";s: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 2015 21:21:08 +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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:70:"Post Status: Let’s Grow: Introducing the Post Status Membership Club";s: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:30:"https://poststatus.com/?p=7492";s: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:33:"https://poststatus.com/lets-grow/";s: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:3982:"<p>I&#8217;m overjoyed to share this with you. The <a href="https://poststatus.com/club">Membership Club</a> is open, and on the site&#8217;s two-year anniverary to boot.</p>\n<p>I can&#8217;t wait to share this journey with you.</p>\n<p>The link above is a complete features page where you can see what you&#8217;ll get, as well as choose between a $99 Club Membership or $365 Patron Membership. Both memberships are annual. You pay once, and you get great stuff for a year.</p>\n<p>This wouldn&#8217;t be possible without the terrific partners that are supporting me. Each of these twelve companies has invested hard-earned money into Post Status, and I&#8217;m so thankful.</p>\n<p>They&#8217;ve all committed for a full year. Here they are, in alphabetical order:</p>\n<ul>\n<li><a href="https://genesisdesignpro.com/">Design Palette Pro</a></li>\n<li><a href="http://gravityforms.com">Gravity Forms</a></li>\n<li><a href="http://ithemes.com">iThemes</a></li>\n<li><a href="http://optinmonster.com">OptinMonster</a></li>\n<li><a href="http://pippinsplugins.com">Pippin’s Plugins</a></li>\n<li><a href="http://thethemefoundry.com">The Theme Foundry</a></li>\n<li><a href="http://wp101.com">WP101</a></li>\n<li><a href="http://woothemes.com">WooThemes</a></li>\n<li><a href="https://deliciousbrains.com/">WP Migrate DB Pro</a></li>\n<li><a href="http://wpsitecare.com">WP Site Care</a></li>\n<li><a href="http://thewpvalet.com">WP Valet</a></li>\n<li><a href="http://yoast.com">Yoast</a></li>\n</ul>\n<p>Please check out the <a href="https://poststatus.com/partners">Partners page</a>. Some of them also have their profiles already on the <a href="https://poststatus.com/organizations">Organizations</a> directory as well.</p>\n<p>For those of you that register, you&#8217;ll be able to create a <a href="https://poststatus.com/profiles">Profile</a> of your own. Though it might be a couple weeks before the submissions process is totally fleshed out.</p>\n<p>Profiles and organizations will also be linked from future blog posts, making finding great content and information about those within the WordPress ecosystem easier than ever.</p>\n<p>The Post Status Notes newsletter will begin Monday after PressNomics, where I&#8217;m headed today. I&#8217;ll be publishing there between now and then, but the email starts Monday. Those of you who buy a membership and login can of course see it immediately. The notes I published before today are still visible with direct links as well.</p>\n<p>The resources section is coming soon. I couldn&#8217;t squeeze everything I wanted to do into the initial launch, but I am launching on time.</p>\n<p>There&#8217;s a job board coming as well.</p>\n<p>Finally, most of the partners have deals that they&#8217;re going to share with members. We&#8217;ll get those gathered up and in a central spot on the member side of the site real soon.</p>\n<p>For companies that aren&#8217;t partners but want to be involved, consider the job board and the Patron memberships your opportunity to show support for the site.</p>\n<p>Thank you, everyone, for your support and for making this site possible. This is definitely an alpha version of what I want Post Status to be, but I&#8217;m so proud of what I&#8217;ve been able to make live so far, and I&#8217;m thrilled that this gets to be what I do every day.</p>\n<p>For those of you on the fence about whether this is a good value: I know what you mean. It&#8217;s a newsletter, some resources, and some deals. It&#8217;s $99. Not cheap (but not too expensive either).</p>\n<p><strong>I promise you this:</strong> I will work harder than ever to build out the available resources and offer you content and insight you can&#8217;t find anywhere else. That&#8217;s my pledge.</p>\n<p>I&#8217;ve been writing about WordPress for coming on five years, and I am in it for the long haul. I hope you all will join me, so that we can grow together.</p>\n<p>Now, go check out the <a href="https://poststatus.com/club">Club page</a>.</p>";s: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 2015 20:21: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";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:13:"\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:"Matt: Where dreams go";s: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:37:"http://ma.tt/2015/01/where-dreams-go/";s: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:37:"http://ma.tt/2015/01/where-dreams-go/";s: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:263:"<blockquote><p>Within your heart keep one still, secret spot where dreams may go, and sheltered so, may thrive and grow where doubt and fear are not. Oh, keep a place within your heart, for little dreams to go.</p></blockquote>\n<p>&#8212;&nbsp;Louise Driscoll</p>";s: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 2015 05:46: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:72:"WPTavern: Archive WordPress Content with the Archived Post Status 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37591";s: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:82:"http://wptavern.com/archive-wordpress-content-with-the-archived-post-status-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5260:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/archived-post-status.jpg" rel="prettyphoto[37591]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/archived-post-status.jpg?resize=772%2C310" alt="archived-post-status" class="aligncenter size-full wp-image-37597" /></a></p>\n<p>WordPress plugin developer <a href="http://frankiejarrett.com/" target="_blank">Frankie Jarrett</a> has been on a roll this month, pumping out plugin releases on WordPress.org. Last year, Jarrett <a href="http://frankiejarrett.com/parting-ways-churchthemes-net-looking-ahead-toward-brighter-future/" target="_blank">sold ChurchThemes.net to Lift</a> co-founders Chris Wallace and Brad Miller. Since that time he has been focusing on product development for <a href="https://wp-stream.com/" target="_blank">WP Stream</a>, which has allowed him a few extra minutes to create some free extensions for WordPress.</p>\n<p>At the end of December and in early January, he released five small but highly useful plugins:</p>\n<ul>\n<li><a href="https://wordpress.org/plugins/compact-view-mode/" target="_blank">Compact View Mode</a></li>\n<li><a href="https://wordpress.org/plugins/user-session-control/" target="_blank">User Session Control</a></li>\n<li><a href="https://wordpress.org/plugins/prevent-concurrent-logins/" target="_blank">Prevent Concurrent Logins</a></li>\n<li><a href="https://wordpress.org/plugins/json-rest-api-force-ssl/" target="_blank">JSON REST API Force SSL</a></li>\n<li><a href="https://wordpress.org/plugins/archived-post-status/" target="_blank">Archived Post Status</a></li>\n</ul>\n<p>Several of his latest creations are handy for membership sites and web applications. <a href="https://wordpress.org/plugins/archived-post-status/" target="_blank">Archived Post Status</a> caught my eye, because adds more flexibility for using WordPress as a CMS. The plugin adds a new post status that enables posts and pages to be archived. This effectively allows you to unpublish content without having to send it back to draft status.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/archived-post-status-dropdown.png" rel="prettyphoto[37591]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/archived-post-status-dropdown.png?resize=600%2C400" alt="archived-post-status-dropdown" class="aligncenter size-full wp-image-37611" /></a></p>\n<p>WordPress&#8217; default <a href="http://codex.wordpress.org/Post_Status" target="_blank">post statuses</a> currently work very much like an on/off switch as far as a finished post is concerned. Of the eight default statuses, Published is the only one that is public, while all the rest remain behind the curtain in various states of unreadiness. None of the statuses, apart from Published, adequately indicate that a post is complete or finished.</p>\n<p>Fortunately, WordPress makes it possible for developers to register their own <a href="http://codex.wordpress.org/Post_Status#Custom_Status" target="_blank">custom post statuses</a>, which is what Jarrett did with this plugin. He created it for sites where content is not always meant to be evergreen. It allows you to archive posts in the same way that you might archive email.</p>\n<p>Archived Post Status is compatible with posts, pages, and custom post types, giving you a wide array of possible use cases:</p>\n<ul>\n<li>Archive pages or posts from a conference or event for editing and re-use next year</li>\n<li>Archive real estate listings for records</li>\n<li>Cycle portfolio content in and out of the site as necessary</li>\n<li>Temporarily remove listings from a site that indexes businesses or organizations</li>\n<li>Archive products to bring back for future use</li>\n</ul>\n<p>While custom post types seem to be one of the most likely uses for this plugin, you may not want to have the archived status available to all post types. Jarrett includes a <a href="https://wordpress.org/plugins/archived-post-status/faq/" target="_blank">filter</a> that allows you to exclude the Archived status from appearing on certain post types.</p>\n<p>Some might be wondering why you wouldn&#8217;t use the Draft status, since the Archived post status essentially puts a post in the same state. To use drafts in this way would be to split its purpose into multiple uses, which are not clearly separated when sorting. If you are looking for previously published content that is complete, while hunting through all drafts in progress, you have to be fully knowledgeable of all the content on the site and use your memory to do the sorting. The archived status keeps everything nicely sorted for future use.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/archived-posts-list-screen.png" rel="prettyphoto[37591]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/archived-posts-list-screen.png?resize=600%2C400" alt="archived-posts-list-screen" class="aligncenter size-full wp-image-37614" /></a></p>\n<p>If you need a non-public archive of completed posts, this simple plugin will do the trick. I tested it and works exactly as advertised. Download <a href="https://wordpress.org/plugins/archived-post-status/" target="_blank">Archived Post Status</a> from WordPress.org.</p>";s: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 2015 01:29:43 +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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:73:"WPTavern: Modern: A Beautiful Free Blog and Portfolio Theme 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37303";s: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:82:"http://wptavern.com/modern-a-beautiful-free-blog-and-portfolio-theme-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4293:"<p>In just one week since its release, the new <a href="https://wordpress.org/themes/modern" target="_blank">Modern</a> theme was downloaded nearly 2,700 times from WordPress.org. It was created by <a href="http://www.webmandesign.eu/" target="_blank">WebMan Design</a>, a Slovakia-based company founded by Oliver Juhas. WebMan Design has been selling WordPress themes across multiple marketplaces since 2012 and recently began focusing on producing future-proof themes that meet WordPress.org standards.</p>\n<p>Modern is the company&#8217;s second free theme on WordPress.org, following the <a href="https://wordpress.org/themes/mustang-lite" target="_blank">Mustang Lite</a> business theme released last year. It was designed for personal and small business portfolios.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/modern.jpg" rel="prettyphoto[37303]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/modern.jpg?resize=880%2C660" alt="modern" class="aligncenter size-full wp-image-37554" /></a></p>\n<p>Modern&#8217;s bold style incorporates a fullscreen header slideshow that is perfect for showcasing large images with header text. The homepage features your latest blog posts along with an optional sortable portfolio section. The header includes two menu locations for the primary navigation and the social links menu.</p>\n<p>All of the customization options for the theme are built into WordPress&#8217; native customizer, including the following:</p>\n<ul>\n<li>Add your own 1920 × 1080 header image</li>\n<li>Footer widget area</li>\n<li>Color picker to set background color, text color, accent color, and accent text color</li>\n<li>Customize predefined texts on the homepage</li>\n<li>Typography options for setting logo font, heading font, general text font, font subset, basic font size</li>\n</ul>\n<p>Modern offers unique styles for each of WordPress&#8217; default <a href="http://codex.wordpress.org/Post_Formats" target="_blank">post formats</a>. The demo&#8217;s <a href="http://themedemos.webmandesign.eu/modern/style-guide/" target="_blank">style guide</a> page shows that the theme author took many of the smaller details into consideration, including code formatting, blockquotes, lists, table styles, highlighted text style, image alignment, Jetpack Mosaic galleries and more.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/post-formats.jpg" rel="prettyphoto[37303]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/post-formats.jpg?resize=1025%2C617" alt="post-formats" class="aligncenter size-full wp-image-37575" /></a></p>\n<p>The heart icons you see in the single post meta are powered by the free <a href="http://www.themezilla.com/plugins/zillalikes" target="_blank">ZillaLikes plugin</a> from ThemeZilla. Modern includes support for Jetpack to manage the portfolio posts, logo image, and uses its featured content module to power the homepage banner. It also includes support for <a href="http://schema.org/" target="_blank">Schema.org</a> markup and <a href="https://github.com/zamoose/themehookalliance" target="_blank">Theme Hook Alliance</a> action hooks.</p>\n<p>WebMan Design developed the theme with performance in mind and links to <a href="http://tools.pingdom.com/fpt/#!/bHfVKJ/http://themedemos.webmandesign.eu/modern/" target="_blank">Pingdom</a> results of load tests for the demo site. The demo site takes 1.73s to load and gets a 94/100 performance grade.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/theme-demo-performance.jpg" rel="prettyphoto[37303]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/theme-demo-performance.jpg?resize=631%2C235" alt="theme-demo-performance" class="aligncenter size-full wp-image-37567" /></a></p>\n<p>Check out a <a href="http://themedemos.webmandesign.eu/modern/" target="_blank">live demo</a> of the Modern theme in action. WebMan Design has created extensive <a href="http://www.webmandesign.eu/manual/modern/" target="_blank">documentation</a> for the theme, its various styles, and available third-party plugin integrations. <a href="https://wordpress.org/themes/modern" target="_blank">Modern</a> is available for download from WordPress.org or via your admin themes browser.</p>";s: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:"Tue, 20 Jan 2015 21:37: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:"WPTavern: Calling People Out in the WordPress 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:28:"http://wptavern.com/?p=37545";s: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:65:"http://wptavern.com/calling-people-out-in-the-wordpress-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3289:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/NameandShameFeaturedImage.png" rel="prettyphoto[37545]"><img class="size-full wp-image-37564" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/NameandShameFeaturedImage.png?resize=638%2C288" alt="Name and Shame Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/66662429@N07/8065770370/">Adarsh A</a> &#8211; <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>The founder of <a title="http://www.wpsitecare.com/" href="http://www.wpsitecare.com/">WP Site Care</a>, Ryan Sullivan, <a title="http://www.ryandsullivan.com/negative-seo/" href="http://www.ryandsullivan.com/negative-seo/">explains </a>how a negative SEO campaign nearly took his business offline. Sullivan shares details behind the attack, how it affected the bottom line, and says it was someone in the WordPress community who orchestrated the attack.</p>\n<blockquote><p>Using some sophisticated techniques we were able to trace back to the source of the spam attack and unfortunately found out that the attack was started by someone within the WordPress community.</p>\n<p>They did everything through a third-party, an internet hitman of sorts, to try to cover their tracks, but they weren’t quite careful enough and we were able to uncover where everything started.</p></blockquote>\n<p>Instead of naming the individual, Sullivan left a message aimed specifically at the person responsible, &#8220;The only reason I even mention it is so that hopefully, that person reads this, and knows that what they’re doing is impacting the livelihood’s of people and their families.&#8221; It&#8217;s this message which has me wondering, is it time to name and shame people in the WordPress community?</p>\n<h2>The Good</h2>\n<p>In my experience, the community rarely calls people out, even if they have <a title="http://womenofwp.org/2014/01/how-to-report-harassment-at-wordcamps/" href="http://womenofwp.org/2014/01/how-to-report-harassment-at-wordcamps/">routinely harassed others</a> at a WordCamp. Instead, we usually find out about them through back channels. By calling people out, it warns others and makes everyone aware of the situation.</p>\n<h2>The Bad</h2>\n<p>Naming and shaming creates the potential for libel and defamation lawsuits. The internet has a long memory and if a person changes for the better, it will be hard to forget mistakes made in the past. It could hurt future employment opportunities as employers do background checks using Google. There&#8217;s likely a lot of unintended consequences as well.</p>\n<h2>Judge and Jury</h2>\n<p>I doubt the community will start calling people out, as it creates anger, grief, and drama. Besides, who are we to act as judge and jury? However, it bothers me to know that an unnamed person is negatively impacting the livelihood of WordPress businesses and people.</p>\n<p>On one hand, I want to see the individual dealt with in the public sphere and turned into an example. On the other, I feel it&#8217;s probably not the best way to go about it. Maybe the system already in place is the best way to handle these types of situations? Write a post, raise awareness, and tell others who to watch out for in the back channel. What do you think?</p>";s: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:"Tue, 20 Jan 2015 20:41: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:13:"\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:"Matt: Not the Only One";s: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:21:"http://ma.tt/?p=44610";s: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:38:"http://ma.tt/2015/01/not-the-only-one/";s: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:139:"<p>I know I&#8217;m like a year late on Sam Smith, but his voice on this is so amazing and haunting, it&#8217;s a perfect song.</p>\n<p></p>";s: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:"Tue, 20 Jan 2015 06:35: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:"WPTavern: The Philanthropic Side of The WordPress 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:28:"http://wptavern.com/?p=37461";s: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:"http://wptavern.com/the-philanthropic-side-of-the-wordpress-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14236:"<p>Whether it&#8217;s businesses participating in charity work or individuals who need financial assistance, the WordPress community has repeatedly shown how generous it is. Here&#8217;s at look at some WordPress businesses that participate in philanthropy and individuals who experienced the community&#8217;s generosity first hand.</p>\n<h2>Matt Mullenweg Co-creator of WordPress</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/CharityWaterImage.png" rel="prettyphoto[37461]"><img class="aligncenter size-full wp-image-37503" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/CharityWaterImage.png?resize=874%2C561" alt="CharityWater Image" /></a></p>\n<p>Matt Mullenweg is a strong believer in providing easy access to clean drinking water to regions of the world who need it most. He works with several charities and organizations including:</p>\n<ul>\n<li><a href="http://archive.org/">Archive.org</a></li>\n<li><a href="http://www.alaskawild.org/">Alaska Wilderness League</a></li>\n<li><a href="http://apache.org/">Apache Foundation</a></li>\n<li><a href="http://thebaylights.org/">Bay Lights</a></li>\n<li><a href="http://charitywater.org/">charity: water</a></li>\n<li><a href="http://eff.org/">Electronic Frontier Foundation</a></li>\n<li><a href="http://grist.org/">Grist</a> (board member)</li>\n<li><a href="http://www.innocenceproject.org/">Innocence Project</a></li>\n<li><a href="http://longnow.org/">Long Now Foundation</a></li>\n<li><a href="http://www.rothkochapel.org/">Rothko Chapel</a></li>\n<li><a href="http://samasource.org">Samasource</a></li>\n<li><a href="http://www.us-irelandalliance.org/">US-Ireland Alliance</a></li>\n</ul>\n<p>To celebrate his 30th birthday, Mullenweg requested that donations be made to his <a title="https://my.charitywater.org/matt-30" href="https://my.charitywater.org/matt-30">Charity water campaign</a> in lieu of gifts. The goal was $30K, but the campaign raised over $44K.</p>\n<h2>Mitch Canter of Studionashvegas</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/JusticeandMercyImage.png" rel="prettyphoto[37461]"><img class="aligncenter size-full wp-image-37505" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/JusticeandMercyImage.png?resize=374%2C140" alt="Justice and Mercy International" /></a></p>\n<p>Mitch Canter runs <a title="http://www.studionashvegas.com" href="http://www.studionashvegas.com">Studionashvegas</a>, a full service WordPress development agency. Canter has attended two mission trips with a group called <a title="http://justiceandmercy.org/" href="http://justiceandmercy.org/">Justice and Mercy International</a>. The group&#8217;s mission is to <em>make justice personal for the poor, the orphaned, and the forgotten</em>. He&#8217;s also <a title="https://medium.com/@mitchcanter/ive-left-my-heart-in-moldova-3012799c4c60" href="https://medium.com/@mitchcanter/ive-left-my-heart-in-moldova-3012799c4c60">traveled to Chisinau, Moldova</a> and Prague, Czech Republic to help assess long-term needs and provide any necessary supplies for the short-term as well as interact with local children.</p>\n<p>Canter and his wife also sponsor Veronica, a Moldovan orphan, through Justice and Mercy International. The couple routinely writes letters to Veronica and plans to see her the next time they visit the country. They also serve in their local church and volunteer with the local food bank, <a title="http://www.onegenaway.com/" href="http://www.onegenaway.com/">One Gen Away</a>, to provide meals to families who are in need.</p>\n<h2>Syed Balkhi of WPBeginner</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/PencilsofPromiseLogo.png" rel="prettyphoto[37461]"><img class="alignright size-full wp-image-37506" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/PencilsofPromiseLogo.png?resize=245%2C72" alt="Pencils of Promise Logo" /></a>Since 2013, Syed Balkhi and WPBeginner have helped build at least three new schools in Guatemala through the <a title="http://pencilsofpromise.org/" href="http://pencilsofpromise.org/">Pencils of Promise</a> charity. Pencils of Promise is a for-purpose organization that builds schools, trains teachers, and funds scholarships. In 2014, WPBeginner <a title="http://wptavern.com/wpbeginner-turns-5-celebrates-with-campaign-to-build-two-new-schools-in-guatemala" href="http://wptavern.com/wpbeginner-turns-5-celebrates-with-campaign-to-build-two-new-schools-in-guatemala">celebrated its 5th birthday</a> by hosting a huge giveaway and launching a $50K campaign to fund two new schools. The <a title="http://wptavern.com/wpbeginner-reaches-funding-goal-to-build-two-new-schools" href="http://wptavern.com/wpbeginner-reaches-funding-goal-to-build-two-new-schools">campaign was successful</a> and Balkhi says the goal for this year is to build three new schools.</p>\n<h2>PressNomics</h2>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/StJudeChildrensHospital.png" rel="prettyphoto[37461]"><img class="aligncenter size-full wp-image-37507" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/StJudeChildrensHospital.png?resize=784%2C443" alt="St Jude Childrens Hospital" /></a></p>\n<p>PressNomics is an <a title="http://pressnomics.com/" href="http://pressnomics.com/">annual conference</a> dedicated to the business side of WordPress. Each year, the event donates a portion of its proceeds to <a href="http://www.stjude.org">St. Jude Children&#8217;s Research Hospital</a>. Pagely Co-founder, Joshua Strebel, says the decision to donate to St. Jude was made long before he and his wife had kids, &#8220;St Jude has been our charity of choice for many years. Even before Sally and I had kids, we were touched by those commercials that showed the kids fighting cancer. I&#8217;ve always had a soft spot for kids, coming from a large family. Of all the charities you could give to, St. Jude is a no brainer.&#8221;</p>\n<p>Since 2012, the event has donated over $11K to St. Jude Hospital and Strebel says funding from PressNomics 3 this year will allow them to donate over $10K to a <em>charity yet to be named</em>. &#8220;After PressNomics 1, we donated a little over $5K and there was an anonymous matching donation. After PressNomics 2, we donated a little over $6K. This year the budget has allowed us to donate just over $10K.&#8221;</p>\n<h2>DonorsChoose.org</h2>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/DonorsChooseImage.png" rel="prettyphoto[37461]"><img class="aligncenter size-full wp-image-37501" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/DonorsChooseImage.png?resize=1025%2C527" alt="DonorsChoose" /></a><br />\nWhen I reached out to the community to figure out who gives to charities, I discovered a number of people who use <a title="http://www.donorschoose.org/" href="http://www.donorschoose.org/">DonorsChoose</a>. DonorsChoose is an organization that makes it easy to help classrooms in need. Public school teachers post classroom project requests, which range from pencils for poetry to microscopes for mitochondria-organization.</p>\n<p><a title="https://eamann.com/" href="https://eamann.com/">Eric Mann</a>, who contributes to the organization, had a lot of friends in college who majored in education and went on to become teachers. He discovered that many of them worked in schools with small budgets and limited supplies. He explains why he uses DonorsChoose.org.</p>\n<blockquote><p>I use DonorsChoose.org to help fund the purchase of books for classroom lessons, field trips to museums and science exhibits, and modern laptop computers for technical education. Many of the teachers I sponsor are working in low-income areas with at-risk youth and don&#8217;t have the tools available to make much of a difference without community sponsorship.</p></blockquote>\n<p>Mann believes investing in education is one of the best long-term investments you can make, &#8220;It&#8217;s easy to spend money on this Kickstarter or that IndieGoGo when you get a tangible (or digital) return on the investment. Spending money to help protect and shepherd the education of today&#8217;s youth, though, returns an investment in better educated leaders, educators, and technologists for tomorrow.&#8221;</p>\n<h2>WP Site Care</h2>\n<p>WordPress support agency, <a title="http://www.wpsitecare.com" href="http://www.wpsitecare.com">WP Site Care</a>, contributed to <a title="http://www.wpsitecare.com/5-minutes-reflection-look-back-2014/" href="http://www.wpsitecare.com/5-minutes-reflection-look-back-2014/">several different organizations and initiatives</a> throughout 2014. The list is lengthy and includes:</p>\n<ul>\n<li><a href="http://www.autismspeaks.org/" target="_blank">Autism Speaks</a></li>\n<li><a href="http://dangilmore.com/blog/2014/12/04/help-my-wife-fight-cancer/" target="_blank">Dan Gilmore’s St. Baldrick’s Cancer Campaign</a></li>\n<li><a href="https://www.indiegogo.com/projects/buddypress-bbpress-glotpress-development" target="_blank">BuddyPress, bbPress and GlotPress Development</a></li>\n<li><a href="http://www.girlswritenow.org/" target="_blank">Girls Write Now</a></li>\n<li><a href="http://www.girldevelopit.com/" target="_blank">Girl Develop It</a></li>\n<li><a href="https://www.charitywater.org/" target="_blank">Charity Water</a></li>\n<li><a href="http://www.alsa.org/" target="_blank">ALS Association</a></li>\n<li><a href="http://www.aidswalk.net/" target="_blank">AIDS Walk</a></li>\n<li><a href="http://www.heartspring.org/" target="_blank">HeartSpring</a></li>\n<li><a href="http://us.movember.com/" target="_blank">Movember</a></li>\n<li><a href="http://www.afsp.org/" target="_blank">American Foundation for Suicide Prevention</a></li>\n<li><a href="http://www.happyjoe.org/" target="_blank">Happy Joe</a></li>\n</ul>\n<p>I asked WP Site Care founder, Ryan Sullivan, why he chooses to give back to so many charities and what it means to give back.</p>\n<blockquote><p>We support a number of different causes because any charitable contributions that we’re able to make are a direct reflection of the people at our company. We found out about a number of causes from the WordPress community itself. For example, funding treatment for autism is something that has a personal impact on a few of us at WP Site Care.</p>\n<p>We like to make sure that the causes that are important to individuals become important for all of us collectively. It not only goes to help the causes themselves, but helps us get closer as a working family.</p></blockquote>\n<h2>Individuals Who Received Financial Assistance From The WordPress Community</h2>\n<p><strong>Just Tadlock</strong> &#8211; Near the end of 2013, Justin Tadlock <a title="http://justintadlock.com/archives/2013/12/17/help-me-get-a-house-for-christmas" href="http://justintadlock.com/archives/2013/12/17/help-me-get-a-house-for-christmas">discovered the perfect house</a>, but he didn&#8217;t have the money to cover closing costs, quarterly taxes, and appliances. He requested $5K to cover his costs, but he ended up receiving over $7K. It&#8217;s important to note that the campaign took place around Christmas which is a tough time financially for a number of people. However, the community rallied together to give Tadlock the ultimate Christmas gift.</p>\n<p><strong>Dan Griffiths</strong> &#8211; Dan Griffiths, who is known on Twitter as <a title="https://twitter.com/ghost1227" href="https://twitter.com/ghost1227">Ghost1227</a> and one of the creators of <a title="http://wptally.com/" href="http://wptally.com/">WP Tally,</a> recently found himself in a financial emergency. He needed $2,500 within 24 hours. He reached out to <a title="http://wptavern.com/happy-joe-uses-wordpress-to-train-and-help-veterans-find-careers-in-web-technology" href="http://wptavern.com/happy-joe-uses-wordpress-to-train-and-help-veterans-find-careers-in-web-technology">Happy Joe</a>, an organization that helps veterans in need. Happy Joe founder, James Dalman, published an all points bulletin on Twitter asking for help from the WordPress community. Within <strong>two hours</strong> of the initial call for help, Griffiths reached his goal.</p>\n<p><strong>Kim Parsell&#8217;s Son</strong> &#8211; Kim Parsell&#8217;s son was about to begin a new job when tragically, his <a title="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away" href="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away">mother passed away</a>. He wasn&#8217;t able to start the job, putting him in a financial bind. He <a title="http://www.gofundme.com/wpmom" href="http://www.gofundme.com/wpmom">created a campaign</a> asking for $1K to help pay bills as he mourned the loss of his mother. Within 42 minutes, 8 people raised $760 of the requested $1,000. When it was all said and done, 33 people raised $2K.</p>\n<p><strong>John James Jacoby</strong> &#8211; In late 2014, John James Jacoby <a title="http://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development" href="http://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development">launched a crowdfunding campaign</a> asking for $50K in order to work on BuddyPress, GlotPress, and bbPress full-time for 6 months. The <a title="http://wptavern.com/buddypress-bbpress-and-glotpress-development-campaign-is-now-fully-funded" href="http://wptavern.com/buddypress-bbpress-and-glotpress-development-campaign-is-now-fully-funded">campaign was successful</a> generating nearly $52K.</p>\n<h2>Proud To Be a Member of This Community</h2>\n<p>This is just a sample of the generosity expressed by the WordPress community. Although several businesses contribute to charities, it&#8217;s the individuals who receive funding that impress me. If one of us ends up in dire straits, potentially thousands of people are ready to help. It&#8217;s just one more reason why I&#8217;m proud to be a member of this community.</p>\n<p>I&#8217;m certain I missed a few WordPress individuals and businesses that contribute to great causes, if you&#8217;re one of them, please use the comments and tell us about it.</p>";s: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, 19 Jan 2015 23:34: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:13:"\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:35:"WPTavern: Tackling Depression in 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37466";s: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:"http://wptavern.com/tackling-depression-in-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:16947:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/yana-petrova-wceu-2014.jpg" rel="prettyphoto[37466]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/yana-petrova-wceu-2014.jpg?resize=854%2C432" alt="yana-petrova-wceu-2014" class="aligncenter size-full wp-image-37472" /></a></p>\n<p>One of the most unique sessions I attended at <a href="http://wptavern.com/wordpress-beyond-boundaries-a-recap-of-wordcamp-europe-2014" target="_blank">WordCamp Europe 2014</a> was Yana Petrova&#8217;s presentation on <a href="http://wordpress.tv/2015/01/06/yana-petrova-why-sometimes-happiness-requires-effort-depression-in-it/" target="_blank">Depression in IT &#8211; Why Sometimes Happiness Requires Effort</a>. Petrova, a marketing expert and long-time food blogger, is a member of both the WordPress community and the larger tech community in Bulgaria. She has also worked as an organizer for many local technical conferences over the years.</p>\n<p>Her motivation to address the widespread problem of depression in IT grew out of personal experiences with friends and co-workers who were struggling with it. This put her on the path to research the disease and find ways to raise awareness on the topic. I had the opportunity to interview Petrova after the event, and it&#8217;s easy to see why she is a person to whom people would come for advice. Her warm, empathetic personality is combined with a rare willingness to listen to others.</p>\n<p>Petrova&#8217;s experience in food blogging gives her a format for talking about depression in a way that people can understand, which helps to mitigate the stigma that surrounds the issue. We&#8217;ll take a look at some of the recipes she shared in her presentation, but first it&#8217;s important to have a basic understanding of depression.</p>\n<h2>Understanding Depression</h2>\n<p>Nearly everyone knows someone who is suffering from depression, as it afflicts more than <a href="http://www.who.int/mediacentre/factsheets/fs369/en/" target="_blank">350 million people</a> of all ages worldwide and is the leading cause of disability. In the most extreme cases it can lead to suicide.</p>\n<p>Clinical depression is the most severe form, which is often treated with psychological and pharmacological therapies. However, many more people suffer from milder forms of depression from time to time.</p>\n<p>In his TED talk, titled <a href="https://www.youtube.com/watch?v=-eBUcBfkVCo" target="_blank">Depression, The Secret We Share</a>, writer Andrew Solomon said, <strong>&#8220;The opposite of depression is not happiness but vitality.&#8221;</strong> He describes his own dark journey of struggling with depression, which he noticed when all the normal activities of life and work began to seem like too much.</p>\n<blockquote><p>One of the things that often gets lost in discussions of depression is that you know it&#8217;s ridiculous. You know it&#8217;s ridiculous while you&#8217;re experiencing it. You know that most people manage to listen to their messages, and eat lunch, and organize themselves to take a shower and go out the front door, and that it&#8217;s not a big deal.</p>\n<p>And yet you are in its grip and you are unable to figure out any way around it. And so I began to feel myself doing less and thinking less and feeling less. It was a kind of nullity, and then the anxiety set in.</p></blockquote>\n<p>Solomon notes that people tend to confuse depression, grief, and sadness, but understanding the trajectory and duration of these feelings will help to clarify the situation. While grief is explicitly reactive and related to loss, depression doesn&#8217;t always have an easily identifiable cause. Some forms of depression will require professional help for the person to regain a semblance of normal living.</p>\n<h2>Sources or Triggers of Depression in IT</h2>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/emergency.jpg" rel="prettyphoto[37466]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/emergency.jpg?resize=1024%2C482" alt="photo credit: Code & Martini by Ivana Vasilj - cc license" class="size-full wp-image-21873" /></a>photo credit: <a href="https://flic.kr/p/dLUWMb">Code &#038; Martini</a> by <a href="https://www.flickr.com/photos/ivanavasilj/">Ivana Vasilj</a> &#8211; cc license\n<p>Depression in the IT industry can be more difficult to address, as many tech workers are intelligent, independent, and in high demand. Three years ago, when Yana Petrova and her colleague first proposed a presentation on depression for a local tech conference, she experienced a great deal of resistance.</p>\n<p>&#8220;There were a lot of discussions surrounding it and people in the organizations were hesitant to include it,&#8221; she said. &#8220;They believed that people who are in IT are earning very well, the people who are suffering should just go to the doctor, there&#8217;s no need to discuss it at a technical conference.&#8221; The presentation was so impactful, however, that some of the top Bulgarian psychologists heard about it and encouraged them to continue raising awareness.</p>\n<p>The IT industry has several unique factors that seem to contribute to depression and anxiety. Many people in the WordPress community, in particular, work alone at home as freelancers or with distributed companies. Unless the individual is motivated, this work environment can severely limit healthy social interactions. Additional pressures can also lead to periods of depression, including:</p>\n<ul>\n<li>Client work and relationships</li>\n<li>Pressure to always be connected</li>\n<li>Interaction with the larger development community</li>\n<li>An industry emphasis on high competency forces workers to continue building skills on top of ever-changing technologies, while also completing daily work</li>\n<li>Not understanding the limits of your body/emotions</li>\n</ul>\n<p>&#8220;I think that most of the time they are trying to become really good at what they are doing, which requires most of their attention and most of their time,&#8221; Petrova said, commenting on the lifestyle of many developers with whom she is connected.</p>\n<p>&#8220;When you are reading code, coding most of your time, and doing things related to coding, then a social part is missing &#8211; the part related to relationships, self-esteem, knowing yourself. You&#8217;re just not going deeper into that, because you are giving your time and attention to something else, trying to be good at something else. Our brain resources are kind of limited.&#8221;</p>\n<p>Client interaction is also a major cause of stress and anxiety for self-employed professionals. When you work from home by yourself without a team, criticism from clients can have a severe impact on your feelings of self-worth. If you don&#8217;t have a healthy reservoir of outside interests and hobbies, you can easily become mired in client negativity.</p>\n<p>During Petrova&#8217;s presentation at WordCamp Europe, she received questions about how to deal with clients who can damage a developer&#8217;s self-confidence. Sometimes clients don&#8217;t understand that they are not working with machines but rather real people with families and lives.</p>\n<p>&#8220;Because a lot of people are working from home, what the client thinks and what the community thinks about their work can be a source of depression,&#8221; she said. &#8220;Actually, a lot of people have mentioned that clients are sometimes rude in explaining how incompetent they were.&#8221; This can have a devastating impact on a developer who is lacking self-confidence, outside social connections, and restorative hobbies.</p>\n<p>&#8220;Questions about clients wasn&#8217;t something I expected, but it&#8217;s another vertical to explore,&#8221; Petrova said. It has inspired her to start working on a talk about relationships, clients, teams, and how to preserve your team.</p>\n<p>Petrova has observed that many people working in IT don&#8217;t prioritize knowing themselves and understanding their reactions, although this is not unique to the IT industry. They are often blind to their mental health issues and don&#8217;t know when to seek help.</p>\n<h2>Tips for Dealing with Depression and Anxiety</h2>\n<p>Petrova&#8217;s presentation centered around ways to prevent depression and successfully cope with work-related stress and anxiety. &#8220;Depression is not something that defines you for a lifetime,&#8221; she said. &#8220;It might be just a problem, and it might be that, at this time, happiness requires more effort for you.&#8221;</p>\n<p>She believes that depression is an important mechanism in the human consciousness. &#8220;It&#8217;s a signal for us that change is necessary &#8211; changes about us or changes somewhere around us.&#8221;</p>\n<p>Petrova compares cooking recipes to recipes for coping with depression, noting that it&#8217;s important to adapt those recipes to work with your preferences and needs. Her presentation highlights five ways that you can discover and create your own recipes for preventing depression from setting in.</p>\n<h4>1. Take deep breaths.</h4>\n<p>Deep breathing practices help you to regain calmness and perspective. &#8220;They say that graveyards are full of irreplaceable people,&#8221; she said. &#8220;Actually, we all are, but it&#8217;s more important that we are alive, we are here, and we are happy. We can never control everything in the world, and we should never try to take responsibility for all the things here. We often tend to forget that our bodies have their limits and we are fragile.&#8221; Deep breathing reminds us that we are not machines.</p>\n<p>In addition to breathing, Petrova suggests finding other activities outside of work that will help you to gain perspective on life. &#8220;Dedicate special time for your recipes,&#8221; she said. &#8220;Start spending an hour in the morning with your coffee. Spend Sunday afternoon with someone or with friends,&#8221; she suggests.</p>\n<p><strong>&#8220;But never give away this time. Never give it away for work. Never replace it for something, never sacrifice it. It&#8217;s important that you keep this thing and slow down.&#8221;</strong></p>\n<h4>2. Make lists.</h4>\n<p>Petrova advises people to make lists of recipes that work for them in preparation for moments when it&#8217;s difficult to think clearly. &#8220;Think of those lists as emergency plans. When the grey veil of depression comes, your rituals may not seem as important or as life-saving as the day before,&#8221; she said. &#8220;You might not enjoy them as you did before, so you should have a list of things.&#8221; Perhaps it&#8217;s a list of movies you wanted watch, or places you wanted to visit, a restaurant or recipe you wanted to try.</p>\n<blockquote><p>At the beginning you won&#8217;t be willing to do anything from this list. Those things will look silly and you say no this is not the time to do this. You will be preoccupied with all of your worries right now. Force yourself and just pick a thing and start doing it. Start those lists today and obey them frequently.</p></blockquote>\n<p>Petrova shared a few simple items on her own list &#8211; i.e. eating avocados, making herself a chai latte, enjoying a local spicy soup. If you maintain a clear list of things that make you feel better, you have some activities to turn to when things start to become stressful at work.</p>\n<h4>3. Provide small wins.</h4>\n<p>Make goals for yourself that put you on the path to success with frequent, small milestones. This will help to keep you oriented towards fulfillment. &#8220;Another recipe of mine was to keep an editorial calendar,&#8221; Petrova said. &#8220;Even if I am not feeling well, I already had something planned, so I can keep moving in that direction.&#8221;</p>\n<h4>4. Think about your thinking.</h4>\n<p>People who excel at solving some of tech&#8217;s most complex problems can also be notoriously masterful at avoiding introspection. Petrova approaches the topic of introspection with the idea of &#8220;debugging yourself,&#8221; a concept with which many in tech are familiar.</p>\n<p>She suggests writing your own user manual to document how you work and what keeps you healthy. &#8220;Write your own user manual. Start writing a user manual for yourself and imagine you are giving it to someone else. This will help you think more about how you are thinking,&#8221; she said.</p>\n<p>&#8220;You can see that there are a lot of small hacks that can help you feel better. Just imagine how empowering it might be to discover more,&#8221; she said.</p>\n<p>&#8220;This requires a lot of patience and dedication. It usually takes time for reading and time for writing. It takes time to debug your mind.&#8221; Petrova suggests writing down all of the things that help your mind work better so that you have that manual for when depression tries to settle in.</p>\n<p>&#8220;Debug yourself, but if you can&#8217;t do it yourself, then try to talk to someone,&#8221; Petrova said. &#8220;We cannot resolve anything by ourselves.&#8221;</p>\n<h4>5. Learn to listen, learn to share.</h4>\n<p>You can never underestimate the importance of community in maintaining your mental health. The community is stronger when people overcome their irrational inhibitions and learn to share their stories and listen to each other.</p>\n<p>&#8220;It&#8217;s not really easy to listen the proper way, but you can sometimes save people by listening to them carefully,&#8221; Petrova said. &#8220;You can empower them by listening to them.</p>\n<p>People need to tell their stories to realize what is happening. Sometimes when you are keeping things only in your head, you are not realizing the power of your situation.&#8221;</p>\n<p>When should depression lead you to seek professional help? &#8220;In some official resources, they say if you are feeling like this for four weeks then go find some help,&#8221; Petrova said.</p>\n<p>&#8220;But I think that the more you are getting to know yourself, the more you can feel if you need to meet with someone or talk with someone. The doctor might not be the first person. The first person might be a friend or a relative or someone who is closer to you. Or just someone you see, someone you believe in and decide to tell your story to. I really believe that it&#8217;s powerful to tell stories.&#8221;</p>\n<h2>Staying Healthy and Preventing Depression</h2>\n<p>Petrova recommends a book called <a href="http://www.amazon.com/The-Healthy-Programmer-Pragmatic-Programmers/dp/1937785319" target="_blank">The Healthy Programmer</a>, which contains the basics of healthy living for people who work most of the time in a seated position. She believes that movement is especially important for those who work from home and set their own schedules.</p>\n<blockquote><p>The first thing is related to moving/movement. Are you moving enough? Are you doing active things, sports? This is really important, because if you are living where you are working, then you can find yourself in a situation where you are staying home, ordering food all the time. You forget all the healthy things you could do to feel better, for your body to feel better and your mind to work well. It&#8217;s really related.</p></blockquote>\n<p>If you&#8217;re staying active and able to use your normal problem-solving skills to debug yourself, you will greatly lessen the chances of falling into depression. Building up these habits takes time, but you&#8217;re also less likely to be crippled by stress and anxiety. In the future, Petrova plans to start a blog called &#8220;The Happiness Cookbook&#8221; in order to encourage people to share their recipes with the community.</p>\n<p>&#8220;Get to know yourself better and your reactions to different situations,&#8221; Petrova advises. &#8220;You really need a lot of time to know what&#8217;s happening to you and to know how to react in a timely way for prevention.</p>\n<p>&#8220;We all have our stressful moments. We all have our sad moments. You are certain to have them in your lifetime. But you can learn how to prevent your reactions, what to do when depression happens, and the best way to overcome it. The temporary feelings can be over at some point with the help of simple tips, and then you are not going to get depressed. Otherwise, you are just digging into that.&#8221;</p>\n<p>Obviously, there are some forms of depression that will ultimately require professional help. Petrova&#8217;s tips for prevention are intended to help folks before they reach a very dark place where they have lost interest in work completely and are struggling to find vitality.</p>\n<p>&#8220;Depression means that you need to change something, for yourself, around yourself, about yourself,&#8221; she said. &#8220;This is the key message. Just research the pain that made you feel like this and start debugging it step by step.&#8221;</p>";s: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, 19 Jan 2015 22:39: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:36:"Matt: Pope Francis on Climate Change";s: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:21:"http://ma.tt/?p=44598";s: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:"http://ma.tt/2015/01/pope-francis-on-climate-change/";s: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:718:"<blockquote><p>He has been called the “superman pope”, and it would be hard to deny that Pope Francis has had a good December. Cited by President Barack Obama as a key player in the thawing relations between the US and Cuba, the Argentinian pontiff followed that by lecturing his cardinals on the need to clean up Vatican politics. But can Francis achieve a feat that has so far eluded secular powers and inspire decisive action on climate change?</p></blockquote>\n<p>The Guardian on <a href="http://www.theguardian.com/world/2014/dec/27/pope-francis-edict-climate-change-us-rightwing">Pope Francis’s edict on climate change will anger deniers and US churches</a>. Definitely the coolest pope in my lifetime.</p>";s: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, 18 Jan 2015 16:30: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:"Matt: No Relief for Air Travelers";s: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:21:"http://ma.tt/?p=44607";s: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:"http://ma.tt/2015/01/no-relief-for-air-travelers/";s: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:420:"<blockquote><p>Oil prices have fallen by about half since June, making it much cheaper just in time for drivers to fill up their cars for Christmas travel. But the decline in oil prices has had made no perceptible difference on the cost of flying.</p></blockquote>\n<p>New York Times: <a href="http://www.nytimes.com/2014/12/16/opinion/no-relief-for-air-travelers.html?_r=2&referrer=">No Relief for Air Travelers</a>.</p>";s: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 Jan 2015 23:35: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:72:"WPTavern: Proposed Enhancements to Distraction-free Writing in 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37456";s: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:82:"http://wptavern.com/proposed-enhancements-to-distraction-free-writing-in-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3711:"<p>When we <a title="http://wptavern.com/whats-your-first-impression-of-distraction-free-writing-in-wordpress-4-1" href="http://wptavern.com/whats-your-first-impression-of-distraction-free-writing-in-wordpress-4-1">asked readers</a> what they thought of the new Distraction-free writing mode in WordPress 4.1, a majority of readers responded that it was an improvement. However, a number of others stated they preferred the old version. Readers also <a title="http://wptavern.com/whats-your-first-impression-of-distraction-free-writing-in-wordpress-4-1#comments" href="http://wptavern.com/whats-your-first-impression-of-distraction-free-writing-in-wordpress-4-1#comments">took to the comments</a> to describe their first impression of the feature.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/DistractionFreeWriting41.png" rel="prettyphoto[37456]"><img class="size-full wp-image-35707" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/12/DistractionFreeWriting41.png?resize=1025%2C501" alt="Distraction Free Writing in WordPress 4.1" /></a>Distraction Free Writing in WordPress 4.1\n<p>Since the release of 4.1, I&#8217;ve forced myself to use DFW. When I write content, I often hit the preview button several times to review changes. This results in DFW mode turning on and off multiple times which I find distracting and at times, annoying. I&#8217;m not the only one who feels this way as Brian Krogsgard of <a title="https://poststatus.com/distraction-free-writing-wordpress/" href="https://poststatus.com/distraction-free-writing-wordpress/">PostStatus.com explains</a>:</p>\n<blockquote><p>When I write, I tend to save and preview the post live a number of times while I’m writing, especially toward the end of my time spent writing.</p>\n<p>It gets a bit dizzying to be fixing typos and saving and previewing while going in an out of DFW.</p>\n<p>I’d like to see “Save Draft” and “Preview” buttons moved into the editor body, so that I can stay in DFW while finishing up my posts.</p></blockquote>\n<p>I like the idea of moving the Save Draft and Preview buttons to the post editor. It&#8217;s one of the reasons why <a title="http://wptavern.com/how-to-preview-posts-in-distraction-free-writing-mode-without-seeing-a-transition" href="http://wptavern.com/how-to-preview-posts-in-distraction-free-writing-mode-without-seeing-a-transition">I reviewed</a> the <a title="https://wordpress.org/plugins/fullscreen-preview-button/" href="https://wordpress.org/plugins/fullscreen-preview-button/">Distraction Free Preview Button</a> plugin by Alex King. Krogsgard also lists several other ideas with screenshots showing the changes in action, including:</p>\n<ul>\n<li>Inverted editor colors</li>\n<li>Centered post editor</li>\n<li>Setting the editor to use the Max-width available</li>\n<li>Full-height editor</li>\n</ul>\n<p>Jen Mylo, who reviewed the feature as a user, <a title="http://jenmylo.com/2015/01/17/distraction-free-writing-mode/" href="http://jenmylo.com/2015/01/17/distraction-free-writing-mode/">suggests</a> similar improvements. One other thing I&#8217;d like to see is a full-height editor. It&#8217;s annoying when the meta boxes fade away, the editor remains the same size as if the boxes are still in place. That&#8217;s because they are, but I think it would be better if DFW mode would go back to being a separate writing experience so meta boxes are a non-issue.</p>\n<p>I believe if the ideas proposed by Krogsgard and Mylo are implemented, DFW would likely become the primary mode in which I write content. Until then, I&#8217;m sticking with the default interface. What you do you think of the proposed ideas and are there any you&#8217;d add?</p>";s: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 Jan 2015 22:09: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:13:"\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:80:"WPTavern: JavaScript Leads The Pack in RedMonk’s Programming Language Rankings";s: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:28:"http://wptavern.com/?p=37449";s: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:87:"http://wptavern.com/javascript-leads-the-pack-in-redmonks-programming-language-rankings";s: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:2289:"<p>Research and analyst firm, <a title="http://redmonk.com/" href="http://redmonk.com/">RedMonk, </a>released its <a title="http://redmonk.com/sogrady/2015/01/14/language-rankings-1-15/" href="http://redmonk.com/sogrady/2015/01/14/language-rankings-1-15/">programming language rankings</a> for January 2015. RedMonk looks at programming language discussions on <a title="http://stackoverflow.com/" href="http://stackoverflow.com/">Stack Overflow</a> and usage on <a title="https://github.com/" href="https://github.com/">GitHub</a> in an effort to extract insights into potential adoption trends.</p>\n<p>The results from the analysis are not clear indications of general usage but rather, an examination of the correlation between two populations RedMonk believes to be predictive of future use.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/RedMonkQ115ProgrammingLanguageRankings.png" rel="prettyphoto[37449]"><img class="size-full wp-image-37451" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/RedMonkQ115ProgrammingLanguageRankings.png?resize=1025%2C687" alt="RedMonk Q115 Programming Language Rankings" /></a>RedMonk Q115 Programming Language Rankings\n<p>It doesn&#8217;t surprise me to see JavaScript and PHP so high on the chart, especially since JavaScript is in the <a title="http://ianmarshall.net/articles/140511.php" href="http://ianmarshall.net/articles/140511.php">middle of a renaissance</a>. The results also mirror the suggestion that in the future, <a title="http://wptavern.com/in-the-next-few-years-90-of-wordpress-development-could-be-javascript-based" href="http://wptavern.com/in-the-next-few-years-90-of-wordpress-development-could-be-javascript-based">90% of WordPress development</a> could be JavaScript based.</p>\n<p>Be sure to read <a title="http://redmonk.com/sogrady/2015/01/14/language-rankings-1-15/" href="http://redmonk.com/sogrady/2015/01/14/language-rankings-1-15/">RedMonk&#8217;s interpretation</a> of the data and the trends worth noting. Also worth reading is <a title="http://www.wired.com/2015/01/redmonk-swift" href="http://www.wired.com/2015/01/redmonk-swift">Wired.com&#8217;s take</a> on the data and the rising popularity of Apple&#8217;s Swift programming language. What do you make of the rankings?</p>";s: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 Jan 2015 20:53: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:13:"\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:77:"Post Status: Ideas for small improvements to the new Distraction-Free Writing";s: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:30:"https://poststatus.com/?p=7388";s: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://poststatus.com/distraction-free-writing-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9980:"<p>Distraction-Free Writing has been a bit of a controversial feature in WordPress this release. It changed from a <em>you have to toggle to it every time</em> feature to <em>it&#8217;s always on feature</em> in WordPress 4.1.</p>\n<p>With that change, the DFW experience changed to be more like the regular editor, well, because it is the regular editor. It just removes stuff off of the screen that you&#8217;re not using.</p>\n<p>Here&#8217;s the editor now, with DFW not on:</p>\n<div id="attachment_7393" class="wp-caption aligncenter"><a href="https://poststatus.com/wp-content/uploads/2015/01/4-1-post-editor.png"><img class="wp-image-7393 size-large" src="https://poststatus.com/wp-content/uploads/2015/01/4-1-post-editor-752x473.png" alt="4-1-post-editor" width="752" height="473" /></a><p class="wp-caption-text">The WordPress post editor, as of WordPress 4.1 (with custom admin theme colors)</p></div>\n<p>And here&#8217;s the editor now, with DFW on:</p>\n<div id="attachment_7390" class="wp-caption aligncenter"><a href="https://poststatus.com/wp-content/uploads/2015/01/dfw-wp-4-1.png"><img class="wp-image-7390 size-large" src="https://poststatus.com/wp-content/uploads/2015/01/dfw-wp-4-1-752x442.png" alt="dfw-wp-4-1" width="752" height="442" /></a><p class="wp-caption-text">DFW mode as of WordPress 4.1</p></div>\n<p>Jen Mylo wrote a post about how <a href="http://jenmylo.com/2015/01/17/distraction-free-writing-mode/">she doesn&#8217;t like the new feature as much as the old one</a>. I&#8217;ve seen similar complaints a few times from folks.</p>\n<p>The positive trade-off is that now DFW is much more likely to be used, since the setting (the four-arrow icon in the upper right corner of the editor box) is persistent for a user once enabled. Previously, DFW had to be toggled in each use, and was probably used by a minority of users.</p>\n<p>4.1 was the first go at the feature in its new state, and I think it&#8217;s pretty great. I&#8217;m now using DFW every post I write, whereas before I almost always forgot to turn it on; plus, it previously felt like a commitment to the blog post.</p>\n<p>Nevertheless, I think Jen&#8217;s critique (as well as others&#8217;) are noteworthy, so I decided to take some of the complaints I&#8217;ve heard and hack around in the browser inspector to see if I could alleviate them.</p>\n<p>One thing Jen brought up was the height of the editor box. You no longer toggle the height from the bottom corner; instead it auto-adjusts with your content, and comes shipped with a default height.</p>\n<h3>Full-height editor box</h3>\n<p>She believes, and I agree, that it would be nice if the editor filled the available height of the window, because right now it feels a bit squished and cramped. Thankfully, we have the viewport height (vh) unit in CSS, and this can be adjusted with pure CSS and a few media queries.</p>\n<div id="attachment_7391" class="wp-caption aligncenter"><a href="https://poststatus.com/wp-content/uploads/2015/01/dfw-4-1-full-height.png"><img class="wp-image-7391 size-large" src="https://poststatus.com/wp-content/uploads/2015/01/dfw-4-1-full-height-752x451.png" alt="dfw-4-1-full-height" width="752" height="451" /></a><p class="wp-caption-text">WordPress DFW mode with full-height content area</p></div>\n<p>I think this is a progressive feature, so I&#8217;d be for using the vh CSS unit not using Javascript on this, despite the not-great browser support in IE.</p>\n<p>In fact, I really like this concept, even when not in DFW mode. It really calms me down, not seeing the metaboxes below the post content right out of the gate. We can just keep them right below the editor, just out of sight.</p>\n<div id="attachment_7392" class="wp-caption aligncenter"><a href="https://poststatus.com/wp-content/uploads/2015/01/post-editor-full-height.png"><img class="size-large wp-image-7392" src="https://poststatus.com/wp-content/uploads/2015/01/post-editor-full-height-752x451.png" alt="WordPress post editor with full height content area" width="752" height="451" /></a><p class="wp-caption-text">WordPress post editor with full height content area</p></div>\n<h3>Centered editor in DFW</h3>\n<p>Another note Jen made was that she was bothered the editor isn&#8217;t centered in DFW mode. Well, I&#8217;ve never noticed that, but <em>now I do, ugh</em>. <img src="https://poststatus.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> It&#8217;s this way because DFW simply hides the right column and admin columns, which are not the same width, and therefore the editor is left with unequal margins.</p>\n<p>Well, during the transition of those admin columns, theoretically, we could also move the editor box, though I think we should test what kind of UX effect there is of transitioning the editor your cursor is in. It might not be the most elegant solution.</p>\n<p>Nevertheless, here&#8217;s what it&#8217;d look like once you&#8217;re done, including the full-height editor box.</p>\n<div id="attachment_7394" class="wp-caption aligncenter"><a href="https://poststatus.com/wp-content/uploads/2015/01/dfw-full-height-and-centered.png"><img class="size-large wp-image-7394" src="https://poststatus.com/wp-content/uploads/2015/01/dfw-full-height-and-centered-752x471.png" alt="DFW full-height editor and centered" width="752" height="471" /></a><p class="wp-caption-text">DFW full-height editor and centered</p></div>\n<p>I&#8217;m iffy on this one. I really don&#8217;t like the idea of moving the box you&#8217;re actively focusing on. Needs testing.</p>\n<h3>Max-width on the editor box</h3>\n<p>A critique I learned from another user was that the huge width on the DFW editor box bothered them. I agree. I think we should put a max-width on the editor box &#8212; probably whether the user is in DFW mode or not.</p>\n<p>Here&#8217;s the large version that&#8217;s unwieldy, especially in DFW mode:</p>\n<div id="attachment_7400" class="wp-caption aligncenter"><a href="https://poststatus.com/wp-content/uploads/2015/01/dfw-max-width.png"><img class="size-large wp-image-7400" src="https://poststatus.com/wp-content/uploads/2015/01/dfw-max-width-752x285.png" alt="We should not let this get so wide. Line length matters!" width="752" height="285" /></a><p class="wp-caption-text">We should not let this get so wide. Line length matters!</p></div>\n<h3>Inverted editor colors, with centered content box</h3>\n<p>One more idea: what if we inverted the WordPress admin colors, so that the background was white, and metaboxes were gray. And then, we could ditch the &#8220;container&#8221; of the editor box altogether.</p>\n<p>Here&#8217;s a mockup of that.</p>\n<div id="attachment_7402" class="wp-caption aligncenter"><a href="https://poststatus.com/wp-content/uploads/2015/01/all-white-admin-background.jpg"><img class="size-large wp-image-7402" src="https://poststatus.com/wp-content/uploads/2015/01/all-white-admin-background-752x431.jpg" alt="All white background, with centered editor" width="752" height="431" /></a><p class="wp-caption-text">All white background, with centered editor</p></div>\n<p>I think this could look really nice, but it would require a good bit of admin changes.</p>\n<p>And then the Distraction-Free Writing version:</p>\n<p><a href="https://poststatus.com/wp-content/uploads/2015/01/dfw-all-white.jpg"><img class="aligncenter size-large wp-image-7404" src="https://poststatus.com/wp-content/uploads/2015/01/dfw-all-white-752x432.jpg" alt="dfw-all-white" width="752" height="432" /></a></p>\n<h3>Save and Preview inline</h3>\n<p>This one is my own idea, based on drafting posts in this mode every day.</p>\n<p>Distraction-Free Writing toggles on and off pretty rapidly as you focus in and out of the editor. When I write, I tend to save and preview the post live a number of times while I&#8217;m writing, especially toward the end of my time spent writing.</p>\n<p>It gets a bit dizzying to be fixing typos and saving and previewing while going in an out of DFW.</p>\n<p>I&#8217;d like to see &#8220;Save Draft&#8221; and &#8220;Preview&#8221; buttons moved into the editor body, so that I can stay in DFW while finishing up my posts. Here&#8217;s what that looks like:</p>\n<div id="attachment_7389" class="wp-caption aligncenter"><a href="https://poststatus.com/wp-content/uploads/2015/01/dfw-inline-save-preview.jpg"><img class="size-large wp-image-7389" src="https://poststatus.com/wp-content/uploads/2015/01/dfw-inline-save-preview-752x473.jpg" alt="DFW with Save and Preview inline" width="752" height="473" /></a><p class="wp-caption-text">DFW with Save and Preview inline</p></div>\n<h3>Iteration is important</h3>\n<p>Iteration in WordPress feature development is important. I&#8217;m glad we introduced Distraction-Free Writing in the first place, and I think the changes in 4.1 are worthy. They may need some adjustments, but it&#8217;s a process that will continue to improve.</p>\n<p>Constructive feedback is always good. The more we use and figure out how others are using various features of WordPress, the more they can be improved.</p>\n<p>In preparing to write this post, I was able to reach out in <a href="https://poststatus.com/category/planet/feed/slack.wordpress.org">WordPress Slack</a> and find out the best venue to give feedback, and if Jen&#8217;s post and this one help start a conversation, the changes can make their way to <a href="https://core.trac.wordpress.org/">Trac tickets</a> and eventual patches to make WordPress better.</p>\n<p>I&#8217;ve seen at least a handful of folks say &#8220;Bring the old Distraction-Free Writing back!&#8221; That&#8217;s understandable; lots of folks don&#8217;t like change. Every UI-involved feature in WordPress ever has had critics.</p>\n<p>But when you look at WordPress today and WordPress 5 or more years ago, WordPress today is way more beautiful to use. That&#8217;s because the experience the core team has built has iterated over time in response to use, feedback, and contributions.</p>";s: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 Jan 2015 18:01: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";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:13:"\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:39:"Jen Mylo: Distraction-free Writing Mode";s: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:26:"http://jenmylo.com/?p=4787";s: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:"http://jenmylo.com/2015/01/17/distraction-free-writing-mode/";s: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:6729:"<p>Once upon a time in WordPress there was a New Feature called Distraction-free writing mode. You accessed it by clicking the icon in the editor toolbar that means <em>full screen</em> pretty much everywhere on the web.</p>\n<p><img class="aligncenter size-full wp-image-4788" src="https://jenmylo.files.wordpress.com/2015/01/dfw-icon-highlight.png?w=520&h=71" alt="post editor toolbar" width="520" height="71" /></p>\n<p>It would load a new screen tha mostly just consisted of a writing box not surrounded by meta boxes or formatting, and what limited formatting options there were would only appear when you moused out of the writing area. It wasn&#8217;t perfect (I would have liked that fading toolbar to have all the same formatting options as the regular editor) but it <em>was</em> pretty non-distracting, and it just felt calm.</p>\n<p><img class="aligncenter size-full wp-image-4790" src="https://jenmylo.files.wordpress.com/2015/01/dfw-ui.png?w=520" alt="old distraction-free writing interface" /></p>\n<p>A while back I noticed some changes in the wp-admin regular editor. All the navigation and meta boxes now faded away while you were writing, and I thought, &#8220;Oh, that&#8217;s pretty nice, kind of a DFW Lite!&#8221; I didn&#8217;t pay too much attention, as I was just writing a quick post, but in my head I approved, and thought it was a good improvement. Until this morning.</p>\n<p>Most of my blog-based activity happens on work-related blogs that have front-end posting forms, so it&#8217;s been a while since I tried to access DFW mode. But I was going to be writing a long post, and I wanted to go over into that peaceful screen, so I clicked on the full-screen icon. That&#8217;s when I discovered that what I thought was DFW Lite was actually the new DFW. There was no more new screen.</p>\n<p>At first I thought,&#8221;Hm, that&#8217;s a lot more efficient. Good for them!&#8221; Then I started writing, and thought, &#8220;[Letters-in-a-configuration-to-replicate-my-slightly-alarmed-and-uncomfortable-sound]!&#8221; I hated to admit it, but I felt physically uncomfortable. Am I turning into Sheldon (<a title="Video from Big Bang Theory" href="https://www.youtube.com/watch?v=ynUfxitGpfU">skip to 3:34</a>)? Crap! Anyway, here&#8217;s why I don&#8217;t love the new DFW.</p>\n<p>When wp core switched over to the &#8220;toolbar anchors to top of editor no matter how long your post&#8221; setup, users lost the ability to grab a corner of the editor and drag it to make it taller. Since it is supposed to automatically resize as you write, most people thought this was a tradeoff with a net benefit, and even though I really didn&#8217;t want to lose my little corner resize handle, I agreed that the net benefit was worth it. The thing is, if in your head you&#8217;ve already thought out a long post, starting in the small box feels cramped, kind of like when you have to repack a sleeping bag and you&#8217;re smooshing it with all your might to get it to fit back into the compact stuff sack.</p>\n<p>Think about opening a New Document in MS Word (or equivalent writing program) , or a writer putting a fresh piece of paper in the typewriter (for those who are too young to remember, <a title="Video of someone putting paper into a typewriter" href="https://www.youtube.com/watch?v=FkUXn5bOwzk">it&#8217;s like this</a>). There have been reams written by famous authors in the past about the feeling that action engenders &#8212; a feeling of limitless possibilities, a knock on the creative door, an open road ahead. That&#8217;s what DFW tried to emulate. Starting in the small box instead of the full height box feels like possibilities with limits, a creative window that won&#8217;t open more than 3 inches for safety, a road with one lane closed for construction. Thoughts scrunch down to try to fit into the available space.</p>\n<p>Even when the box expands to be the height of the screen (minus padding against top and bottom of browser), a chunk of space is lost at the top for the toolbar. That fade it used to have really did remove distraction. I wish there had been a way to combine the zen of the fade away (Matt&#8217;s original nickname for DFW was zen mode) with the convenience of the always-at-top placement.</p>\n<p>In the old DFW, the writing window really did have that feeling of a fresh New Document or crisp new sheet of paper. Now, even once it&#8217;s tall, it&#8217;s a bit off-center to the left, because that&#8217;s where the editor box is when on a screen containing navigation and metaboxes.</p>\n<p><img class="aligncenter size-full wp-image-4798" src="https://jenmylo.files.wordpress.com/2015/01/screen-shot-2015-01-17-at-7-54-33-am.png?w=520&h=313" alt="Screenshot of current distraction-free mode" width="520" height="313" /></p>\n<p>There was a time (pre-2000) when I didn&#8217;t think too much about alignment in UIs. Then I got a lot of design ideas drilled into my head that stuck, especially regarding alignment. I like asymmetry in a lot of things, always have. Hell, in a site we were just working on one of the things we said we wanted was some asymmetry. But for DFW, the symmetry &#8212; the centeredness &#8212; was a big part of what made that screen so calming. Your brain didn&#8217;t have to do any pattern recognition or internal balancing to make it feel right. But now it skews to the left and it&#8217;s driving me crazy, Sheldon style. This isn&#8217;t zen for me; it&#8217;s a misused apostrophe, a lowercase p, a cabinet door left open.</p>\n<p>I thought I&#8217;d be a holdout forever against using the new <a title="wordpress.com" href="http://wordpress.com">wordpress.com</a> posting interface (I have a lot of issues with it, surprise), but, well, their DFW has that open and symmetrical feeling (even if it has other problems) that makes for a non-Sheldony writing experience.</p>\n<p><img class="aligncenter size-full wp-image-4789" src="https://jenmylo.files.wordpress.com/2015/01/screen-shot-2015-01-17-at-7-27-45-am.png?w=520&h=378" alt="Screenshot of distraction-free writing mode on wordpress.com" width="520" height="378" /></p>\n<p>So this might be my last post written in wp-admin DFW mode for now. Farewell, old friend!</p>\n<p><em>* * *</em></p>\n<p><em>Standard disclaimer when writing about WordPress: This is my personal opinion. I have not been the UX lead for WordPress core for a couple of years now, so this post on my personal blog should not be seen as representing the WordPress project in any way, it&#8217;s just my personal experience with a user interface.</em></p><img alt="" border="0" src="http://pixel.wp.com/b.gif?host=jenmylo.com&blog=45389656&post=4787&subd=jenmylo&ref=&feed=1" width="1" height="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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 17 Jan 2015 16:08: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"Jen Mylo";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:13:"\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:32:"WPTavern: First Look at SIDEKICK";s: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:28:"http://wptavern.com/?p=37315";s: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:"http://wptavern.com/first-look-at-sidekick";s: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:4144:"<p>After experiencing a <a title="http://wptavern.com/sidekick-delays-the-release-of-composer" href="http://wptavern.com/sidekick-delays-the-release-of-composer">significant delay</a> in late 2014, the folks over at SIDEKICK <a title="http://www.sidekick.pro/blog/launch-welcome-new-sidekick-pro/" href="http://www.sidekick.pro/blog/launch-welcome-new-sidekick-pro/">have launched</a> a new website along with Composer. <a title="http://www.sidekick.pro/plans/create_wp_walkthroughs/" href="http://www.sidekick.pro/plans/create_wp_walkthroughs/">Composer</a> is a tool that allows you to create visual, guided, walkthroughs. When SIDEKICK Co-founder, Ben Fox, showed off the initial demo last year, I described it as the <a title="http://www.techsmith.com/camtasia.html" href="http://www.techsmith.com/camtasia.html">Camtasia</a> of WordPress.</p>\n<p>SIDEKICK has a <a title="http://www.sidekick.pro/plans/create_wp_walkthroughs/" href="http://www.sidekick.pro/plans/create_wp_walkthroughs/">couple different plans</a> available depending upon how many walkthroughs you want to publish. The free account allows for three <strong>published</strong> walkthroughs, 50 monthly plays or views, 1 active website, and support for WordPress multi-site.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/SideKickActivated.png" rel="prettyphoto[37315]"><img class="size-full wp-image-37429" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/SideKickActivated.png?resize=1025%2C501" alt="SIDEKICK Activated" /></a>SIDEKICK Activated\n<p>The walkthrough creation interface is similar to Camtasia in that it has a timeline with various steps that can be added. To supply audio, you need to upload a pre-recorded mp3 file for each step. While not as easy as recording the audio within the plugin, it&#8217;s easier to fix mishaps without having to redo the entire walkthrough.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/WalkthroughInterface.png" rel="prettyphoto[37315]"><img class="size-full wp-image-37432" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/WalkthroughInterface.png?resize=1025%2C280" alt="Walkthrough Interface" /></a>Walkthrough Interface\n<h2>It&#8217;s Clearly The First Version</h2>\n<p>While testing SIDEKICK, I encountered several things that need to be addressed in future versions. <del>During the initial setup, there is a box that explains how to build your own walkthrough with a link to get Composer. This leads me to believe that it&#8217;s a separate product or plugin when in reality, it&#8217;s not. Composer is part of SIDEKICK out of the box.</del> <em><strong>Update</strong></em> SIDEKICK has already released an update that fixes the copy.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/getcomposerbox.png" rel="prettyphoto[37315]"><img class="size-full wp-image-37433" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/getcomposerbox.png?resize=610%2C207" alt="Get Composer Information Box" /></a>Old Get Composer Information Box\n<p>I encountered a few links which point to a 404 page, like their <a title="http://www.sidekick.pro/terms-of-use/" href="http://www.sidekick.pro/terms-of-use/">Terms of Use</a>. With so many steps in the setup process, it would be nice if SIDEKICK had a walkthrough of its own, to guide users on how to configure it. Despite these minor setbacks, they don&#8217;t detract from its usefulness. Fox says, the team is already aware of the issues and over the next few weeks, will release several updates.</p>\n<p>It took awhile, but once I understood how it works, I found creating walkthroughs a fairly easy process. With version one out the door, it will be interesting to see how it&#8217;s adopted by theme and plugin developers, considering a number of them already use <a title="http://theme.fm/2011/09/introducing-pointers-in-wordpress-3-3-2407/" href="http://theme.fm/2011/09/introducing-pointers-in-wordpress-3-3-2407/">admin pointers</a> that are built into WordPress. However, there&#8217;s a distinct difference between a simple pointer and walking people through a task.</p>";s: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 Jan 2015 03:59: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:13:"\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:"Matt: Fasting";s: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:21:"http://ma.tt/?p=44604";s: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:29:"http://ma.tt/2015/01/fasting/";s: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:1053:"<p>&#8220;Fasting for as little as three days can regenerate the entire immune system, even in the elderly, scientists have found in a breakthrough described as &#8216;remarkable&#8217;.&#8221; &#8212; <a href="http://www.telegraph.co.uk/news/uknews/10878625/Fasting-for-three-days-can-regenerate-entire-immune-system-study-finds.html">Fasting for three days can regenerate entire immune system, study finds</a>.</p>\n<p>Harper&#8217;s had a <a href="http://harpers.org/archive/2012/03/starving-your-way-to-vigor/">great article on fasting a few years ago</a> it&#8217;s not online at the moment but <a href="https://cloudup.com/cgrXJBHXyeo">here&#8217;s a PDF of it</a>. It&#8217;s also <a href="http://www.yogicwayoflife.com/three-day-water-fast-and-its-benefits/">common in yoga</a> and <a href="http://joshmitteldorf.scienceblog.com/2014/06/12/the-three-day-fast-day-four/">folks trying to live longer</a>. I haven&#8217;t tried it myself yet, but perhaps will at some point this year &#8212; I like the idea of doing something by doing nothing.</p>";s: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 Jan 2015 01:10: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:"Matt: The Right Problem";s: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:21:"http://ma.tt/?p=44601";s: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:39:"http://ma.tt/2015/01/the-right-problem/";s: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:385:"<blockquote><p>Working on the right problem is more important than working hard. &#8212; Caterina Fake</p></blockquote>\n<p>Found via <a href="http://davemart.in/2015/01/14/84-highlights-from-the-startup-playbook/">84 highlights from The Startup Playbook</a> by Automattician Dave Martin.</p>\n<p>The hardest thing in the world is spending the most time on the most important things.</p>";s: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, 16 Jan 2015 22:08: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:38:"Post Status: A small Medium experiment";s: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:30:"https://poststatus.com/?p=7366";s: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:43:"https://poststatus.com/medium-vs-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9842:"<p>I&#8217;ve always wanted to write a post on Medium. But I&#8217;ve always been too greedy to do so, because I like to own my content, and I&#8217;ve never had a topic that I really wanted to write about that didn&#8217;t better fit on my personal blog or this one.</p>\n<p>That changed today, so I got to experiment. On hearing that Teehan+Lax shut down, I felt it was a worthy time to try Medium. I had a bone to pick with their exit post, and they helped design Medium&#8217;s first version, so it seemed fitting.</p>\n<p>Here&#8217;s <a href="https://medium.com/@krogsgard/the-story-teehan-lax-isnt-telling-5b58e6109e88">a link to the finished product</a>. Until today, I had never really done anything to play with their editor beyond look at it and write a few sentences to see the basics of how things worked.</p>\n<h3>First impressions of Medium&#8217;s editor</h3>\n<p>Medium&#8217;s front-end is beautiful. And the back-end looks quite similar. They try to take pretty much everything out of your way to leave you to your words. I like that.</p>\n<p>The only problem with simplicity is that it can obfuscate how to actually do stuff. In the case of the Medium editor, there are two methods to interact with text.</p>\n<p><img class="aligncenter size-large wp-image-7370" src="https://poststatus.com/wp-content/uploads/2015/01/medium-more-options-752x261.jpg" alt="medium-more-options" width="752" height="261" /></p>\n<p>First, you can click the little plus button, which allows you to insert a pre-formatted block of something.</p>\n<p><img class="aligncenter size-large wp-image-7371" src="https://poststatus.com/wp-content/uploads/2015/01/medium-tooltip-752x208.jpg" alt="medium-tooltip" width="752" height="208" /></p>\n<p>&nbsp;</p>\n<p>Second, you can highlight text and get a tooltip of formatting options.</p>\n<p>Some of these options are confusing. The tooltip one was fine, but the + button was tougher. I didn&#8217;t know what to expect by clicking the horizontal line or the play button. I thought the code brackets were odd, as surely not many people are putting code on Medium. It turned out that was an oEmbed button.</p>\n<p>Eventually though, I figured out roughly how to do what, even inserting those big full screen images everyone associates to Medium.</p>\n<p>For most people and most posts, these tools are enough. And all in all the experience was delightful, despite this minor criticism. However, a part of me wanted <em>more</em>.</p>\n<p>I like the persistent editing buttons of WordPress (though I could definitely do with fewer options in TinyMCE). I even felt a little weird about Medium&#8217;s previews. It&#8217;s basically a front-end preview when you edit, but it&#8217;s also not quite teh same. For example, you don&#8217;t get the below post items and other elements that affect the overall feel of the page, versus just the article.</p>\n<p>Still, I think the WordPress editing experience could learn from Medium&#8217;s efforts, even if we don&#8217;t mimic it entirely. And I do think the recent changes to Distraction writing help get us there.</p>\n<h3>Simple but effective stats</h3>\n<p>Medium has stats built-in. With WordPress, most people use WordPress.com&#8217;s stats module through Jetpack, or Google Analytics, or both.</p>\n<p>Medium really trims down the stats information. You basically get a few metrics: Views, &#8220;Reads&#8221;, Read Ratio, and Recommendation counts.</p>\n<p><img class="aligncenter size-large wp-image-7372" src="https://poststatus.com/wp-content/uploads/2015/01/medium-stats-752x527.jpg" alt="medium-stats" width="752" height="527" /></p>\n<p>I <em>love</em> the read ratio stat. Medium&#8217;s reliance on reading versus pageviews is <a href="https://medium.com/data-lab/mediums-metric-that-matters-total-time-reading-86c4970837d5">pretty well documented</a>, and I&#8217;ve always thought it was great. But what I realized nearly immediately is that this gave me much greater assurance that my post is quality or not, versus metrics I have available to me with WordPress.com stats or even Google analytics.</p>\n<p>I usually determine quality of my posts based on how many tweets, comments, and pageviews I get for an article. This is great, but just because something isn&#8217;t shareworthy doesn&#8217;t mean it&#8217;s not high quality. Also, if I get 200 views but nearly everyone fully reads it, it&#8217;s better than getting 1,000 views where only 200 read it.</p>\n<p>In the latter example, I got views but I didn&#8217;t impact. My goal is to impact, and Medium&#8217;s &#8220;reads&#8221; stat helps me determine that very quickly.</p>\n<p>Referrals are also nice on Medium. I can quickly see where traffic is coming from, real time, and go see what that referring source said about my post or take part in the conversations.</p>\n<p>Most importantly, regarding referrals, is that <em>I can see them per article</em>. This is a feature I would love to see hit WordPress.com stats.</p>\n<p>Hardcore stats folks won&#8217;t be totally satisfied with Medium. And to my knowledge, you can add your own Google Analytics account to your medium account, so you have to live with what you get. For most of us, that is enough.</p>\n<p>I think there is a ton of opportunity for a solid stats plugin for WordPress that either makes great use of Google Analytics within the WordPress Dashboard, or rolls their own (outside of WordPress.com / Jetpack).</p>\n<h3>Medium-sized exposure</h3>\n<p>One element I was pretty curious of was exposure. I know that some articles have done really well on Medium, but I&#8217;m not sure what causes that.</p>\n<p>In my case, the article has had a couple thousand pageviews in a matter of an hour or two, so that&#8217;s great. However, I think it took off on Twitter and Designer News much more so than from Medium itself, besides recommendations</p>\n<p>For recommendations, it&#8217;s like a rolling snowball. I get emails from Medium every day telling me what my Twitter friends recommended on Medium. I imagine that the more people recommend my story, the more email and other distribution the story gets. That&#8217;s good, because I&#8217;ve always figured recommendation buttons were mostly useless on sites, and really only social proof for other would-be readers that are already on some kind of archive.</p>\n<p>As far as I can tell, Medium doesn&#8217;t really have a way to highlight new stories beyond recommendations. And they very much de-emphasize post dates and time-based feeds.</p>\n<h3>Tag, you&#8217;re not it</h3>\n<p>One last thing was categorization and tags. Medium no longer allows regular users to put a post in any particular category, as far as I can tell. You have to be some sort of more-certified user or author to put a post in one of their channels or tags or whatever they call them.</p>\n<p>I thought this was a little frustrating. Without some kind of tag, how can I put my story in a feed that others that don&#8217;t already follow me can find? I think it has potential to prevent lesser-known writers from ever being exposed to more eyeballs, because there is a much smaller initial audience to read their post.</p>\n<p>Furthermore, if I had 100 or 1,000 posts on Medium someday, it would make it harder for me to filter my own stuff. I often go back to certain categories on Post Status to see what I wrote about a particular topic in the past.</p>\n<h3>Notes and public previews</h3>\n<p>A couple of things that Medium excels at are notes and public previews. I can easily annotate my post in the margins, without putting the notes in the content (which I often do in WordPress). It&#8217;s very similar to Google Docs.</p>\n<p><img class="aligncenter size-large wp-image-7373" src="https://poststatus.com/wp-content/uploads/2015/01/medium-notes-752x265.jpg" alt="medium-notes" width="752" height="265" /></p>\n<p>And public previews and draft sharing is exceptional. I have public preview functionality on Post Status, and it works okay; it&#8217;s built into Medium, and it has great placement and is easy to use.</p>\n<p>I think WordPress could build these features in. They simply make publishing better. Nearly every site could utilize a tool like this and I think that while there are plugin options for accomplishing these tasks, it&#8217;s pretty core to the experience and mission of publishing.</p>\n<h3>Plenty to gleam, but not a silver bullet</h3>\n<p>All in all, I liked publishing on Medium.</p>\n<p>No, I don&#8217;t own the content. Though they do have a one-click button for exporting everything you&#8217;ve ever written. (<em>edit: reader and former Medium employee Evan Solomon notes I do own the content itself. I guess I mean it more in the sense that I don&#8217;t own the platform, and can&#8217;t guarantee my content will always be there.</em>)</p>\n<p>I also can&#8217;t use my own domain. If I published there long term, that would be a problem.</p>\n<p>It&#8217;s unfair to compare Medium directly to WordPress. But from a publishing perspective, I&#8217;d say there are definitely elements WordPress could learn from. However, we shouldn&#8217;t just jump completely on the simplification bandwagon.</p>\n<p>Now, in terms of who can definitely learn from Medium, it&#8217;s WordPress.com. If I were going with a hosted platform, owning my own domain and being able to choose my own theme are pretty much the only reasons I&#8217;d choose WordPress.com versus Medium. The overall account (especially) and publishing experiences (marginally) feel more polished on Medium than WordPress.com.</p>\n<p>I don&#8217;t know if I&#8217;ll publish on Medium again. Probably, when I find a circumstance that this blog or my personal blog aren&#8217;t the right place. It was fun to play with a shiny new tool, but I&#8217;m still a WordPress guy, and I think we&#8217;re doing alright.</p>";s: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, 16 Jan 2015 17:50:08 +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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";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:13:"\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:"WPTavern: The WordPress Foundation Creates a Traveling Scholarship in Memory of Kim Parsell";s: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:28:"http://wptavern.com/?p=37415";s: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:101:"http://wptavern.com/the-wordpress-foundation-creates-a-traveling-scholarship-in-memory-of-kim-parsell";s: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:3126:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/KimParsellDocsTeamMeetup.jpg" rel="prettyphoto[37415]"><img class="size-full wp-image-36621" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/KimParsellDocsTeamMeetup.jpg?resize=750%2C460" alt="Kim Parsell With the Docs Team Meetup in Cincinnati 2013" /></a>Kim Parsell With the Docs Team Meetup in Cincinnati 2013\n<p><a title="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away" href="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away">Kim Parsell once told me</a> that attending WordCamp San Francisco 2014 was one of the best experiences of her life. It was her first WordCamp San Francisco and although she was unemployed at the time, she was able to attend thanks to financial assistance received from the <a title="http://wordpressfoundation.org/" href="http://wordpressfoundation.org/">WordPress Foundation</a>. Knowing how much it meant to her to attend the event, the Foundation has launched a <a title="https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/" href="https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/">new scholarship program in memory of Kim </a>to provide women in the WordPress community the same opportunity.</p>\n<p>The details of the scholarship are as follows:</p>\n<ul>\n<li>It will be a scholarship for a woman contributor with financial need who has never attended the event before.</li>\n<li>It will be limited to WCSF’s replacement event rather than available for any WordCamp.</li>\n<li>When travel scholarships are announced for the event, this specific memorial scholarship will be mentioned in the post.</li>\n<li>It will cover the ticket cost, flight, and lodging.</li>\n<li>It will be awarded once per year.</li>\n<li>It will be funded by the Foundation.</li>\n<li>It will be awarded by the community team (or whoever within the project is overseeing travel scholarships that year) to the recipient 3 months in advance of the event.</li>\n</ul>\n<p>Jen Mylo, who helped turn the idea into a reality, says the program will likely live inside of a broader scholarship program, &#8220;The assumption is that it will live within a broader travel scholarship program that can be worked on this year (SF was a test of the idea, but not intended to be the only WC that would offer assistance in the future if it worked well, which we haven’t yet worked out).&#8221;</p>\n<p>By limiting the scholarship to women, the goal is to encourage more women to get involved with the project. Mylo also explained why it&#8217;s limited to first time attendees, &#8220;As a Kim memorial, we wanted this to be very Kim-specific, and that first-time experience is what we want to provide someone in her memory.&#8221;</p>\n<p>Although there <a title="https://twitter.com/scottbasgaard/status/551531483056578560" href="https://twitter.com/scottbasgaard/status/551531483056578560">was talk</a> of possibly naming a WordPress release after Kim, this is a much more fitting memorial as it allows her to contribute to the project for years to come.</p>";s: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, 16 Jan 2015 01:08: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:13:"\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:"WPTavern: WPWeekly Episode 177 – Hanging Out With GoDaddy";s: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:44:"http://wptavern.com?p=37411&preview_id=37411";s: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:65:"http://wptavern.com/wpweekly-episode-177-hanging-out-with-godaddy";s: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:5253:"<p>Over the years, GoDaddy has become a company <a title="http://chrislema.com/turning-around-godaddy/" href="http://chrislema.com/turning-around-godaddy/">people love to hate</a>. Whether it&#8217;s poor server performance or the actions of former CEO, Bob Parsons, the company has garnered a negative reputation. Within the last two years however, GoDaddy has implemented several changes to turn the company around.</p>\n<p>In this episode, <a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by three GoDaddy employees:</p>\n<ul>\n<li><a title="https://twitter.com/kingjeff2" href="https://twitter.com/kingjeff2">Jeff King</a>, General Manager of Hosting and Security</li>\n<li><a title="https://twitter.com/ifyouwillit" href="https://twitter.com/ifyouwillit">Mendel Kurland</a>, WordPress evangelist</li>\n<li><a title="https://twitter.com/k_payne" href="https://twitter.com/k_payne">Kurt Payne</a>, developer of the <a title="https://wordpress.org/plugins/p3-profiler/" href="https://wordpress.org/plugins/p3-profiler/">P3 plugin</a> and GoDaddy&#8217;s Managed WordPress platform</li>\n</ul>\n<p>We discuss changes made after Bob Parsons stepped down as CEO and how they&#8217;ve helped create a new culture within the company. Kurland describes what it&#8217;s like to be the first WordPress evangelist and explains his role in helping to establish relationships with people in the WordPress ecosystem. Payne provides details on GoDaddy&#8217;s <a title="https://www.godaddy.com/pro/managed-wordpress-hosting" href="https://www.godaddy.com/pro/managed-wordpress-hosting">managed WordPress hosting</a> platform and what makes it different from competitors.</p>\n<p>Later in the show, we talk about the decision to <a title="http://wptavern.com/godaddy-removes-ticketing-and-email-support-in-favor-of-phone-and-live-chat" href="http://wptavern.com/godaddy-removes-ticketing-and-email-support-in-favor-of-phone-and-live-chat">remove ticketing and email support</a> in favor of phone and live chat support. We find out the lessons the company learned when it <a title="http://wptavern.com/without-notifying-customers-godaddy-and-mediatemple-auto-activate-sidekick" href="http://wptavern.com/without-notifying-customers-godaddy-and-mediatemple-auto-activate-sidekick">auto activated SIDEKICK</a> on customer&#8217;s sites without notifying them. Near the end of the interview, King shares details on a new product called <a title="https://www.godaddy.com/pro" href="https://www.godaddy.com/pro">GoDaddy Pro,</a> which will make it a lot easier to manage clients on the GoDaddy platform.</p>\n<p>The biggest takeaway from the interview is that, GoDaddy has made and continues to make radical changes. It&#8217;s not the same company of a few years ago. If you&#8217;ve written them off in the past, I encourage you to give them a second look.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/wordpress-4-2-will-automatically-enable-pretty-permalinks-for-new-sites-on-installation" href="http://wptavern.com/wordpress-4-2-will-automatically-enable-pretty-permalinks-for-new-sites-on-installation">WordPress 4.2 Will Automatically Enable Pretty Permalinks for New Sites on Installation</a><br />\n<a title="http://wptavern.com/buddypress-2-2-beta-1-now-available-for-testing" href="http://wptavern.com/buddypress-2-2-beta-1-now-available-for-testing">BuddyPress 2.2 Beta 1 Now Available for Testing</a><br />\n<a title="http://wptavern.com/preview-the-new-design-for-the-wordpress-themes-directory" href="http://wptavern.com/preview-the-new-design-for-the-wordpress-themes-directory">Preview the New Design for the WordPress Themes Directory</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/wp-email-logs/" href="https://wordpress.org/plugins/wp-email-logs/">WP Email Logs Plugin</a> stores any email sent by the wp_mail() function in a log file within the database. Details logged include: from and to user ids, from and to email address, mail subject, mail content, component, type, send date, and more.</p>\n<p><a title="https://wordpress.org/plugins/internal-notes/" href="https://wordpress.org/plugins/internal-notes/">Internal Notes</a> adds a simple textarea to the post and page editors where you can add notes regarding a particular post or page.</p>\n<p><a title="https://wordpress.org/plugins/facebook-feed/" href="https://wordpress.org/plugins/facebook-feed/">FaceBook Feed</a> allows you to easily display a customizable feed of your Facebook Page on the frontend of WordPress.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 28th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #177:</strong><br />\n</p>";s: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, 16 Jan 2015 00:44:02 +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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:13:"\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:77:"Post Status: WordPress and the new European Union VAT (Value-Added Tax) rules";s: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:30:"https://poststatus.com/?p=7318";s: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:40:"https://poststatus.com/wordpress-vat-eu/";s: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:16493:"<p>On January 1st, the EU rolled out some new rules for handling the VAT (Value-Added Tax). Let&#8217;s start with the obvious: <strong>I&#8217;m not a lawyer or accountant and this post is just me chit chatting and doesn&#8217;t constitute any official form of advice or whatever other legal disclaimer you need, consider this it.</strong></p>\n<p>For most non-Europeans, the VAT may be unfamiliar, but it is relatively similar to an American sales tax. Until now, non-European businesses could basically ignore VAT (unless they have a European office), and Europeans were able to utilize the VAT rate of their home office. Now, that&#8217;s changing.</p>\n<p>Big companies from outside the EU, of course, found some nice loopholes to avoid high VAT rates even when they have a place of business in Europe; they did so by registering their EU operations in Luxembourg, where the VAT rate is lowest. Then, they only had to pay the Luxembourg rate, no matter who they sold to in the EU. <em>The EU is now changing the rules so that the VAT rate of the consumer&#8217;s purchasing location is the rate applied, no matter where the merchant is from</em>.</p>\n<h3>General VAT information</h3>\n<p>Getting easy to read information on VAT is hard. The purpose of this post is to provide that sort of information within the context of WordPress. However, for the best way to read VAT stuff in general, I&#8217;d recommend <a href="http://www.vatlive.com/eu-vat-rules/2015-digital-services-moss/2015-digital-services-changes/">VAT Live</a>.</p>\n<h3>Impact on European businesses</h3>\n<p>This, in a nutshell, is the big deal. Previously, European merchants knew their own VAT rate and applied that rate to everyone they needed to apply it to. Now there are something like 28 different rates in the EU and merchants have to apply them based on the purchaser, not themselves.</p>\n<p>For EU merchants, this sucks. Starting two weeks ago, they now have to track a whole lot of stuff and (theoretically) pay taxes to all sorts of entities. The EU has organizations that help with this, and now there are businesses like <a href="http://www.taxamo.com/">Taxamo</a> that are helping handle the calculations and whatnot for these merchants.</p>\n<p>However, it appears actually complying is <a href="http://euvataction.org/2015/01/09/eu-vat-how-did-the-first-week-go-its-not-pretty/">hard for small businesses and large</a> so far. For Europeans, these rules are a complete mess and is truly going to screw up the digital good economy for European merchants.</p>\n<h3>Impact on non-European businesses</h3>\n<p>For non-European businesses, the new VAT rules are a lot fuzzier.</p>\n<p>In short, nothing has changed. There have been European rules in place since 2003 saying that non-European merchants should pay VAT when selling to European consumers &#8212; even for digital goods. The thing is: <em>they didn&#8217;t enforce this because non-Europeans obviously aren&#8217;t under jurisdiction of European authorities</em>.</p>\n<p><span class="pullquote alignright">So, most merchants not in Europe &#8212; but selling to Europeans &#8212; have ignored existing rules for years, and we still can. But there is a but.</span> According to some places I&#8217;m reading, there is the potential that American and other non-European governments could cooperate and even enforce European VAT rules on its citizens.</p>\n<p><strong>Is this likely? </strong>Heck if I know. I honestly can&#8217;t decide if companies like Taxamo are just trying to churn up fear to get more customers (which is natural) or if Americans and other non-Europeans should really pay attention to VAT.</p>\n<p>My gut tells me this policy is terrible and won&#8217;t last, at least without some kind of revenue floor (like 1 million Euros or the equivalent per year, or something). But that change could be years in the making. What until then?</p>\n<h3>The determining factors and implications</h3>\n<p>In the end, it really depends on how willing you are to roll the dice. In my heart of hearts, I hate the idea of paying a foreign government tax revenue for a digitial good when they have no jurisdiction over me.</p>\n<p>Even &#8220;digital good&#8221; is hard to define, though the UK attempts to <a href="https://www.gov.uk/government/publications/revenue-and-customs-brief-46-2014-vat-rule-change-and-the-vat-mini-one-stop-shop-additional-guidance/revenue-and-customs-brief-46-2014-vat-rule-change-and-the-vat-mini-one-stop-shop-additional-guidance#section-2">define qualified services in this document</a>.</p>\n<p>I mean, I don&#8217;t even have to charge sales tax to other states in the US when Americans buy from me. Ugh. So, I really, really want to just ignore the EU &#8212; as an American at least &#8212; and tell them to screw off and catch me if they can.</p>\n<p>But.</p>\n<p>There are a few buts this time.</p>\n<p><strong>1)</strong> It is risky. Because it is possible that the IRS will collaborate with EU member states to collect tax revenue from American digital merchants, as companies like Taxamo suggest can/will happen. I don&#8217;t want to get hit with some kind of audit or fine from the IRS years down the road.</p>\n<p>A friend did make a good point to me recently, noting that the IRS barely enforces digital goods taxes in the United States, so why would they do so on behalf of a foreign entity?</p>\n<p><strong>2)</strong> Are European buyers breaking the law if I don&#8217;t comply as a seller? I don&#8217;t know, but a friend of mine that is complying brought that up. I can&#8217;t find much documentation on this front, but I wouldn&#8217;t want to cause European customers to break their laws by buying from me if I don&#8217;t comply.</p>\n<p><strong>3)</strong> It makes my product more expensive to European buyers if I comply, and it hurts my feelings as an American (Boston tea party, man!), but realistically, services will &#8212; and already are &#8212; come to save the EU with relatively simple ways to comply.</p>\n<h3>Enforcement and methods for complying</h3>\n<p>From what I can tell, each EU member state has to do its own collecting and enforcing. The EU is the regulating body but not the ones that will put feet on pavement to go and enforce these rules and taxes.</p>\n<p><span class="pullquote alignright">The safe bet seems to be to pay up and deal with it.</span> But I have a feeling you could ignore these rules (if you aren&#8217;t European) and probably get by just fine.</p>\n<p>Alternatively, non-EU merchants could just ignore the EU and don&#8217;t sell to anyone there. Well, I won&#8217;t do that. I have a lot of EU-based readers and (potentially) customers. But I am pissed about these rules; <em>the European Union is hurting small businesses</em>, and the worldwide economy.</p>\n<p>I feel even worse for my EU-based friends. They don&#8217;t even have the option of ignoring EU member states. Penalties for non-compliance for them are even more frightening. They are being excluded as consumers of internationally distributed digital goods and also being pinned down as merchants by these overly cumbersome and irresponsibly drafted rules.</p>\n<h3>Self hosting eCommerce is even harder now</h3>\n<p>One additional implication of all of this is this: it is now even harder to self-host your eCommerce. If you sell at a marketplace like Etsy or ThemeForest, they can better (at least attempt to) manage the VAT rules and keep you safe. Though, from what I&#8217;ve heard, even some big marketplaces are struggling big-time with these new regulations.</p>\n<p>If you sell on your own, you have to figure out new methods on your own or with your software of choice.</p>\n<h3>How to comply with VAT</h3>\n<p>Complying with VAT has turned into a business opportunity, and &#8220;solutions&#8221; are popping up.</p>\n<p>No matter which solution you use, you&#8217;ll need to learn about <a href="http://www.vatlive.com/eu-vat-rules/2015-digital-services-moss/mini-one-stop-shop-moss/">VATMOSS</a>. VATMOSS stands for Value-Added Tax Mini One Stop Shop. Basically, you can register with one EU country and thereafter just deal with that country for quarterly &#8220;returns&#8221; or payments.</p>\n<p>If you go through the UK, they have <a href="https://www.gov.uk/register-and-use-the-vat-mini-one-stop-shop">information on registering for VATMOSS</a>.</p>\n<p>The EU member countries will divvy up the differences in taxes collected on their own.</p>\n<p>For non-EU providers, <a href="http://www.vatlive.com/eu-vat-rules/2015-digital-services-moss/non-eu-providers-vat-e-services-voes/">VoES</a> (VAT on Electronic Services) is also worth learning about if you&#8217;re providing &#8220;digital services.&#8221;</p>\n<h3>General needs</h3>\n<p>There are some general needs for your store if you&#8217;re going to comply with VAT</p>\n<ul>\n<li>Know <a href="http://www.vatlive.com/eu-vat-rules/2015-digital-services-moss/2015-digital-services-changes/">if your style of eCommerce applies</a></li>\n<li>You need to know the country of origin for the buyer</li>\n<li>You need the buyer&#8217;s IP address</li>\n<li>You need the country of origin for the buyer&#8217;s credit card</li>\n</ul>\n<p>Honestly, some WordPress plugins are playing catchup to make these things possible and / or easier.</p>\n<p>In addition to information collection, information storage is also important. You&#8217;re supposed to store this stuff for up to ten years! You are also supposed to have ready-made reports for various authorities.</p>\n<p>Some services are helping with the calculations, others with the whole gambit.</p>\n<h4>Taxamo</h4>\n<p>The number one player I&#8217;ve seen in the VAT compliance market is <a href="http://www.taxamo.com/">Taxamo</a>. They are working hard to market their product, which identifies the consumer&#8217;s country, applies the appropriate VAT, integrates with your eCommerce application, stores and creates reports of your data, and fills out a quarterly return form on your behalf. They do so for 0.20 Euros per transaction, once you surpass 20 transactions per month.</p>\n<p>Taxamo is trying to handle pretty much every part of the handshake for you, from collecting to reporting. Here&#8217;s their flow:</p>\n<p><img class="aligncenter size-large wp-image-7350" src="https://poststatus.com/wp-content/uploads/2015/01/taxamo-752x416.jpg" alt="taxamo" width="752" height="416" /></p>\n<p>Taxamo has a few integrations:</p>\n<p><a href="https://wordpress.org/plugins/rcp-taxamo/">Taxamo for Restrict Content Pro</a></p>\n<p><a href="https://easydigitaldownloads.com/extensions/taxamo-integration/">Taxamo for Easy Digital Downloads</a></p>\n<p><a href="http://www.woothemes.com/products/woocommerce-taxamo/">Taxamo for WooCommerce</a></p>\n<p>EU VAT API</p>\n<p>The <a href="https://vatinfo.eu/">EU VAT API</a> is more hands-on, but probably a nice option for developers looking for a minimilist solution. Developed by Radish Concepts (savvy readers may recognize WordPress community member Coen Jacobs, who works with Radish), the EU VAT API is a simple, but seemingly elegant solution for the calculation of the various EU VAT rates.</p>\n<p>The EU VAT API has WordPress integration plugins for both <a href="https://wordpress.org/plugins/woocommerce-vatinfoeu/">WooCommerce</a> and <a href="https://wordpress.org/plugins/edd-vatinfoeu/">Easy Digital Downloads</a>.</p>\n<p><em>edit: Coen Jacobs tells me that like Taxamo, the EU VAT API also handles more than just rates, but they haven&#8217;t fully documented all of the other features yet.</em></p>\n<h4>Other methods</h4>\n<p>The <a href="https://vatapi.com/">VAT API</a> is another simple API that looks good, but I don&#8217;t know as much about it.</p>\n<h3>Compliance with specific eCommerce systems</h3>\n<p>The big WordPress eCommerce players pretty much all have VAT compliance methods in place by now:</p>\n<p>WooCommerce &#8211; they&#8217;re heavily on the Taxamo bandwagon, and have <a href="http://www.woothemes.com/products/woocommerce-taxamo/">this extension</a>. But there&#8217;s also the <a href="https://github.com/radishconcepts/woocommerce-vatinfoeu">Radish Concepts one</a> noted earlier.They also have a <a href="http://www.woothemes.com/products/eu-vat-number/">super slim extension</a> where customers can enter an EU VAT number, that uses an API to calculate the cost. There&#8217;s a <a href="https://wordpress.org/plugins/woocommerce-eu-vat-assistant/">free plugin on WordPress.org</a> too. Also, <a href="http://develop.woothemes.com/woocommerce/2014/11/attention-theme-authors-frontend-changes-ahead-in-woocommerce-2-3/">WooCommerce 2.3 is beefing up some features</a> that will make it better capable for handling some of the more nuanced VAT rules.</p>\n<p>Easy Digital Downloads &#8211; Has a lot of options. Here&#8217;s their <a href="https://easydigitaldownloads.com/extensions?extension_s=VAT&action=extension_search">site tag for &#8220;VAT&#8221; that lists the options</a>.</p>\n<p><a href="http://getshopped.org">WP E-Commerce</a> &#8211; Has one coming, but it&#8217;s not complete yet.</p>\n<p><a href="http://jigoshop.com">Jigoshop</a> &#8211; I can&#8217;t find any references to the new VAT rules, but since these guys are based in Europe, surely they either have something or are working on it.</p>\n<p><a href="https://ithemes.com/2014/12/30/ithemes-exchange-vat-add-updated-ready-vat-moss/">iThemes Exchange</a> &#8211; Has what appears to be an in-house VAT add-on, up to date for 2015.</p>\n<h3>Who is complying so far?</h3>\n<p>I was interested in who is actually complying with the new VAT rules so far &#8212; both Europeans and non-Europeans.</p>\n<p>I&#8217;ve received 120 votes from shop owners selling digital goods in my poll. I think that&#8217;s a pretty great response. Here are the results:</p>\n<p><strong>Question: Do you have an eCommerce store that sells digital goods? Are you complying with the new EU VAT rules?</strong></p>\n<p><img class="aligncenter size-large wp-image-7351" src="https://poststatus.com/wp-content/uploads/2015/01/VAT-poll-compliance-752x322.jpg" alt="VAT-poll-compliance" width="752" height="322" /></p>\n<table>\n<thead>\n<tr>\n<th>Option</th>\n<th>Count</th>\n<th>%</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>I&#8217;m a European merchant and complying with new VAT rules</td>\n<td>27</td>\n<td>22.5%</td>\n</tr>\n<tr>\n<td>I&#8217;m a European merchant and not yet complying with new VAT rules</td>\n<td>20</td>\n<td>16.67%</td>\n</tr>\n<tr>\n<td>I&#8217;m a non-European merchant and complying with new VAT rules for European customers</td>\n<td>6</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>I&#8217;m a non-European merchant and not complying with new VAT rules for European customers</td>\n<td>31</td>\n<td>25.83%</td>\n</tr>\n<tr>\n<td>I&#8217;m a non-European merchant and I no longer sell to European customers</td>\n<td>12</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>I don&#8217;t know what you&#8217;re talking about</td>\n<td>3</td>\n<td>2.5%</td>\n</tr>\n<tr>\n<td>I haven&#8217;t decided what to do yet</td>\n<td>11</td>\n<td>9.17%</td>\n</tr>\n<tr>\n<td>Other:</td>\n<td>10</td>\n<td>8.33%</td>\n</tr>\n</tbody>\n</table>\n<p>I guess the numbers aren&#8217;t terribly surprising, though I am quite surprised by how many Europeans are not complying.</p>\n<h3>Now what?</h3>\n<p>I think most of us will agree that these rules suck. The most organized thing I&#8217;ve seen to protest them is the <a href="http://euvataction.org/">EU VAT Action site</a>. You should go there and see how to petition and participate in the debate if you are upset by these changes.</p>\n<p>Quite personally, I have to figure out what to do. My primary reasoning for doing this research was to decide if I need to comply. I wanted to share what I&#8217;ve learned with you.</p>\n<p>In addition to the poll I did, I also asked some friends running businesses. I think you&#8217;d be surprised just how many &#8220;big&#8221; American companies aren&#8217;t complying (big in the sense of the WordPress space).</p>\n<p>It does keep coming back to me, what one friend told me about how easy it was to register for VATMOSS and get his shop setup though. I guess I have a few more days to decide.</p>\n<p>If you haven&#8217;t figured out what you&#8217;re going to do with your shop yet, I hope this has helped. If you plan to sell some digital goods in the future, this should be a decent guide to get the lay of the land in terms of selling digital goods with WordPress and complying with the new European VAT rules.</p>";s: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, 15 Jan 2015 21:52:10 +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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";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:13:"\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:32:"Matt: Venture Capital in the 80s";s: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:21:"http://ma.tt/?p=44595";s: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:"http://ma.tt/2015/01/venture-capital-in-the-80s/";s: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:198:"<p>For the best explanation of what&#8217;s going on with capital markets now <a href="http://reactionwheel.net/2015/01/80s-vc.html">it might be best to look to Venture Capital in the 1980s</a>.</p>";s: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, 15 Jan 2015 18:30: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:13:"\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:56:"WPTavern: Papi Project Adds a Page Type API to 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=37377";s: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:66:"http://wptavern.com/papi-project-adds-a-page-type-api-to-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4177:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/pages.jpg" rel="prettyphoto[37377]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/pages.jpg?resize=1024%2C498" alt="photo credit: zenobia_joy - cc" class="size-full wp-image-37381" /></a>photo credit: <a href="https://www.flickr.com/photos/zenobia_joy/5509949256/">zenobia_joy</a> &#8211; <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<p>The <a href="http://codex.wordpress.org/Pages" target="_blank">Pages</a> feature, although generated dynamically in WordPress, was designed for use with static, evergreen content. Pages have always been somewhat simpler than posts, which received a major boost to flexibility when custom <a href="http://codex.wordpress.org/Post_Types" target="_blank">post types</a> came on the scene in version 3.0.</p>\n<p><a href="https://twitter.com/frozzare" target="_blank">Fredrik Forsmo</a>, a systems developer in Stockholm, Sweden, wanted to do more with pages and decided that WordPress needs a Page Type API. He created <a href="https://wp-papi.github.io/" target="_blank">Papi</a>, an open source project that offers a less traditional approach to working with fields and page types.</p>\n<p>&#8220;Papi was started because creating page types didn&#8217;t exists in a good way,&#8221; Forsmo said. &#8220;<a href="https://wordpress.org/plugins/advanced-custom-fields/" target="_blank">ACF</a> and other plugins only support custom fields on different post types. This is not a good way to create page types. Additionally, the URL structure isn&#8217;t ideal with custom post types.&#8221;</p>\n<p>Inspired by the lack of adequate solutions to address this need, Forsmo spent a year developing Papi in his spare time. The idea for the project is based on EPiServer&#8217;s <a href="http://pagetypebuilder.codeplex.com/" target="_blank">Page Type Builder</a>, which offers a more object oriented method of building pages. Papi brings this same approach to WordPress.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/add-new-page-type-view.png" rel="prettyphoto[37377]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/add-new-page-type-view.png?resize=1025%2C448" alt="add-new-page-type-view" class="aligncenter size-full wp-image-37397" /></a></p>\n<p>Essentially, it allows you to create page types using an existing post type or using custom post types. It doesn&#8217;t have an admin user interface for adding all the fields. &#8220;Papi uses classes in PHP, where one class represents one page type and in your class you add all fields you need,&#8221; Forsmo explained.</p>\n<p>After running it in production, he discovered that it&#8217;s easy to work with when it&#8217;s necessary to add new fields. Using Papi&#8217;s &#8220;page&#8221; post type, you can create different page types with different fields on the same post type, while maintaining a clean URL structure.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/start-page-example-page.png" rel="prettyphoto[37377]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/start-page-example-page.png?resize=1025%2C594" alt="start-page-example-page" class="aligncenter size-full wp-image-37401" /></a></p>\n<p>Forsmo believes that this is the way pages should work in WordPress. Although I don&#8217;t know if the idea will catch on with developers, the project seems useful for those rare scenarios where custom post types aren&#8217;t a good match.</p>\n<p>Papi isn&#8217;t on the WordPress plugin directory but can be downloaded from <a href="https://wp-papi.github.io/" target="_blank">GitHub</a>. It&#8217;s also available as a <a href="https://packagist.org/packages/wp-papi/papi" target="_blank">Composer package</a>. Papi currently works on WordPress 3.8+ (3.9+ if on HHVM) and PHP 5.3 and above. If you want to experiment with it, Forsmo has written <a href="http://papi.readthedocs.org/en/latest/" target="_blank">documentation</a> on how to get started, how to add page type meta boxes and options, functions available to use in your page type, and how to register a page type directory.</p>";s: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, 15 Jan 2015 16: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:"WPTavern: Edit BuddyPress Activity Posts on the Front End";s: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:28:"http://wptavern.com/?p=37251";s: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:67:"http://wptavern.com/edit-buddypress-activity-posts-on-the-front-end";s: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:3849:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-edit-activity.png" rel="prettyphoto[37251]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-edit-activity.png?resize=1025%2C465" alt="buddypress-edit-activity" class="aligncenter size-full wp-image-37345" /></a></p>\n<p>Earlier this week, the folks at <a href="http://www.buddyboss.com/" target="_blank">BuddyBoss</a> released <a href="http://wptavern.com/new-buddypress-global-search-plugin-adds-unified-search-of-all-buddypress-components" target="_blank">BuddyPress Global Search</a>, a new plugin that allows users to search through every BuddyPress component. The company&#8217;s founder, Michael Eisenwasser, was inspired to give back to the project by creating a string of free plugins that benefit the whole community.</p>\n<p><a href="https://wordpress.org/plugins/buddypress-edit-activity/" target="_blank">BuddyPress Edit Activity</a> is the team&#8217;s latest contribution. This plugin is another handy tool that is likely to be useful for a wide range of social networks. It allows users to edit their activity posts and replies on the front end, similar to the &#8220;Edit Post&#8221; feature that you see available on Facebook.</p>\n<p>Once installed, you&#8217;ll find a new edit option added the activity meta buttons.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-activity-edit-button.png" rel="prettyphoto[37251]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-activity-edit-button.png?resize=1025%2C351" alt="buddypress-activity-edit-button" class="aligncenter size-full wp-image-37348" /></a></p>\n<p>Clicking the button allows users to edit their own activity updates and replies. It gives them the opportunity to correct errors or add to their posts, instead of having to completely delete the post and start over.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-activity-editing.png" rel="prettyphoto[37251]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-activity-editing.png?resize=1025%2C289" alt="buddypress-activity-editing" class="aligncenter size-full wp-image-37360" /></a></p>\n<p>The plugin&#8217;s settings screen lets administrators turn editing on/off for activity posts and replies, and includes the ability to limit the feature to admins only. The panel also has an option to disable editing after a set number of minutes, a feature often available in plugins that extend WordPress comments. Setting it to zero makes comments editable indefinitely.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/bp-activity-fronted-edit-settings.png" rel="prettyphoto[37251]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/bp-activity-fronted-edit-settings.png?resize=1025%2C524" alt="bp-activity-fronted-edit-settings" class="aligncenter size-full wp-image-37362" /></a></p>\n<p>I tested the plugin and found that it works well and fits in like a natural part of BuddyPress. It automatically adapts to your current active theme and doesn&#8217;t force any obtrusive styles on the activity stream.</p>\n<p><a href="https://wordpress.org/plugins/buddypress-edit-activity/" target="_blank">BuddyPress Edit Activity</a> may seem like a small thing but it&#8217;s one of those extensions that adds an intuitive feature that greatly improves interaction between users. This is a feature that users have grown to expect based on experience with other social networks.</p>\n<p>BuddyBoss is hitting home runs with its most recent plugin releases, both of which are useful for nearly any type of BuddyPress network. The theme shop is strategically positioning itself for becoming more well-known in the market with its indispensable free plugins.</p>";s: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, 15 Jan 2015 07:10: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:90:"WPTavern: WP Engine Open Sources Mercury Vagrant for Running WordPress on HHVM and PHP-FPM";s: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:28:"http://wptavern.com/?p=37296";s: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:100:"http://wptavern.com/wp-engine-open-sources-mercury-vagrant-for-running-wordpress-on-hhvm-and-php-fpm";s: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:3808:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg" rel="prettyphoto[37296]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg?resize=1025%2C427" alt="wp-engine" class="aligncenter size-full wp-image-34106" /></a></p>\n<p><a href="http://wpengine.com/" target="_blank">WP Engine</a> Labs, in collaboration with the <a href="https://github.com/Varying-Vagrant-Vagrants/VVV" target="_blank">VVV</a> creators at <a href="http://10up.com/" target="_blank">10up</a>, released <a href="https://github.com/wpengine/hgv" target="_blank">Mercury Vagrant (HGV)</a> today. The new open source Vagrant configuration uses HHVM to serve PHP code. It also includes the ability to run your development site using standard PHP to test against for comparison.</p>\n<p>Mercury Vagrant is useful for any WordPress developer who wants to develop on top of HHVM. Last year, WP Engine partnered with 10up to launch Mercury, its new <a href="http://wptavern.com/wp-engine-partners-with-10up-to-launch-enterprise-hhvm-wordpress-hosting-platform" target="_blank">enterprise HHVM WordPress hosting platform</a>. Mercury Vagrant was commissioned to help WP Engine customers with local development, but it was not designed to be specific to the host&#8217;s infrastructure. It is GPL-licensed and meant to be used with any host.</p>\n<p>After provisioning your VM, Mercury Vagrant includes the following:</p>\n<ul>\n<li><a href="http://percona.com/" target="_blank">Percona DB</a></li>\n<li><a href="http://php-fpm.org/" target="_blank">PHP-FPM</a></li>\n<li><a href="http://hhvm.com/" target="_blank">HHVM</a></li>\n<li><a href="http://nginx.com/" target="_blank">Nginx</a></li>\n<li><a href="http://varnish-cache.org/" target="_blank">Varnish</a></li>\n<li><a href="http://memcached.org/" target="_blank">Memcached</a></li>\n</ul>\n<p>HGV creates four different sites, with built-in documentation, for running code with either HHVM or PHP-FPM:</p>\n<ul>\n<li><a href="http://hgv.dev" target="_blank">hgv.dev</a> &#8212; General documentation and links for all of the tools</li>\n<li><a href="http://hhvm.hgv.dev" target="_blank">hhvm.hgv.dev</a> &#8212; A new WordPress installation running on HHVM</li>\n<li><a href="http://php.hgv.dev" target="_blank">php.hgv.dev</a> &#8212; A new WordPress installation running on PHP-FPM (PHP 5.5)</li>\n<li><a href="http://admin.hgv.dev" target="_blank">admin.hgv.dev</a> &#8212; Useful administrative tools (phpMyAdmin, etc.)</li>\n</ul>\n<p>It also includes URLs for testing Varnish caching:</p>\n<p><a href="http://admin.hgv.dev" target="_blank">cache.php.hgv.dev</a><br />\n<a href="http://cache.hhvm.hgv.dev" target="_blank">cache.hhvm.hgv.dev</a></p>\n<p>WP Engine labs is committed to supporting and improving Mercury Vagrant for the foreseeable future. The team has collaborated with Facebook to resolve many of the previous issues of using HHVM with WordPress sites. Even if you&#8217;re using different host that offers HHVM, this open source Vagrant configuration is a solid, professionally-supported tool for local testing. If you need help <a href="http://wpengine.com/mercury/how-to-start/" target="_blank">getting started</a>, WP Engine created a visual walk through and tutorial videos to help you set up your local machine with HHVM with Vagrant.</p>\n<p><a href="https://github.com/wpengine/hgv" target="_blank">Mercury Vagrant</a> is a community tool that will go a long way towards helping developers become more familiar with running sites on HHVM. <a href="http://wpengine.com/mercury" target="_blank">Benchmarks comparing WordPress sites on HHVM vs PHP-FPM</a> indicate a 600% performance increase with HHVM. Dramatic performance increases in this range should have more hosts looking to add support for HHVM in the near future.</p>";s: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, 14 Jan 2015 22:02: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:71:"WPTavern: I Love Composer, I Love WordPress, But I Object to a Marriage";s: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:28:"http://wptavern.com/?p=37262";s: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:79:"http://wptavern.com/i-love-composer-i-love-wordpress-but-i-object-to-a-marriage";s: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:10606:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/composer.jpg" rel="prettyphoto[37262]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/composer.jpg?resize=1024%2C509" alt="photo credit: Jesse Kruger - cc" class="size-full wp-image-37299" /></a>photo credit: <a href="https://www.flickr.com/photos/jessekruger/390534235/">Jesse Kruger</a> &#8211; <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<hr />\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/david-hayes.jpg" rel="prettyphoto[37262]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/david-hayes.jpg?resize=150%2C150" alt="david-hayes" class="alignright size-thumbnail wp-image-37266" /></a><br />\nThis post was contributed by <a href="http://www.davidbhayes.com/" target="_blank">David Hayes</a>. David loves solving difficult problems at <a href="http://pressupinc.com">Press Up</a>, publishing new WordPress tutorials at <a href="http://wpshout.com">WPShout</a>, and eating cold cereal with milk.</p>\n<hr />\n<p>The developer tool <a href="https://getcomposer.org/" target="_blank">Composer</a> has been sneaking in around the fringes of the WordPress community. <a href="http://composer.rarst.net/" target="_blank">Rarst</a> is a fan. The <a href="http://roots.io/using-composer-with-wordpress/" target="_blank">Roots theme framework</a> folks like it. There&#8217;s support infrastructure like <a href="http://wpackagist.org/" target="_blank">WPackagist</a>.</p>\n<p>Composer is widely known in the wider PHP development space. Developer types who mostly focus on WordPress probably have some passing familiarity with it. Maybe you ran across a project I mentioned, or heard about it at a WordCamp or meet-up. Or maybe you&#8217;ve seen Sarah&#8217;s intermittent coverage here at the Tavern when projects — most recently <a href="http://wptavern.com/buddypress-2-2-will-add-support-for-composer" target="_blank">BuddyPress</a> — take steps to support it.</p>\n<p>Composer is awesome. I think it&#8217;s the most exciting thing to happen to PHP in the last five years. WordPress is awesome. I&#8217;ve been using WordPress for nearly a decade now, and I wouldn&#8217;t recommend people use anything else for a beautiful, feature-rich publishing experience for the web. But I don&#8217;t think the two fit together as well as some would like, and that&#8217;s our focus.</p>\n<p>But don&#8217;t worry if you don&#8217;t know what Composer is, we&#8217;ll start with that. Then we&#8217;ll cover a bit about why WordPress is great and explain where the two fit together, sometimes a bit awkwardly. Finally, we&#8217;ll look at how and when it makes sense to incorporate Composer into WordPress work.</p>\n<h3>What is Composer Anyway?</h3>\n<p>In the very simplest version, Composer is dependency management for PHP. That is, it&#8217;s the way that I can pull in external code — libraries, classes, whatever you want to call them — that other people wrote, make sure it&#8217;s loaded for me to use, and never need to worry about it again. Many other languages have had solutions to this problem for awhile, of varying quality. In Ruby, <a href="https://rubygems.org/" target="_blank">Gems</a> are very well known. For front-end JavaScript development, there&#8217;s some standardization on Bower. Python&#8217;s pip has been around awhile. All of these things have similar roles, but the specific implementation is different.</p>\n<p>The big problem dependency managers solve is the way most people deal with dependencies — other people&#8217;s code they&#8217;re using to solve a problem. Without a tool like Composer, it is sloppy and haphazard. When you want a user-friendly date handling library, you go to your search engine, find a few hundred lines of code, copy them into a file, try your best to figure out how to work with them, and never ever know or care when the author of those lines later realizes they created a giant performance bottleneck or security vulnerability.</p>\n<p>Dependency managers also take care of the issue that some code you want to use may itself rely on other libraries, classes, etc., that you aren&#8217;t already using. This leads to big headaches. And in solving these issues, Composer also makes sure that it gets versions of all that software that work for all the various libraries your application makes use of.</p>\n<p>So with Composer, you&#8217;re saved from a lot of copy-pasting, you get super-powers about dependency issues, and you&#8217;re also given a much easier path to get performance improvements, security patches, new features, and so on.</p>\n<p>So you can, for example, tell Composer you want to use a nice date parsing library like <a href="https://github.com/briannesbitt/Carbon" target="_blank">Carbon</a>, set your code up to load the Composer dependencies for you before you use them (with a simple include &#8216;vendor/autoload.php''; to use this article&#8217;s only snippet of PHP) and you&#8217;re set to go. And when Carbon, or another dependency, gets updated, you&#8217;ll be able to quickly get the latest version with a simple run of Composer&#8217;s update command.</p>\n<h3>What Makes WordPress Great</h3>\n<p>Since you&#8217;re reading WPTavern, I’ll just say, succinctly, that WordPress is an easy-to-use CMS with a rich ecosystem of plugins and themes that make it easy to accomplish a wide variety of goals.</p>\n<p>WordPress is made to be easy-to-use — specifically, for the end user. An average WordPress user, who is put a little on edge by the mention of PHP code, is still able to easily change the look or behavior of their site just by installing a new theme and a few of the thousands of great plugins out there, right from the simple user interface. Even for commercial plugins and themes, the user can probably rely on few-click updates. Users get security updates to their core WordPress code without even needing to think about it.</p>\n<h3>How Composer and WordPress Can Work Together</h3>\n<p>As Josh Pollock called out in <a href="http://torquemag.io/improving-wordpress-development-workflow-composer/" target="_blank">a great article about Composer</a>, there are three basic ways WordPress and Composer can be combined:</p>\n<ul>\n<li>To manage dependencies for a theme or a plugin you’re developing</li>\n<li>To manage your themes and plugins used on a site</li>\n<li>For total site dependency management</li>\n</ul>\n<p>We&#8217;ll take on the last two first, as they&#8217;re the most common way in which people are talking about Composer.</p>\n<h3>Why Composer and WordPress Aren&#8217;t as Compatible as Peanut Butter and Jelly</h3>\n<p>So WordPress is great and easy to use for slightly-more-technical-than-average people. Composer is great — really really great — for developers. Don&#8217;t two great things make a new even greater thing? I mean: I love peanut butter, and I love jelly, and I think a peanut butter and jelly sandwich is one of the top ten foods invented in America. So why don&#8217;t I love the combination of Composer and WordPress?</p>\n<p>It&#8217;s not that they&#8217;re useless together. I think they can work together quite well, but I don&#8217;t think the solution of &#8220;run your whole WordPress site with Composer&#8221; that&#8217;s creeping into more and more places works well. It takes care of one problem — WordPress being awkward to manage and deploy for developer-types — by creating another — a less-than-great experience for the mortals left with the WordPress site who just want to install this new plugin.</p>\n<p>Basically, in trying to cram WordPress into Composer we’re forcing a square peg into a round hole. WordPress’ focus on end-user ease-of-use — just jump into the admin area and search for a plugin on the WordPress.org repository, or upload the Zip archive you got from the seller — is conceptually at odds with using Composer to install WordPress.</p>\n<p>The change of behavior, and frankly the greater knowledge required, makes it the opposite of a simple experience for most. For a site with dedicated and knowledgeable developers or admins around 24/7, that’s possibly a wise trade off, but for most WordPress sites I see, that’s a losing combination.</p>\n<h3>When Composer and WordPress are a Good Combination</h3>\n<p>Even for most WordPress cases, I think there&#8217;s one place where Composer&#8217;s great: when you have some dependencies in a theme or plugin. It&#8217;s the combination of WordPress and Composer I&#8217;ve tried repeatedly and recommend heartily. It is brilliant. When you&#8217;ve got a project that you know doesn&#8217;t really need to support down to PHP 5.2, and where you really do want some helper code, Composer is fantastic as a way to get that external code and seamlessly keep it up to date. (Autoloading, a Composer feature which we&#8217;ve ignored until this point, is also a big perk.)</p>\n<p>For plugin or theme development, I think Composer is great. If you&#8217;re making a plugin that would benefit from a great date-parsing library like Carbon, <a href="https://github.com/thephpleague/commonmark" target="_blank">a Markdown parser</a>, or something else, by all means use Composer to pull that in. For more WordPress specific stuff, such as <a href="https://github.com/WebDevStudios/CMB2" target="_blank">CMB2</a> or <a href="https://github.com/thomasgriffin/TGM-Plugin-Activation" target="_blank">TGM Plugin Activation</a>, it&#8217;s far better to pull that from Composer than an old-school copy and paste.</p>\n<h3>There&#8217;s a Time and a Place for Composer</h3>\n<p>WordPress and Composer aren’t useless together; far from it. But the &#8220;run your whole WordPress site with Composer&#8221; solution is only right for developer-intensive use of WordPress. If you&#8217;re using something like <a href="http://capistranorb.com/" target="_blank">Capistrano</a> for deployments already, go ahead and slot Composer right in beside it. For casual WordPress users, even those who&#8217;ve made or modified a theme or plugin before, Composer is most likely to end up feeling like awkward-to-integrate overkill.</p>\n<p>As a developer, you should know how to use Composer to take care of complex dependencies inside of a plugin or theme and then package up your Composer dependencies in a way that is invisible to the end user. Let them be blissfully unaware that you&#8217;ve used Composer at all. Let them keep that smooth and comfortable WordPress flow with core security and easy updates. That way we get the best of both!</p>";s: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, 14 Jan 2015 19:51: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:13:"\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:"WPTavern: The Features as Plugins First Model Is a Mess";s: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:28:"http://wptavern.com/?p=33335";s: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:65:"http://wptavern.com/the-features-as-plugins-first-model-is-a-mess";s: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:7987:"<p>Released in late 2013, <a title="http://wptavern.com/wordpress-3-8-parker-released" href="http://wptavern.com/wordpress-3-8-parker-released">WordPress 3.8</a> was packed with new features including, a new theme browser experience, widgets area chooser, and a redesign of the backend. It&#8217;s also the first release to include a feature using a new formal development process called <strong>features-as-plugins</strong> first. The backend redesign started off as a plugin called MP6 with <a title="https://make.wordpress.org/design/2013/03/09/as-a-continuation-of-the-work-begun-in/" href="https://make.wordpress.org/design/2013/03/09/as-a-continuation-of-the-work-begun-in/">development beginning</a> in March, 2013.</p>\n<p>Prior to MP6, features were largely developed inside of core during the development cycle. This method caused some versions to be delayed, as was <a title="https://make.wordpress.org/core/version-3-6-project-schedule/" href="https://make.wordpress.org/core/version-3-6-project-schedule/">the case for WordPress 3.6</a>. The success of MP6 proved that by developing core features as plugins first, they were easier to test, manage, and merge into core at the appropriate time. Since adopting the development process, at least seven features have <a title="https://make.wordpress.org/core/features-as-plugins/" href="https://make.wordpress.org/core/features-as-plugins/">landed in core</a>. However, as an outsider looking in, the process seems to be falling apart.</p>\n<h2>MP6 Set The Bar</h2>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2013/10/mp6.jpg" rel="prettyphoto[33335]"><img class="size-full wp-image-10695" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2013/10/mp6.jpg?resize=800%2C452" alt="MP6 WordPress Admin Plugin" /></a>MP6 WordPress Admin Plugin\n<p>Each week, Matt Mullenweg and Matt Thomas released a new version for people to test. They also kept <a title="https://make.wordpress.org/design/tag/mp6/" href="https://make.wordpress.org/design/tag/mp6/">everyone updated</a> on what changed and left the comment form open to solicit feedback. This made it easy for people to participate in the development and testing process. By using P2 and the comment section, it was a lot easier to provide feedback. Since MP6 was a plugin, testing it was as easy as installing it on a stable version of WordPress.</p>\n<h2>The Lack of a Testing Audience</h2>\n<p>MP6 was available for download on the WordPress plugin directory. This made it accessible to anyone who wanted to test it. Recent plugins like the <a title="https://github.com/johnbillion/wp-session-manager" href="https://github.com/johnbillion/wp-session-manager">User Session Manager</a> by John Blackbourn don&#8217;t have any P2 posts on the Make WordPress Core site. As with several other features, discussion took place within a <a title="https://core.trac.wordpress.org/ticket/30264" href="https://core.trac.wordpress.org/ticket/30264">trac ticket</a>. Development of the plugin was handled on Github until it received a pass to be merged into core. Having a feature plugin only available on Github and a lack of communication surrounding the feature prevents a lot of people from potentially being part of the testing group.</p>\n<p>WordPress lead developer, Ryan Boren, <a title="https://make.wordpress.org/core/2014/11/03/open-update-thread/#comment-20735" href="https://make.wordpress.org/core/2014/11/03/open-update-thread/#comment-20735">noted in an open thread</a> in November of 2014, that when it comes to gathering a testing audience, no feature plugin has reached the standards set by MP6. For plugins to be merged into core, Boren suggested the following items should be met:</p>\n<ul>\n<li>Be present and up-to-date in the plugin directory.</li>\n<li>Be as ready to go on mobile as they are on desktop.</li>\n<li>Have visual records for major flows through all new interfaces on all devices.</li>\n<li>Have mature UI that isn’t going to derail the release train.</li>\n<li>Have a history of posting weekly updates to make/core.</li>\n<li>Have a history of regular plugin directory updates.</li>\n<li>Have a testing audience.</li>\n<li>Publish a merge consideration post on make/core complete with visual records and other diligence.</li>\n<li>Exist for at least one release cycle. Plugins created at the beginning of a release cycle should not be considered for merge until the next release.</li>\n</ul>\n<p>Several feature plugins fail to adhere to many of these proposed guidelines. In June of 2014, Andrew Nacin added a &#8220;<a title="http://wptavern.com/wordpress-trunk-adds-new-beta-testing-tab-to-plugins-screen" href="http://wptavern.com/wordpress-trunk-adds-new-beta-testing-tab-to-plugins-screen">Beta Testing</a>&#8221; tab to the add plugins screen for those who use WordPress trunk. The tab lists <a href="http://make.wordpress.org/core/features-as-plugins/" target="_blank">Feature Plugins</a> that are available for testing.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/FeaturedPlugins.png" rel="prettyphoto[33335]"><img class="size-full wp-image-37253" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/FeaturedPlugins.png?resize=1025%2C404" alt="Featured Plugin Development Looks Dead" /></a>Feature Plugin Development Looks Dead\n<p>Based on the results in the screenshot, it looks like every feature plugin is dead in the water, including the WP API. However, if you look at the activity for <a title="https://github.com/WP-API/WP-API" href="https://github.com/WP-API/WP-API">WP API on Github</a>, there&#8217;s plenty of development taking place. How can more people participate in the testing process if feature plugins are not routinely updated and available for download in the directory? This needs to change sooner rather than later.</p>\n<h2>Feature Plugins are More Like Experiments</h2>\n<p>Feature plugins are not guaranteed to be added to WordPress. Instead, the process is similar to a lab with each one being an experiment. Sometimes a plugin won&#8217;t be added but parts of it will. For example, many of the improvements to the post editor in 3.9, 4.0, and 4.1 are derived from the <a title="https://wordpress.org/plugins/wp-front-end-editor/" href="https://wordpress.org/plugins/wp-front-end-editor/">Front-end Editor</a>. Maybe the core team should think about renaming them to <strong>feature experiments</strong> as it&#8217;s more representative of what they really are.</p>\n<h2>Project Management</h2>\n<p>When I brought up the subject of feature plugin development at the January 7th core development meeting, Scott Taylor <a title="https://wordpress.slack.com/archives/core/p1420669524004536" href="https://wordpress.slack.com/archives/core/p1420669524004536">made an excellent point</a>, &#8220;F<span class="message_content">eatures-as-plugins often become Projects without requirements or tasks, which leads to a non-schedule, and then often require all-or-nothing to go in.&#8221; Feature plugins are generally driven by one or two people who might be good developers, but lack project management skills. It&#8217;s almost like someone needs to constantly shepherd feature plugins to make sure they&#8217;re following a schedule and keeping them all on the same page.</span></p>\n<h2>The Process Needs to be Fixed</h2>\n<p>It&#8217;s clear that the feature plugin development process is disjointed at best. Communication is lacking, synchronized development between plugins on Github and WordPress.org is non-existent, and some plugins are merged too quickly. If users are to receive the maximum benefits from the experimental process, it needs to be orchestrated better. At least the core team is <a title="https://make.wordpress.org/core/2015/01/13/feature-plugins-in-4-2-and-beyond/" href="https://make.wordpress.org/core/2015/01/13/feature-plugins-in-4-2-and-beyond/">aware of the problems</a> and is working towards improving the situation for the 4.2 development cycle.</p>";s: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, 14 Jan 2015 19:20: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:13:"\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:28:"Matt: Futuristic Predictions";s: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:21:"http://ma.tt/?p=44568";s: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:44:"http://ma.tt/2015/01/futuristic-predictions/";s: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:336:"<p>Yesterday&#8217;s post was a bit of a downer, so here io9 lists <a href="http://io9.com/the-most-futuristic-predictions-that-came-true-in-2014-1674887659">The Most Futuristic Predictions That Came True In 2014</a>, including technologically-assisted telepathy, 3d printing in space, laser weapons, and landing a robot on a comet.</p>";s: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, 14 Jan 2015 15:15: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:35;a:6:{s:4:"data";s:13:"\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:"WPTavern: Justin Tadlock Joins Forces with Emil Uzelac to Provide WordPress Theme Review as a Service";s: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:28:"http://wptavern.com/?p=37204";s: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:111:"http://wptavern.com/justin-tadlock-joins-forces-with-emil-uzelac-to-provide-wordpress-theme-review-as-a-service";s: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:5464:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/red-pen.jpg" rel="prettyphoto[37204]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/red-pen.jpg?resize=1024%2C500" alt="photo credit: pollas - cc" class="size-full wp-image-37241" /></a>photo credit: <a href="https://www.flickr.com/photos/pollas/526544001/">pollas</a> &#8211; <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>\n<p>Last week, Emil Uzelac <a href="http://wptavern.com/emil-uzelac-launches-new-wordpress-theme-review-service" target="_blank">launched a new theme review service</a> targeted at WordPress developers and companies that want their products to adhere to best practices. Just one week after launch, <a href="http://justintadlock.com/" target="_blank">Justin Tadlock</a>, a fellow member of the WordPress.org theme review team and author of the <a href="http://themehybrid.com/hybrid-core" target="_blank">Hybrid Core</a> framework, is joining forces with Uzelac to provide professional reviews to customers.</p>\n<p>&#8220;I’m interested in seeing where this goes. We (DevPress when I was there) were going to offer this service. It never took off because the business itself didn’t,&#8221; Tadlock <a href="http://wptavern.com/emil-uzelac-launches-new-wordpress-theme-review-service#comment-62455" target="_blank">commented</a> on the original announcement. In the past he has conducted paid reviews privately for commercial theme vendors. Uzelac noticed his interest and pounced on the opportunity to partner with him.</p>\n<p>&#8220;To quote one of my all time favorite businessman, J.C. Penney: &#8216;Growth is never by mere chance; it is the result of forces working together,''&#8221; Uzelac said. &#8220;Justin and I exchanged a few ideas in my launching interview and that is where I learned from Jeff that he had this idea back in 2011.&#8221;</p>\n<p>Since this idea has been on Tadlock&#8217;s mind for several years, he didn&#8217;t hesitate to get involved. &#8220;It&#8217;s something I pretty much immediately hopped on. We already have a bit of a working relationship as admins for the Theme Review Team. I believe it&#8217;s a good fit,&#8221; he said.</p>\n<p>Based on his <a href="http://wptavern.com/justin-tadlock-publishes-the-results-of-his-themeforest-experiment" target="_blank">experience at ThemeForest</a> and his service on the WordPress.org Theme Review Team, Tadlock is convinced that developers of all experience levels can benefit from professional theme review:</p>\n<blockquote><p>Professional theme authors who want to bring the highest quality theme to market need assurance that their code is solid. There&#8217;s nothing worse than spending months building an awesome theme only to have it break for a bunch of users because you missed something minor. Even the most experienced theme authors (myself included) overlook problems that a fresh, second pair of eyes could easily find. We have editors for books, newspapers, and so on for the same reason. Authors, whether they&#8217;re writers or theme developers, are going to miss something.</p></blockquote>\n<p>Although themes have always been critical to the success of WordPress, theme review is just now emerging as a service for which one might want to hire a dedicated professional. Tadlock attributes this to the increasing complexity of theme development. &#8220;Themes are a lot more complex than they were just 5 years ago, for example. This isn&#8217;t just because theme authors are packing in more stuff,&#8221; he said.</p>\n<p>&#8220;Part of it is because basic WordPress theme development has gotten more complex. WordPress has been packing in a lot of new things in recent years, and themes need to account for a variety of possibilities. Just having someone running through unit tests will be a big help.&#8221;</p>\n<p>Several readers commented on the original announcement to suggest that Uzelac consider offering a certification or badge of some sort for commercial theme authors to display once their themes have passed a professional review. Tadlock is open to the idea but sees it more as a marketing tool for their customers to employ.</p>\n<p>&#8220;That&#8217;s probably a good idea, but I don&#8217;t think that&#8217;s what really matters,&#8221; he said. &#8220;I think the focus should be on giving our clients (theme devs) peace of mind. Once we are seen as a legit and well-known service, a badge or something will most likely become a useful marketing tool for theme authors.&#8221;</p>\n<p><a href="http://themereview.co/" target="_blank">The Theme Review service</a> has already gained traction, and Uzelac reports that he completed his fourth review today. &#8220;I&#8217;ve taken only what I could handle alone and in time. Now that Justin is in, we will do more,&#8221; he said. &#8220;In only few days after the initial launch the response and support has been overwhelming. This confirms that our community is in great need of experienced reviewers.&#8221;</p>\n<p>When it comes to WordPress theme review skills and experience, Uzelac and Tadlock&#8217;s forces combined are unparalleled in the WordPress community. Tadlock hopes that together they can expand their efforts to serve more commercial theme providers. &#8220;I&#8217;d like to see regular business from some of the major theme shops,&#8221; he said. &#8220;That&#8217;s probably the biggest goal I&#8217;d shoot for at the moment.&#8221;</p>";s: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:"Tue, 13 Jan 2015 23:41: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:36;a:6:{s:4:"data";s:13:"\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:"WPTavern: VersionPress RC1 Released to Early Backers";s: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:28:"http://wptavern.com/?p=37215";s: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:62:"http://wptavern.com/versionpress-rc1-released-to-early-backers";s: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:3708:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/VersionPressFeaturedImage.png" rel="prettyphoto[37215]"><img class="size-full wp-image-24643" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/VersionPressFeaturedImage.png?resize=650%2C200" alt="Version Control Featured Image" /></a>Version Control Featured Image\n<p><a title="http://versionpress.net/" href="http://versionpress.net/">VersionPress</a>, the plugin that allows you to <a title="http://wptavern.com/versionpress-hopes-to-bring-version-control-to-the-masses" href="http://wptavern.com/versionpress-hopes-to-bring-version-control-to-the-masses">revert changes to a site</a> without having to restore a backup, is <a title="http://blog.versionpress.net/2015/01/announcing-early-access-program/" href="http://blog.versionpress.net/2015/01/announcing-early-access-program/">being released</a> to early backers. Near the middle of 2014, VersionPress creators <a href="https://twitter.com/borekb">Borek Bernard</a> and <a href="https://twitter.com/JanVoracek">Jan Voráček</a> created a crowdfunding campaign asking for $30K.</p>\n<p>The campaign started off on a rocky note, as several readers <a title="http://wptavern.com/versionpress-adopts-the-gpl-software-license" href="http://wptavern.com/versionpress-adopts-the-gpl-software-license">questioned what license</a> the plugin would use. Bernard decided to license the plugin using the GPLv2, but the decision was made near the middle of the campaign and the duo missed their goal by $14.5K. However, development continued and, for the past several months, the team has been hard at work getting the product to a point where people can start using it.</p>\n<p>A release candidate will be made available later this week to those who backed the project with $50 or more. If no major issues are reported, the team will release version 1.0 by the end of the month. However, the plugin will not be free to use. Those who want access to version 1.0 and future releases will need to join the <a title="http://versionpress.net/#get" href="http://versionpress.net/#get">early access program</a>. The program tries to strike a balance between making the plugin accessible to anyone who&#8217;s interested and funding development.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/VersionPressEarlyAccessProgramPrices.png" rel="prettyphoto[37215]"><img class="size-full wp-image-37221" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/VersionPressEarlyAccessProgramPrices.png?resize=956%2C308" alt="VersionPress Early Access Program Prices" /></a>Early Access Program Prices\n<p>VersionPress 1.0 is an initial release and won&#8217;t have all of the planned features such as sync and staging. Instead, those features will be rolled out in future versions of the product. According to their development plan:</p>\n<ul type="disc">\n<li>Version <strong>1.0</strong> will contain all the important <strong>basics</strong> – things like <strong>Undo</strong>, <strong>Rollback</strong>, <strong>automatic change tracking</strong>, support for all the built-in WordPress types, etc.</li>\n<li>Version <strong>2.0</strong> will bring full support for <strong>sync and staging</strong>.</li>\n<li>Versions <strong>3.0</strong>, <strong>4.0</strong> etc. will bring features from the <a href="http://docs.versionpress.net/en/release-notes/roadmap">roadmap</a>.</li>\n</ul>\n<p>I&#8217;m happy to see the duo remain committed to their goal of developing and shipping a working product. I still think VersionPress is a great idea and can&#8217;t wait to see how easy or difficult it is to use. Look for a thorough review on the Tavern sometime in February.</p>";s: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:"Tue, 13 Jan 2015 21:31:46 +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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:37;a:6:{s:4:"data";s:13:"\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:"WPTavern: Is 2015 The Year of WordPress Admin Themes?";s: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:28:"http://wptavern.com/?p=37098";s: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:62:"http://wptavern.com/is-2015-the-year-of-wordpress-admin-themes";s: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:3370:"<p>The CPO and partner of <a title="http://hmn.md/" href="http://hmn.md/">Human Made</a>, Noel Tock, <a title="https://medium.com/@noeltock/wordpress-in-2015-ed6a4674a608" href="https://medium.com/@noeltock/wordpress-in-2015-ed6a4674a608">published</a> his WordPress predictions for 2015. His predictions include, custom dashboards, front-end editing, internationalization, and more. This could be the year of admin themes, but I think it largely depends on whether the <a title="https://github.com/WP-API/WP-API" href="https://github.com/WP-API/WP-API">WP API</a> is merged into core.</p>\n<p>Tock predicts we&#8217;ll see a substantial increase in different WordPress backend experiences. Although there are implementations like <a title="http://www.happytables.com/" href="http://www.happytables.com/">Happytables</a> and <a title="http://jettyapp.com/" href="http://jettyapp.com/">Jetty</a> which use the WP API, I don&#8217;t think we&#8217;ll see a lot of adoption until it&#8217;s vetted and merged into core.</p>\n<p>Regarding custom dashboard experiences, Tock makes a great point when he says:</p>\n<blockquote><p>For the most part, premium custom dashboards will fail. If it’s too generic, it likely can’t compete with WP-Admin (which actively pursues <em class="markup--em markup--li-em">one size fits all). </em>On the other hand, if it’s too niche or not very extendable, it won’t be of much use either. A minimal small business dashboard with front-end editing will likely be the most popular seller.</p></blockquote>\n<p>Additionally, I think his advice to those looking to experiment with the API should be considered, &#8220;Don’t create a custom dashboard because you want to change the way it looks, change it because you significantly want to improve the experience of <em class="markup--em markup--p-em">your </em>users.&#8221;</p>\n<p>Jason Schuller&#8217;s admin design for <a title="http://wptavern.com/jason-schuller-to-re-enter-wordpress-theme-market-with-niche-admin-designs" href="http://wptavern.com/jason-schuller-to-re-enter-wordpress-theme-market-with-niche-admin-designs">Pickle</a> is a great example of a backend that correlates with what&#8217;s on the frontend. Everything that&#8217;s unnecessary to manage the frontend of the site is removed from the backend, creating a streamlined experience.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/10/pickle-admin.jpg" rel="prettyphoto[37098]"><img class="wp-image-32235 size-full" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/10/pickle-admin.jpg?resize=964%2C520" alt="pickle-admin" /></a>WordPress Backend For The Pickle Theme\n<p>The WP API will make it easy for developers to create a variety of different admin experiences, but users will ultimately decide which implementation is right for them. We may even see an entire category added to the <a title="https://wordpress.org/themes/" href="https://wordpress.org/themes/">WordPress theme directory</a> for admin themes.</p>\n<p>Whether the API is merged this year or next, custom admin themes are inevitable. In the future, there will likely be an admin theme that matches the way you use WordPress to harmonize the user experience. What that theme looks like is anyone&#8217;s guess, but I&#8217;m looking forward to reviewing custom admin experiences created by developers using the API.</p>";s: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:"Tue, 13 Jan 2015 21:18: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:38;a:6:{s:4:"data";s:13:"\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:"WPTavern: Better Notifications Plugin for WordPress Now Out of Beta";s: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:28:"http://wptavern.com/?p=37180";s: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:77:"http://wptavern.com/better-notifications-plugin-for-wordpress-now-out-of-beta";s: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:4881:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/better-notifications-for-wordpress-featured.png" rel="prettyphoto[37180]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/better-notifications-for-wordpress-featured.png?resize=660%2C300" alt="better-notifications-for-wordpress-featured" class="aligncenter size-full wp-image-37196" /></a></p>\n<p>The beta version of the <a href="https://wordpress.org/plugins/bnfw/" target="_blank">Better Notifications for WordPress</a> plugin was released last year, and it lay dormant for many months while its original collaborators searched for a new developer. The plugin was created to allow you to send customizable HTML emails to users based on different actions in WordPress.</p>\n<p>Jack McConnell, founder of development agency <a href="http://www.voltronik.co.uk/" target="_blank">Voltronik</a>, commissioned the plugin to be built while creating <a href="http://www.voltronik.co.uk/case-studies/building-web-app-wordpress-re-imagining-bespoke-project-management-system/" target="_blank">a custom project management system</a> on top of WordPress. &#8220;One of the requirements was for notifications of new projects (WordPress categories) via email. I couldn&#8217;t find a plugin that sent notifications for events such as these, so I decided to write my own,&#8221; McConnell said. He worked with a developer to push the beta out over the course of a weekend, but that&#8217;s as far as it went last year.</p>\n<p>After finding a new developer, McConnell was able to get the plugin out of beta and develop a roadmap for future releases. Version 1.0 is a major overhaul and a complete re-write of the plugin. New features include:</p>\n<ul>\n<li>Auto-importer: Your old notifications will be imported when updating the plugin</li>\n<li>New &#8216;Generator&#8217; for easily creating and editing your notifications</li>\n<li>More options and notification types as per feedback via the forums</li>\n<li>Granular control over choosing either user roles or individual users you&#8217;d like to send a notification to</li>\n<li>Fully translatable</li>\n</ul>\n<p>Each email can be customized using HTML, CSS, and Voltronik&#8217;s extensive list of <a href="http://www.voltronik.co.uk/wordpress-plugins/better-notifications-for-wordpress-shortcodes/" target="_blank">shortcodes</a>, which means you can add your site&#8217;s logo, a simple design, and all kinds of content to the emails. You can also set the notifications to go to selected individual users or limit the notifications based on user roles.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/better-notifications-for-wordpress.png" rel="prettyphoto[37180]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/better-notifications-for-wordpress.png?resize=806%2C534" alt="better-notifications-for-wordpress" class="aligncenter size-full wp-image-37190" /></a></p>\n<p>In addition to customizing WordPress&#8217; default notification emails (i.e. new comments, registrations, password reset), the plugin adds options for the following:</p>\n<ul>\n<li>New category</li>\n<li>New post updated, published</li>\n<li>New [custom post type] updated, published, pending review</li>\n<li>Custom taxonomy &#8211; new term added</li>\n</ul>\n<p>Better Notifications for WordPress adds notification customization options for every custom post type you have registered on your site, which can be very useful if your CPT-based plugins don&#8217;t include notifications.</p>\n<p>If you&#8217;re trying to keep a tight rein on new category creation, this plugin will help keep you in the loop. It also makes it easy to brand your site communications better as an alternative to WordPress&#8217; ugly notification emails. The plugin was built to fit into WordPress like a natural part of the admin.</p>\n<p>McConnell identifies other scenarios where Better Notifications might be useful:</p>\n<ul>\n<li>Outreach: A blog/news site with hundreds of subscribers &#8211; use it to alert them of new blog posts</li>\n<li>Communication: A small, internal WordPress site &#8211; use it to alert staff of new posts and comments</li>\n<li>Monitor: A website for a new product or service &#8211; use it for notifications of pingbacks and trackbacks</li>\n<li>Security: To receive alerts of password reset requests and their corresponding email address</li>\n</ul>\n<p>If you need greater control and customization over WordPress&#8217; email notifications, this plugin handles just about every kind of notice on actions related to publishing. It&#8217;s well on its way to becoming a comprehensive tool and McConnell and his team are eager to improve the plugin based on user feedback. <a href="https://wordpress.org/plugins/bnfw/" target="_blank">Better Notifications for WordPress</a> version 1.0 is now available for download on WordPress.org.</p>";s: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:"Tue, 13 Jan 2015 19:58: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:39;a:6:{s:4:"data";s:13:"\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:"Post Status: GravityView raises the bar for WordPress video advertisements";s: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:30:"https://poststatus.com/?p=7332";s: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://poststatus.com/gravityview-songadaymann/";s: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:1092:"<p>Okay, maybe it doesn&#8217;t raise the bar the way you think I mean. But this is worthwhile.</p>\n<p>I&#8217;m pretty busy building the new Post Status infrastructure, but not too busy to post this.</p>\n<p><a href="https://gravityview.co/">GravityView</a> is a WordPress plugin by Zack Katz and Katz Web Services that lists Gravity Forms entries on your site in a nice way. It&#8217;s a slick plugin I&#8217;ve been meaning to dig further into since I learned about it at a WordCamp a few months back.</p>\n<p>Nevertheless, the folks behind GravityView have hired <a href="https://twitter.com/songadaymann">@songadaymann</a>, <a href="http://jonathanmann.net/about/">Jonathan Mann</a>, to create a new video for them, and it is&#8230; unforgettable.</p>\n<p></p>\n<p>I mean, I told you.</p>\n<p>This is the type of &#8220;hey this is funny / quirky&#8221; will probably better qualify for the members only newsletter in the future. But while I&#8217;m <a href="https://poststatus.com/club/" title="Post Status Membership Club">building that out</a>, you all get this nugget of fun for free.</p>";s: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:"Tue, 13 Jan 2015 19:28: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";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:40;a:6:{s:4:"data";s:13:"\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:"Matt: Limits to Growth";s: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:21:"http://ma.tt/?p=44525";s: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:38:"http://ma.tt/2015/01/limits-to-growth/";s: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:637:"<p>&#8220;They modelled data up to 1970, then developed a range of scenarios out to 2100, depending on whether humanity took serious action on environmental and resource issues. [&#8230;] The book’s central point, much criticised since, is that “the earth is finite” and the quest for unlimited growth in population, material goods etc would eventually lead to a crash. So were they right?&#8221; The answer lies in <a href="http://www.theguardian.com/commentisfree/2014/sep/02/limits-to-growth-was-right-new-research-shows-were-nearing-collapse">Limits to Growth was right. New research shows we&#8217;re nearing collapse</a>.</p>";s: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:"Tue, 13 Jan 2015 19:19: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:41;a:6:{s:4:"data";s:13:"\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:28:"Ping-O-Matic: A Prompt a Day";s: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:"http://blog.pingomatic.com/?p=115";s: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:"http://blog.pingomatic.com/2015/01/13/a-prompt-a-day/";s: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:1387:"<p><a href="http://pingomatic.com/" target="_blank">Ping-O-Matic</a> is all about getting your latest content out into the world and driving more traffic to your blog. Sometimes, though, we need inspiration to write.</p>\n<p>Our friends at <em><a href="http://dailypost.wordpress.com" target="_blank">The Daily Post</a></em> published a free ebook of daily prompts: a gentle nudge to encourage a regular blogging habit. It&#8217;s available in four languages: <strong>English</strong>, <strong>French</strong>, <strong>Spanish</strong>, and <strong>Indonesian</strong>:</p>\n<p><a href="https://dailypost.wordpress.com/postaday/ebook-365-writing-prompts/" target="_blank">Ebook: 365 Writing Prompts</a></p>\n<p><a href="https://dailypost.wordpress.com/postaday/ebook-365-writing-prompts/"><img class=" size-large wp-image-116 aligncenter" src="https://pingomatic.files.wordpress.com/2015/01/ebook-365-featured-2.png?w=600&h=178" alt="ebook-365-featured 2" /></a></p>\n<p>Download the version you need &#8212; it&#8217;s free!</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pingomatic.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pingomatic.wordpress.com/115/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.pingomatic.com&blog=68432&post=115&subd=pingomatic&ref=&feed=1" width="1" height="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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 13 Jan 2015 18:16:46 +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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:20:"Cheri Lucas Rowlands";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:42;a:6:{s:4:"data";s:13:"\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:100:"WPTavern: How to Customize The Body and Title Font in WordPress Default Themes Without Touching Code";s: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:28:"http://wptavern.com/?p=37158";s: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:110:"http://wptavern.com/how-to-customize-the-body-and-title-font-in-wordpress-default-themes-without-touching-code";s: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:3147:"<p>WordPress 4.1 ships with three default themes, <a title="https://wordpress.org/themes/twentythirteen" href="https://wordpress.org/themes/twentythirteen">Twenty Thirteen</a>, <a title="https://wordpress.org/themes/twentyfourteen" href="https://wordpress.org/themes/twentyfourteen">Twenty Fourteen</a>, and <a title="https://wordpress.org/themes/twentyfifteen" href="https://wordpress.org/themes/twentyfifteen">Twenty Fifteen</a>. Although the theme customizer enables you to edit a default theme&#8217;s colors, header image, and other attributes, it doesn&#8217;t give you the ability to change the body and title fonts. If you&#8217;d like to easily change fonts in a default theme using the customizer without using code, try the <a title="https://wordpress.org/plugins/styleguide/" href="https://wordpress.org/plugins/styleguide/">Styleguide plugin</a> created by <a title="http://www.binarymoon.co.uk/" href="http://www.binarymoon.co.uk/">Ben Gillbanks</a>.</p>\n\n<a href="http://wptavern.com/how-to-customize-the-body-and-title-font-in-wordpress-default-themes-without-touching-code/2015customizerbeforestyleguide"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/2015CustomizerBeforeStyleguide.png?resize=297%2C668" class="attachment-full" alt="Customizer Before Styleguide is Activated" /></a>\n<a href="http://wptavern.com/how-to-customize-the-body-and-title-font-in-wordpress-default-themes-without-touching-code/2015customizerafterstyleguide"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/2015CustomizerAfterStyleguide.png?resize=291%2C826" class="attachment-full" alt="Customizer after Styleguide is Activated" /></a>\n\n<p>Once Styleguide is activated, you&#8217;ll see two new options added to the customizer. These allow you to edit the font for the body and title text. Styleguide will let you change fonts for headers and body text in almost any theme, but out of the box it supports Twenty Ten through Twenty Fifteen. There&#8217;s also support for <a title="https://creativemarket.com/BinaryMoon/108641-Puzzle-Responsive-WordPress-Theme?u=BinaryMoon" href="https://creativemarket.com/BinaryMoon/108641-Puzzle-Responsive-WordPress-Theme?u=BinaryMoon">Puzzle</a>, a theme created by Gillbanks.</p>\n<p>If you&#8217;re using one of the supported themes mentioned above then it will add font and color editing to the customizer, allowing you to style the themes as you wish. Developers can add support for their own themes by using the &#8216;add_theme_support&#8217; command. Check out the <a title="https://github.com/BinaryMoon/styleguide/tree/master/theme-styles" href="https://github.com/BinaryMoon/styleguide/tree/master/theme-styles">included theme-styles</a> to see live examples on how to use the command.</p>\n<p>Gillbanks notes that additional theme support will be added in the future. Until then, if you&#8217;re using one of WordPress&#8217; default themes, <a title="https://wordpress.org/plugins/styleguide/" href="https://wordpress.org/plugins/styleguide/">Styleguide</a> is an easy way to add the ability to customize the body and title fonts without touching a line of code.</p>";s: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:"Tue, 13 Jan 2015 04:28: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";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:43;a:6:{s:4:"data";s:13:"\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:"Matt: Struggles of Distributed";s: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:21:"http://ma.tt/?p=44585";s: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:"http://ma.tt/2015/01/struggles-of-distributed/";s: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:511:"<p>I think it&#8217;s good to show both sides of what a distributed organization is like, here are two essays by different <a href="http://automattic.com/">Automatticians</a>. Steph Yiu writes <a href="http://hoppycow.com/2015/01/04/still-figuring-it-out-communicating-remotely-with-lots-of-people/">Still figuring it out: communicating remotely with lots of people</a> and Chris Hardie writes on <a href="http://www.chrishardie.com/2015/01/distributed-vs-person-teams/">Distributed vs. In-person Teams</a>.</p>";s: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:"Tue, 13 Jan 2015 00:48: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:44;a:6:{s:4:"data";s:13:"\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:"WPTavern: New BuddyPress Global Search Plugin Adds Unified Search of All BuddyPress Components";s: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:28:"http://wptavern.com/?p=37106";s: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:104:"http://wptavern.com/new-buddypress-global-search-plugin-adds-unified-search-of-all-buddypress-components";s: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:2938:"<p>The developers behind the <a href="http://www.buddyboss.com/" target="_blank">BuddyBoss</a> theme shop released a plugin today that has the potential to benefit nearly every BuddyPress social network. <a href="https://wordpress.org/plugins/buddypress-global-search/" target="_blank">BuddyPress Global Search</a> adds a unified search bar, allowing users to search through every BuddyPress component, along with pages, posts, and select custom post types.</p>\n<p>Once activated, the plugin turns the site&#8217;s WordPress search inputs into a global search, capable of returning results for any of the social content on the site. It also features a live dropdown of results as you are typing.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-global-search.png" rel="prettyphoto[37106]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-global-search.png?resize=1025%2C708" alt="buddypress-global-search" class="aligncenter size-full wp-image-37141" /></a></p>\n<p>The plugin&#8217;s settings page allows administrators to include or exclude any component or custom post type from the unified search.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-global-search-settings.png" rel="prettyphoto[37106]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/01/buddypress-global-search-settings.png?resize=1025%2C532" alt="buddypress-global-search-settings" class="aligncenter size-full wp-image-37144" /></a></p>\n<p>The plugin was designed to work with any theme out of the box and should adopt your theme&#8217;s styling for BuddyPress search results. However, every theme is different and it may require additional tweaking to get it to perfectly compliment your current design.</p>\n<p>I spoke with BuddyBoss founder Michael Eisenwasser, who said that the plugin is his company&#8217;s way of giving back to one of WordPress&#8217; sister projects. &#8220;I saw Matt at WCSF talking about WP companies giving back 5%, and was inspired to give back to BuddyPress,&#8221; he said. &#8220;Better search has always been lacking in BP. We built this one because we would use it ourselves on pretty much any site.&#8221;</p>\n<p>Eisenwasser plans to continue improving BuddyPress Global Search and will add new features based on user feedback. The BuddyBoss team is cooking up a string of free plugins and next on deck is one that will allow users to easily edit BuddyPress activity on the front end.</p>\n<p>If you administer a BuddyPress site and want your search results to return content from the social network, this plugin offers a solid option. Download <a href="https://wordpress.org/plugins/buddypress-global-search/" target="_blank">BuddyPress Global Search</a> for free from WordPress.org. Documentation and support can be found on the <a href="http://www.buddyboss.com/tutorials/" target="_blank">BuddyBoss website</a>.</p>";s: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, 12 Jan 2015 23:21: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:45;a:6:{s:4:"data";s:13:"\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:"WPTavern: Preview the New Design for the WordPress Themes Directory";s: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:28:"http://wptavern.com/?p=37090";s: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:77:"http://wptavern.com/preview-the-new-design-for-the-wordpress-themes-directory";s: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:3730:"<p>A long-awaited update to the official WordPress Themes Directory is in progress. Contributors on the <a href="http://make.wordpress.org/meta/" target="_blank">Meta team</a> for WordPress.org are picking up speed on the effort to move the theme repository away from bbPress and into a new plugin, comprised of a custom post type for the repository package and a theme uploader.</p>\n<p>Konstantin Obenland posted a <a href="https://make.wordpress.org/meta/2015/01/09/theme-directory-update-19/" target="_blank">project update</a> to inform contributors that both the <a href="https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes" target="_blank">theme</a> and the <a href="https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory" target="_blank">plugin</a> that help to power the directory are now open source and available for anyone to view on <a href="https://meta.trac.wordpress.org/ticket/745" target="_blank">meta.trac</a>. The plan is to match the new directory design to the WordPress admin themes browser, allowing users to filter themes in a similar way.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/new-themes-directory.png" rel="prettyphoto[37090]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/new-themes-directory.png?resize=1001%2C852" alt="new-themes-directory" class="aligncenter size-full wp-image-37112" /></a></p>\n<p>As you can see in the screenshots above, much of the same UI from WordPress is being re-purposed for the directory. Users will be able to select from all available filters in order to narrow down results.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/themes-directory-filters.png" rel="prettyphoto[37090]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/themes-directory-filters.png?resize=987%2C662" alt="themes-directory-filters" class="aligncenter size-full wp-image-37115" /></a></p>\n<p>A <a href="https://wordpress.org/themesnew/" target="_blank">live preview</a> of the new directory is available, though Obenland warns it&#8217;s still a bit buggy. The new design also includes an update for the <a href="https://wordpress.org/themesnew/commercial/" target="_blank">commercially-supported GPL themes</a> page.</p>\n<h3>Timeline for Launching the New Themes Directory</h3>\n<p>There is no set timeline for launching the new directory, though some of the larger tasks have already been accomplished. All the necessary API changes are complete, along with the upload process, theme suspension and approval capabilities, and theme version handling.</p>\n<p>Obenland identified a list of important tasks that will need to be accomplished before launching the new directory. These items include things like importing existing themes from bbPress, rewriting the theme API and downloads handling to work with WordPress, synchronizing theme review results as a cron job, etc.</p>\n<p>Matching the UI to the admin themes browser means that users will have a consistent experience, whether they are searching on WordPress.org or browsing in the WordPress admin. It also speeds up the process by enabling contributors to reuse work that has already been done for the core software.</p>\n<p>If you are interested in contributing with the WordPress Meta team, now is an exciting time to jump in. All of the code for the project is public on <a href="https://meta.trac.wordpress.org/ticket/745" target="_blank">meta.trac</a>, and you can offer feedback on the <a href="https://make.wordpress.org/meta/2015/01/09/theme-directory-update-19/" target="_blank">Make.WordPress.org/Meta</a> blog.</p>";s: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, 12 Jan 2015 19:58: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:46;a:6:{s:4:"data";s:13:"\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:"WPTavern: BuddyPress 2.2 Beta 1 Now Available for Testing";s: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:28:"http://wptavern.com/?p=37060";s: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:67:"http://wptavern.com/buddypress-2-2-beta-1-now-available-for-testing";s: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:2509:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png" rel="prettyphoto[37060]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?resize=839%2C398" alt="buddypress-logo-blue" class="aligncenter size-full wp-image-30655" /></a></p>\n<p>Over the weekend, BuddyPress project lead John James Jacoby announced that <a href="https://buddypress.org/2015/01/buddypress-2-2-beta-1/" target="_blank">2.2 beta 1</a> is ready for testing. The upcoming release has been in development since last September. Jacoby&#8217;s campaign for six months of BuddyPress, bbPress, and GlotPress development was <a href="http://wptavern.com/buddypress-bbpress-and-glotpress-development-campaign-is-now-fully-funded" target="_blank">fully funded</a> in mid-December, allowing him to spend more time on the project in 2015.</p>\n<p>So far, the 2.2 milestone has <a href="https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=2.2" target="_blank">127 resolved tickets</a>, which include enhancements and fixes across all components. Jacoby outlined the most significant changes that require more testing ahead of the official release:</p>\n<ul>\n<li><a href="http://wptavern.com/buddypress-2-2-on-track-to-provide-a-basic-member-type-api" target="_blank">Member types</a> will allow developers to register different types of users, i.e. ‘teacher’ vs. ‘student’.</li>\n<li>Post type activities will allow developers to <a href="http://wptavern.com/buddypress-2-2-to-add-custom-post-type-support-to-the-activity-stream" target="_blank">connect custom post types to activity stream items</a>.</li>\n<li>Numerous improvements to the Legacy template pack</li>\n<li>Several new query API’s (based on WordPress improvements) for retrieving more specific results</li>\n<li>Continued cache enhancements, particularly for multi-site and multi-network WordPress configurations</li>\n<li>Tons of under-the-hood improvements</li>\n<li>Increased coverage of inline code documentation, actions, and filters</li>\n</ul>\n<p>Now is good time for BuddyPress site administrators and plugin and theme developers to start testing their extensions against the beta. You can download the zip file for 2.2 beta 1 from the <a href="https://buddypress.org/2015/01/buddypress-2-2-beta-1/" target="_blank">release announcement</a>. The plugin&#8217;s core development team is aiming to get the official 2.2 release out to users by the end of January.</p>";s: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, 12 Jan 2015 05:31: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";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:47;a:6:{s:4:"data";s:13:"\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:"Matt: Thirty One";s: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:21:"http://ma.tt/?p=44592";s: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:"http://ma.tt/2015/01/thirty-one/";s: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:3042:"<p>The first year of my thirties was both incredibly challenging and incredibly rewarding. I started a new decade and <a href="http://ma.tt/2014/01/toni-automattic-ceo/">a new role as CEO</a> at the same time, and at Automattic we grew to over 300 people and <a href="http://ma.tt/2014/05/new-funding-for-automattic/">raised money for the first time in a while</a>, both of which I couldn&#8217;t have predicted five or even two years ago.</p>\n<p>My big takeaway from the year was the importance of habits and small actions for accomplishing big things. To be productive I don&#8217;t need any fancy setups or project management software, just a well-groomed todo list and a pomodoro timer. This year on my birthday I find myself in Egypt which is an awe-inspiring place in many ways, but most striking to me has been the enduring beauty of craftsmanship with access to only the simplest of tools.</p>\n<p>In running, which I started this past summer while in Italy, I was able <a href="http://ma.tt/2014/10/run-better/">to slow down to go further and without injury</a>, and ended up putting in about 140 miles which took my fitness to be better than it&#8217;s been so far in my adult life. At least half of those miles were with friends and you can&#8217;t underestimate the importance of friends in helping you overcome mental blocks. (Also flew 425k miles in 2014, a new record. You can run anywhere and with minimal equipment &#8212; it&#8217;s a great way to explore a city.)</p>\n<p>Reading and writing, two of the activities still most important to me, benefitted from a &#8220;just do it&#8221; philosophy of putting one foot in front of the other. I <a href="http://ma.tt/2014/10/streak/">published more words</a> on ma.tt than any year since 2007, and I find blogging one of the most rewarding pastimes in my life. It was also a year of not trying to be all business all the time: I started reading fiction regularly after a decade away and letting the topics here drift wherever my interest is at the moment. Last year I talked about balance, and I think this is what drove many of the accomplishments I&#8217;m looking back on fondly now.</p>\n<p>I&#8217;m proud of how 2014 went, and I hope to build on that foundation to be a better person and reach even more ambitious milestones in the year to come. Here&#8217;s to slowing down to go further, and tackling big tasks with friends.</p>\n<p>Previously: <a href="http://ma.tt/2003/01/bday/">19</a>, <a href="http://ma.tt/2004/01/so-im-20/">20</a>, <a href="http://ma.tt/2005/01/hot-barely-legal-matt/">21</a>, <a href="http://ma.tt/2006/01/matt-22/">22</a>, <a href="http://ma.tt/2007/01/twenty-three/">23</a>, <a href="http://ma.tt/2008/01/twenty-four/">24</a>, <a href="http://ma.tt/2009/01/twenty-five/">25</a>, <a href="http://ma.tt/2010/01/twenty-six/">26</a>, <a href="http://ma.tt/2011/01/twenty-seven/">27</a>, <a href="http://ma.tt/2012/01/twenty-eight/">28</a>, and <a href="http://ma.tt/2013/01/twenty-nine/">29</a>, <a href="http://ma.tt/2014/01/matt-3-0/">30</a>.</p>";s: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, 12 Jan 2015 04:26: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:48;a:6:{s:4:"data";s:13:"\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:"Matt: NFL is a Non-Profit";s: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:21:"http://ma.tt/?p=44285";s: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:41:"http://ma.tt/2015/01/nfl-is-a-non-profit/";s: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:283:"<p>Did you know the NFL is a non-profit? Slate says <a href="http://www.slate.com/articles/business/moneybox/2014/09/the_nfl_should_lose_its_tax_exempt_status_the_league_is_not_a_nonprofit.html">the NFL should lose its tax-exempt status: The league is not a “nonprofit.”</a>.</p>";s: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, 10 Jan 2015 18:12: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:49;a:6:{s:4:"data";s:13:"\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:"Matt: PGP Tutorial";s: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:21:"http://ma.tt/?p=44579";s: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:34:"http://ma.tt/2015/01/pgp-tutorial/";s: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:373:"<p>Speaking <a href="http://ma.tt/2014/12/donate-to-gnupg/">of PGP</a> and <a href="http://ma.tt/?p=44577">security</a>, this self-described<a href="http://notes.jerzygangi.com/the-best-pgp-tutorial-for-mac-os-x-ever/">best PGP tutorial for Mac OS X, ever</a> actually lives up to the promise. Check it out, makes encrypting and decrypting things on the fly super easy.</p>";s: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, 10 Jan 2015 00:26: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s: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:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 23 Jan 2015 06:33:59 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"247704";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Fri, 23 Jan 2015 06:15:13 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20130911040210";}', 'no');
INSERT INTO `zty_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(165, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1422038039', 'no'),
(166, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1421994839', 'no'),
(167, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1422038040', 'no'),
(168, '_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:72:"\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:"Fri, 23 Jan 2015 06:26: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: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:15:{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:33:"15@https://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:35:"2141@https://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: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:36:"29832@https://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: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: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:34:"753@https://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: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: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:36:"23862@https://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: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: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:35:"8321@https://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&#039;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: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: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:35:"2316@https://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: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: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:36:"21738@https://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: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: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:36:"29860@https://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: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:36:"18101@https://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: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:34:"132@https://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:5:"arnee";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: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:36:"50539@https://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: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:"Redirection";s: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/redirection/#post-2286";s: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 Sep 2007 04:45:08 +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:"2286@https://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:144:"Redirection is a WordPress plugin to manage 301 redirections and keep track of 404 errors without requiring knowledge of Apache .htaccess 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:11:"John Godley";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:91:"NextGEN Facebook - Advanced Social SEO for Facebook, Google+, Pinterest, Twitter &amp; 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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wordpress.org/plugins/nextgen-facebook/#post-40409";s: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, 11 Jul 2012 20:13: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:36:"40409@https://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:"Display your content in the best possible way on Facebook, Google+, Twitter, Pinterest, etc. - no matter how your webpage is shared!";s: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:"JS Morisset";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:26:"Page Builder by SiteOrigin";s: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/siteorigin-panels/#post-51888";s: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 Apr 2013 10:36:42 +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:36:"51888@https://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:111:"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.";s: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:"Greg Priday";s: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:11:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 23 Jan 2015 06:34:02 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:7:"expires";s:29:"Fri, 23 Jan 2015 07:01:41 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Fri, 23 Jan 2015 06:26:41 +0000";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130911040210";}', 'no'),
(169, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1422038041', 'no'),
(170, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1421994841', 'no'),
(171, '_transient_timeout_plugin_slugs', '1422081241', 'no'),
(172, '_transient_plugin_slugs', 'a:3:{i:0;s:19:"akismet/akismet.php";i:1;s:45:"disable-google-fonts/disable-google-fonts.php";i:2;s:9:"hello.php";}', 'no'),
(173, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1422038041', 'no'),
(174, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://cn.wordpress.org/2014/12/23/dinah/''>WordPress 4.1“Dinah”</a> <span class="rss-date">2014年12月23日</span><div class="rssSummary">WordPress 4.1简体中文版现已开放下载。</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wptavern.com/new-french-theme-shop-hexagone-launches-with-free-and-commercial-wordpress-themes''>WPTavern: New French Theme Shop Hexagone Launches with Free and Commercial WordPress Themes</a></li><li><a class=''rsswidget'' href=''http://ma.tt/2015/01/scaling-paper-for-kim/''>Matt: Scaling PAPER for Kim</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/heropress-launches-kickstarter-campaign-to-highlight-wordpress-developers''>WPTavern: HeroPress Launches Kickstarter Campaign to Highlight WordPress Developers</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>热门插件:</span> <a href=''https://wordpress.org/plugins/wordfence/'' class=''dashboard-news-plugin-link''>Wordfence Security</a>&nbsp;<span>(<a href=''plugin-install.php?tab=plugin-information&amp;plugin=wordfence&amp;_wpnonce=a27f66ea0c&amp;TB_iframe=true&amp;width=600&amp;height=800'' class=''thickbox'' title=''Wordfence Security''>安装</a>)</span></li></ul></div>', 'no'),
(175, 'category_children', 'a:0:{}', 'yes'),
(176, '_site_transient_timeout_theme_roots', '1422013679', 'yes'),
(177, '_site_transient_theme_roots', 'a:9:{s:5:"earth";s:7:"/themes";s:7:"flatbox";s:7:"/themes";s:14:"mh-purity-lite";s:7:"/themes";s:8:"piedmont";s:7:"/themes";s:20:"reviewgine-affiliate";s:7:"/themes";s:8:"sanchari";s:7:"/themes";s:13:"twentyfifteen";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";}', 'yes'),
(178, 'theme_mods_flatbox', 'a:1:{i:0;b:0;}', 'yes'),
(179, 'optionsframework', 'a:1:{s:2:"id";s:7:"flatbox";}', 'yes'),
(180, '_transient_flatbox_categories', '1', 'yes');
-- --------------------------------------------------------
--
-- 表的结构 `zty_postmeta`
--
DROP TABLE IF EXISTS `zty_postmeta`;
CREATE TABLE IF NOT EXISTS `zty_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `zty_postmeta`
--
INSERT INTO `zty_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 1, '_edit_lock', '1421840959:1');
-- --------------------------------------------------------
--
-- 表的结构 `zty_posts`
--
DROP TABLE IF EXISTS `zty_posts`;
CREATE TABLE IF NOT EXISTS `zty_posts` (
`ID` bigint(20) unsigned NOT NULL,
`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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- 转存表中的数据 `zty_posts`
--
INSERT INTO `zty_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2015-01-21 11:09:41', '2015-01-21 11:09:41', '欢迎使用WordPress。这是系统自动生成的演示文章。编辑或者删除它,然后开始您的博客!', '世界,你好!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2015-01-21 11:09:41', '2015-01-21 11:09:41', '', 0, 'http://www.zhangty.cn/?p=1', 0, 'post', '', 1),
(2, 1, '2015-01-21 11:09:41', '2015-01-21 11:09:41', '这是示范页面。页面和博客文章不同,它的位置是固定的,通常会在站点导航栏显示。很多用户都创建一个“关于”页面,向访客介绍自己。例如,个人博客通常有类似这样的介绍:\n\n<blockquote>欢迎!我白天是个邮递员,晚上就是个有抱负的演员。这是我的博客。我住在天朝的帝都,有条叫做杰克的狗。</blockquote>\n\n……公司博客可以这样写:\n\n<blockquote>XYZ Doohickey公司成立于1971年,自从建立以来,我们一直向社会贡献着优秀doohicky。我们的公司总部位于天朝魔都,有着超过两千名员工,对魔都政府税收有着巨大贡献。</blockquote>\n\n您可以访问<a href="http://www.zhangty.cn/wp-admin/">仪表盘</a>,删除本页面,然后添加您自己的内容。祝您使用愉快!', '示例页面', '', 'publish', 'open', 'open', '', 'sample-page', '', '', '2015-01-21 11:09:41', '2015-01-21 11:09:41', '', 0, 'http://www.zhangty.cn/?page_id=2', 0, 'page', '', 0),
(3, 1, '2015-01-21 19:13:18', '0000-00-00 00:00:00', '', '自动草稿', '', 'auto-draft', 'open', 'open', '', '', '', '', '2015-01-21 19:13:18', '0000-00-00 00:00:00', '', 0, 'http://www.zhangty.cn/?p=3', 0, 'post', '', 0);
-- --------------------------------------------------------
--
-- 表的结构 `zty_terms`
--
DROP TABLE IF EXISTS `zty_terms`;
CREATE TABLE IF NOT EXISTS `zty_terms` (
`term_id` bigint(20) unsigned NOT NULL,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `zty_terms`
--
INSERT INTO `zty_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, '未分类', 'uncategorized', 0);
-- --------------------------------------------------------
--
-- 表的结构 `zty_term_relationships`
--
DROP TABLE IF EXISTS `zty_term_relationships`;
CREATE TABLE IF NOT EXISTS `zty_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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `zty_term_relationships`
--
INSERT INTO `zty_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0);
-- --------------------------------------------------------
--
-- 表的结构 `zty_term_taxonomy`
--
DROP TABLE IF EXISTS `zty_term_taxonomy`;
CREATE TABLE IF NOT EXISTS `zty_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL,
`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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `zty_term_taxonomy`
--
INSERT INTO `zty_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1);
-- --------------------------------------------------------
--
-- 表的结构 `zty_usermeta`
--
DROP TABLE IF EXISTS `zty_usermeta`;
CREATE TABLE IF NOT EXISTS `zty_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
--
-- 转存表中的数据 `zty_usermeta`
--
INSERT INTO `zty_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'juan'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'zty_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(11, 1, 'zty_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'wp360_locks,wp390_widgets'),
(13, 1, 'show_welcome_panel', '1'),
(14, 1, 'session_tokens', 'a:3:{s:64:"41d1515323a2f25ba1c3f8d1930d6bc8412e71a27b52d78acc44e3a7fd61f680";a:4:{s:10:"expiration";i:1422011595;s:2:"ip";s:9:"127.0.0.1";s:2:"ua";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36";s:5:"login";i:1421838795;}s:64:"d999134d5bcbd339536cc12d6d4d167d60cb73a70dfd7d8ab00b526f4843e21b";a:4:{s:10:"expiration";i:1422167630;s:2:"ip";s:9:"127.0.0.1";s:2:"ua";s:72:"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0";s:5:"login";i:1421994830;}s:64:"578fa499d11787038439406aa8d228140ffd07b127d57cc8d4d589626e3fe0ca";a:4:{s:10:"expiration";i:1422182903;s:2:"ip";s:9:"127.0.0.1";s:2:"ua";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36";s:5:"login";i:1422010103;}}'),
(15, 1, 'zty_dashboard_quick_press_last_post_id', '3'),
(16, 1, 'plugins_per_page', '999');
-- --------------------------------------------------------
--
-- 表的结构 `zty_users`
--
DROP TABLE IF EXISTS `zty_users`;
CREATE TABLE IF NOT EXISTS `zty_users` (
`ID` bigint(20) unsigned NOT NULL,
`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 ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `zty_users`
--
INSERT INTO `zty_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'juan', '$P$BbMnDV0HBNPwQkZMGT90gw16RifL.11', 'juan', 'ala1991@163.com', '', '2015-01-21 11:09:40', '', 0, 'juan');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `zty_commentmeta`
--
ALTER TABLE `zty_commentmeta`
ADD PRIMARY KEY (`meta_id`), ADD KEY `comment_id` (`comment_id`), ADD KEY `meta_key` (`meta_key`);
--
-- Indexes for table `zty_comments`
--
ALTER TABLE `zty_comments`
ADD PRIMARY KEY (`comment_ID`), ADD KEY `comment_post_ID` (`comment_post_ID`), ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), ADD KEY `comment_date_gmt` (`comment_date_gmt`), ADD KEY `comment_parent` (`comment_parent`), ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Indexes for table `zty_links`
--
ALTER TABLE `zty_links`
ADD PRIMARY KEY (`link_id`), ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `zty_options`
--
ALTER TABLE `zty_options`
ADD PRIMARY KEY (`option_id`), ADD UNIQUE KEY `option_name` (`option_name`);
--
-- Indexes for table `zty_postmeta`
--
ALTER TABLE `zty_postmeta`
ADD PRIMARY KEY (`meta_id`), ADD KEY `post_id` (`post_id`), ADD KEY `meta_key` (`meta_key`);
--
-- Indexes for table `zty_posts`
--
ALTER TABLE `zty_posts`
ADD PRIMARY KEY (`ID`), ADD KEY `post_name` (`post_name`), ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), ADD KEY `post_parent` (`post_parent`), ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `zty_terms`
--
ALTER TABLE `zty_terms`
ADD PRIMARY KEY (`term_id`), ADD KEY `slug` (`slug`), ADD KEY `name` (`name`);
--
-- Indexes for table `zty_term_relationships`
--
ALTER TABLE `zty_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`), ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `zty_term_taxonomy`
--
ALTER TABLE `zty_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`), ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `zty_usermeta`
--
ALTER TABLE `zty_usermeta`
ADD PRIMARY KEY (`umeta_id`), ADD KEY `user_id` (`user_id`), ADD KEY `meta_key` (`meta_key`);
--
-- Indexes for table `zty_users`
--
ALTER TABLE `zty_users`
ADD PRIMARY KEY (`ID`), ADD KEY `user_login_key` (`user_login`), ADD KEY `user_nicename` (`user_nicename`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `zty_commentmeta`
--
ALTER TABLE `zty_commentmeta`
MODIFY `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `zty_comments`
--
ALTER TABLE `zty_comments`
MODIFY `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `zty_links`
--
ALTER TABLE `zty_links`
MODIFY `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `zty_options`
--
ALTER TABLE `zty_options`
MODIFY `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=186;
--
-- AUTO_INCREMENT for table `zty_postmeta`
--
ALTER TABLE `zty_postmeta`
MODIFY `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `zty_posts`
--
ALTER TABLE `zty_posts`
MODIFY `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `zty_terms`
--
ALTER TABLE `zty_terms`
MODIFY `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `zty_term_taxonomy`
--
ALTER TABLE `zty_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `zty_usermeta`
--
ALTER TABLE `zty_usermeta`
MODIFY `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT for table `zty_users`
--
ALTER TABLE `zty_users`
MODIFY `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化