Слияние кода завершено, страница обновится автоматически
CREATE DATABASE IF NOT EXISTS `wordpress` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `wordpress`;
-- MySQL dump 10.13 Distrib 5.7.17, for macos10.12 (x86_64)
--
-- Host: localhost Database: wordpress
-- ------------------------------------------------------
-- Server version 5.7.16
/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci 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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'一位WordPress评论者','wapuu@wordpress.example','https://wordpress.org/','','2018-04-02 22:21:11','2018-04-02 14:21:11','嗨,这是一条评论。\n要开始审核、编辑及删除评论,请访问仪表盘的“评论”页面。\n评论者头像来自<a href=\"https://gravatar.com\">Gravatar</a>。',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci 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) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=149 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://localhost:8888','yes'),(2,'home','http://localhost:8888','yes'),(3,'blogname','测试','yes'),(4,'blogdescription','又一个WordPress站点','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','adam@tbynet.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','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:75:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'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'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','Asia/Shanghai','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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: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'),(93,'fresh_site','1','yes'),(94,'WPLANG','zh_CN','yes'),(95,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(96,'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'),(97,'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'),(98,'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'),(99,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(100,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(101,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'cron','a:4:{i:1522722072;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:1522765388;a:2:{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:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1522766141;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(111,'theme_mods_twentyseventeen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(118,'_site_transient_timeout_theme_roots','1522680681','no'),(119,'_site_transient_theme_roots','a:3:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(122,'_site_transient_timeout_browser_485b15e577b08cff37e3a0dbadb7cd6d','1523283691','no'),(123,'_site_transient_browser_485b15e577b08cff37e3a0dbadb7cd6d','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"11.0.3\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(124,'can_compress_scripts','1','no'),(125,'_site_transient_timeout_community-events-4501c091b0366d76ea3218b6cfdd8097','1522722095','no'),(126,'_site_transient_community-events-4501c091b0366d76ea3218b6cfdd8097','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:2:\"::\";}s:6:\"events\";a:0:{}}','no'),(127,'_transient_timeout_feed_7d1d7866a17d17cf5f79e1f075b87a31','1522722099','no'),(128,'_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:18:\"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:34:\"\n Thu, 29 Mar 2018 03:03: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: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:40:\"https://wordpress.org/?v=5.0-alpha-42890\";s:7:\"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:27:\"WordPress 4.9.4维护更新\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://cn.wordpress.org/2018/02/08/wordpress-4-9-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://cn.wordpress.org/2018/02/08/wordpress-4-9-4/#respond\";s: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, 08 Feb 2018 05:02:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://cn.wordpress.org/?p=1092\";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:30:\"WordPress 4.9.4现已发布。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jimmy Xu\";s: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:1395:\"<p>WordPress 4.9.4现已发布。</p>\n<p>此维护性更新修正了4.9.3版中的一个严重问题。该问题会导致站点不能进行自动更新,并需要您(或您的主机提供商)进行操作来升级到4.9.4。</p>\n<p>在四年前,我们在<a href=\"//cn.wordpress.org/2013/10/25/basie/"\">WordPress 3.7“Basie”</a>中加入了WordPress的自动更新功能,来让您不用费力也能有一个安全且无漏洞的站点。在这四年中,该功能已经为数百万计的WordPress实例提供了自动更新,并极少出现问题。不幸的是,我们在<a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">昨天发布4.9.3版</a>后,找出了其中存在的一个严重问题。该问题会导致WordPress在试图更新到4.9.4时遇到错误,并需要您通过WordPress仪表盘或主机更新工具来进行更新。</p>\n<p>要获得关于此问题的技术详情,请查阅<a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">我们的核心开发博客</a>。要查阅完整更新列表,请参见<a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.4&group=component\">工单列表</a>。</p>\n<p><a href=\"https://cn.wordpress.org/releases/\">下载WordPress 4.9.4简体中文版</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/2018/02/08/wordpress-4-9-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.9“Tipton”\";s:7:\"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/2017/11/16/tipton/\";s: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/2017/11/16/tipton/#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, 16 Nov 2017 01:33:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://cn.wordpress.org/?p=1075\";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.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:8:\"Jimmy Xu\";s: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:42179:\"<h2 style=\"text-align: center\">大规模的定制器改善、代码错误检查和更多!<img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f389.png\" alt=\"????\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/banner.png?fit=2400%2C1200&ssl=1\" alt=\"\" /></figure>\n<p>WordPress 4.9简体中文版现已<a href=\"https://cn.wordpress.org/releases/\">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Tipton”,以纪念爵士音乐家和乐队领唱比利·蒂普顿。WordPress 4.9的新功能能让您的设计工作流更顺滑,防止您的代码出现错误。</p>\n<p>包括了设计草稿、锁、计划和预览链接等新功能,全新的定制器工作流为内容创作者提升了协作体验。此外,代码语法高亮和错误检查能让您的站点建设体验更整洁平滑。我们还为您带来了全新画廊小工具并改善了主题浏览和切换的体验。</p>\n<hr class=\"wp-block-separator\" />\n<h2 style=\"text-align: center\">改良的定制器工作流</h2>\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2017/11/customizer-workflow-improved-small.png?w=632&ssl=1\" alt=\"\" width=\"632\" height=\"316\" /></figure>\n<h3>起草并计划发布站点设计修改</h3>\n<p>就像您可以在撰写文章时打草稿并在您希望的日期和时间发布一样,您也可以对站点设计做同样的事。现在可以随您所好地调整并计划设计更新。</p>\n<h3>通过设计共享链接协作</h3>\n<p>想要为您提议的站点设计修改取得反馈?WordPress 4.9向您提供了能发送给您的团队或客户的预览链接,让您能够取得并整合来自他人的反馈,并在计划的日期公开您的修改。我们能说协作++吗?</p>\n<h3>设计锁来保护您的修改</h3>\n<p>遇到过两名设计师同时修改一个项目,设计师A覆盖了设计师B的优美修改的事情吗?WordPress 4.9的设计锁功能与文章锁相似,在您进行设计修改时保护您,防止他人修改或抹除您的工作成果。</p>\n<h3>保护您的工作的提示</h3>\n<p>您在保存您的全新设计草稿前就离开了?别怕,当您回来时,WordPress 4.9会礼貌地问您是否想要保存这些未保存的修改。</p>\n<hr class=\"wp-block-separator\" />\n<h2 style=\"text-align: center\">代码增强</h2>\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/coding-enhancements-small.png?w=632&ssl=1\" alt=\"\" width=\"632\" height=\"316\" /></figure>\n<h3>语法高亮和错误检查?正如所愿!</h3>\n<p>您遇到了一个显示问题,但不能确定您所写的CSS到底出了什么问题。在CSS编辑和WordPress 4.8.1中引入的自定义HTML小工具有了语法高亮和错误检查后,您将能够快速找出代码错误。我们保证这项功能可以帮助您更轻松地扫描代码,并快速修复代码错误。</p>\n<h3>沙盒为了安全</h3>\n<p>可怕的白色屏幕。现在WordPress 4.9在您要保存的主题或插件代码有错误时会提出警告,让您能够避免损坏整个站点,也让您晚上睡得更安心。</p>\n<h3>警告:前方危险!</h3>\n<p>当您直接编辑主题和插件时,WordPress 4.9会礼貌地警告您这是一种很危险的做法,同时会建议您在保存前备份您的文件,这样您的修改就不会在下次更新时遭到覆盖。请走安全路线:未来的您会感谢您,您的团队和客户也会感谢您。</p>\n<hr class=\"wp-block-separator\" />\n<h2 style=\"text-align: center\">更多的小工具更新</h2>\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/even-more-widget-updates-small.png?w=632&ssl=1\" alt=\"\" width=\"632\" height=\"316\" /></figure>\n<h3>全新画廊小工具</h3>\n<p>从WordPress 4.8的媒体变更延伸而来的渐进式改进,现在您可以通过小工具添加一个画廊了!</p>\n<h3>按下按钮,加入媒体</h3>\n<p>想要向您的文字小工具加入媒体?通过我们简单而有用的”添加媒体“按钮,在小工具中向您的文字旁边嵌入图像、视频和音频。喔!</p>\n<hr class=\"wp-block-separator\" />\n<h2 style=\"text-align: center\">站点建设改进</h2>\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/site-building-improvements-small.png?w=632&ssl=1\" alt=\"\" width=\"632\" height=\"316\" /></figure>\n<h3>更可靠的主题切换</h3>\n<p>在您切换主题时,有的时候小工具会自行移动位置。WordPress 4.9的改进在您更换主题时向您带来更可靠的菜单和挂件位置。此外,您可以预览已安装的主题,或正确地下载、安装并预览新主题。在部署之前,没有什么能够像预览一样方便的。</p>\n<h3>寻找并预览完美主题</h3>\n<p>要为您的站点找一个新主题?现在,您可以在定制器中搜索、浏览并预览超过2600个主题,并可以直接应用到您的站点。此外,您也可以通过过滤主题、功能和布局来加速您的搜索。</p>\n<h3>更好的菜单说明 = 更少的迷惑</h3>\n<p>您被创建新菜单的步骤搞糊涂了吗?现在不会了!我们向您带来了更顺滑的菜单创建用户体验。新的说明文字会指导您。</p>\n<hr class=\"wp-block-separator\" />\n<h2 style=\"text-align: center\">帮一帮Gutenberg <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f91d.png\" alt=\"????\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/gutenberg-1.png?w=632&ssl=1\" alt=\"\" width=\"632\" height=\"316\" /></figure>\n<p>WordPress正致力于一种新的创建并控制您的内容的方式,我们需要您的帮助。想要成为<a href=\"https://wordpress.org/plugins/gutenberg/\">早期测试者</a>或投身于Gutenberg项目?<a href=\"https://github.com/WordPress/gutenberg\">在GitHub贡献</a>。</p>\n<p>(PS:这篇文章就是用Gutenberg写的!)</p>\n<hr class=\"wp-block-separator\" />\n<h2 style=\"text-align: center\">开发者的小确幸<img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f60a.png\" alt=\"????\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">定制器JS API改进</a></h3>\n<p>我们在WordPress 4.9中对定制器JS API进行了数项改进,消除了许多痛点,让它和PHP API一样易用。现在也有了新的基本控制模板、日期/时间控件和小节/页面/全局通知。<a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">查看完整列表。</a></p>\n<h3><a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\">CodeMirror现已在您的主题和插件中可用</a></h3>\n<p>我们向您介绍在核心中使用的全新的代码编辑库,CodeMirror。请用它来改进您插件中编辑代码的体验,如CSS或JavaScript编辑框。</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/10/30/mediaelement-upgrades-in-wordpress-4-9/\">MediaElement.js升级到4.2.6</a></h3>\n<p>WordPress包含了升级版的MediaElement.js,其中移除了对jQuery的依赖、增强了无障碍访问、有了现代化的界面并修正了许多问题。</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\">角色和能力的改进</a></h3>\n<p>新的能力让您能够更细致地管理插件和翻译文件。此外,多站点中的站点切换过程已被调整,让对可用的角色和能力的更新过程更可靠和连贯。</p>\n<hr class=\"wp-block-separator\" />\n<h2>开发团队</h2>\n<p>此次发布由<a href=\"https://choycedesign.com/\">Mel Choyce</a>和<a href=\"https://weston.ruter.net/\">Weston Ruter</a>领头,并得到了以下个人的帮助。这次发布包含了443人的贡献,其中185人更是第一次贡献。在您喜欢的音乐服务中听听比利·蒂普顿,并看看下面这些个人资料吧:</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/abrightclearweb\">abrightclearweb</a>、<a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>、<a href=\"https://profiles.wordpress.org/achbed\">achbed</a>、<a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>、<a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>、<a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>、<a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>、<a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>、<a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>、<a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>、<a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Björklund</a>、<a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>、<a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>、<a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>、<a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>、<a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>、<a href=\"https://profiles.wordpress.org/alex27\">alex27</a>、<a href=\"https://profiles.wordpress.org/allancole\">allancole</a>、<a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>、<a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>、<a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</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/rarst\">Andrey “Rarst” Savchenko</a>、<a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>、<a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>、<a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>、<a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>、<a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>、<a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>、<a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>、<a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>、<a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>、<a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>、<a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>、<a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>、<a href=\"https://profiles.wordpress.org/attitude\">attitude</a>、<a href=\"https://profiles.wordpress.org/backermann\">backermann1978</a>、<a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>、<a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>、<a href=\"https://profiles.wordpress.org/quasel\">Bernhard Gronau</a>、<a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>、<a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>、<a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>、<a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>、<a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>、<a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>、<a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>、<a href=\"https://profiles.wordpress.org/gitlost\">bonger</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/brainstormforce\">Brainstorm Force</a>、<a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>、<a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>、<a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>、<a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>、<a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>、<a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>、<a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>、<a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>、<a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>、<a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>、<a href=\"https://profiles.wordpress.org/chesio\">chesio</a>、<a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>、<a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>、<a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>、<a href=\"https://profiles.wordpress.org/chredd\">chredd</a>、<a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>、<a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>、<a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>、<a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>、<a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>、<a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>、<a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>、<a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>、<a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>、<a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>、<a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>、<a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>、<a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>、<a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>、<a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>、<a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>、<a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>、<a href=\"https://profiles.wordpress.org/codfish\">codfish</a>、<a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>、<a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>、<a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>、<a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>、<a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>、<a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>、<a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>、<a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>、<a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>、<a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>、<a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>、<a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>、<a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>、<a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>、<a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>、<a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>、<a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>、<a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>、<a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>、<a href=\"https://profiles.wordpress.org/folletto\">Davide ‘Folletto’ Casali</a>、<a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>、<a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>、<a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>、<a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>、<a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>、<a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>、<a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>、<a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>、<a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>、<a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>、<a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>、<a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>、<a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>、<a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>、<a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>、<a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>、<a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>、<a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>、<a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>、<a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>、<a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>、<a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>、<a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>、<a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>、<a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>、<a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>、<a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>、<a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>、<a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>、<a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>、<a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>、<a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>、<a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>、<a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>、<a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>、<a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>、<a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>、<a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>、<a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>、<a href=\"https://profiles.wordpress.org/frankiet\">Francesco Taurino</a>、<a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>、<a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>、<a href=\"https://profiles.wordpress.org/akeif\">Fred</a>、<a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>、<a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>、<a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>、<a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</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/geekysoft\">Geeky Software</a>、<a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>、<a href=\"https://profiles.wordpress.org/goranseric\">Goran Šerić</a>、<a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>、<a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>、<a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>、<a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>、<a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>、<a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>、<a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>、<a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>、<a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>、<a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>、<a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>、<a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>、<a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>、<a href=\"https://profiles.wordpress.org/idealien\">idealien</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/implenton\">implenton</a>、<a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>、<a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>、<a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>、<a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>、<a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>、<a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>、<a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>、<a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>、<a href=\"https://profiles.wordpress.org/japh\">Japh</a>、<a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>、<a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>、<a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>、<a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>、<a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>、<a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>、<a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</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/jimt\">jimt</a>、<a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>、<a href=\"https://profiles.wordpress.org/jmusal\">jmusal</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/joemcgill\">Joe McGill</a>、<a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>、<a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>、<a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>、<a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</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/johnpgreen\">johnpgreen</a>、<a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>、<a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>、<a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>、<a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>、<a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>、<a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>、<a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>、<a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>、<a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>、<a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>、<a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>、<a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>、<a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>、<a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>、<a href=\"https://profiles.wordpress.org/joyously\">Joy</a>、<a href=\"https://profiles.wordpress.org/jrf\">jrf</a>、<a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>、<a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>、<a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>、<a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>、<a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>、<a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>、<a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</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/kacperszurek\">kacperszurek</a>、<a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>、<a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>、<a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>、<a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>、<a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>、<a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>、<a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>、<a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</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/ixkaito\">Kite</a>、<a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>、<a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>、<a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>、<a href=\"https://profiles.wordpress.org/kokarn\">kokarn</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/kouratoras\">Konstantinos Kouratoras</a>、<a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>、<a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>、<a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>、<a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>、<a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>、<a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>、<a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>、<a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>、<a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>、<a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>、<a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>、<a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>、<a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>、<a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>、<a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>、<a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>、<a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>、<a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>、<a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>、<a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>、<a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>、<a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>、<a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>、<a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>、<a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>、<a href=\"https://profiles.wordpress.org/markshep\">markshep</a>、<a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>、<a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>、<a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>、<a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>、<a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt PeepSo</a>、<a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>、<a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</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/maxcutler\">Max Cutler</a>、<a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>、<a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>、<a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>、<a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>、<a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>、<a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>、<a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>、<a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>、<a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>、<a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>、<a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</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/mikeschroder\">Mike Schroder</a>、<a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>、<a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>、<a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>、<a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>、<a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>、<a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>、<a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</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/mt8biz\">moto hachi ( mt8.biz )</a>、<a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>、<a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>、<a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>、<a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>、<a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>、<a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>、<a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>、<a href=\"https://profiles.wordpress.org/krstarica\">net</a>、<a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>、<a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>、<a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>、<a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>、<a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>、<a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>、<a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>、<a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>、<a href=\"https://profiles.wordpress.org/odie2\">odie2</a>、<a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>、<a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>、<a href=\"https://profiles.wordpress.org/orvils\">orvils</a>、<a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>、<a href=\"https://profiles.wordpress.org/ottok\">Otto Kekäläinen</a>、<a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>、<a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>、<a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>、<a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>、<a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>、<a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>、<a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>、<a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>、<a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>、<a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>、<a href=\"https://profiles.wordpress.org/phh\">phh</a>、<a href=\"https://profiles.wordpress.org/php\">php</a>、<a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>、<a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>、<a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>、<a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>、<a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>、<a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>、<a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>、<a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>、<a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>、<a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>、<a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</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/ranh\">ranh</a>、<a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>、<a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>、<a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>、<a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>、<a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>、<a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>、<a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>、<a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>、<a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>、<a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>、<a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Araújo</a>、<a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>、<a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</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/ryanplas\">Ryan Plas</a>、<a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>、<a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>、<a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>、<a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>、<a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>、<a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>、<a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>、<a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>、<a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>、<a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>、<a href=\"https://profiles.wordpress.org/schrapel\">schrapel</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/scrappyhuborg\">scrappy@hub.org</a>、<a href=\"https://profiles.wordpress.org/scribu\">scribu</a>、<a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>、<a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>、<a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>、<a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>、<a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>、<a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>、<a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>、<a href=\"https://profiles.wordpress.org/shprink\">shprink</a>、<a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>、<a href=\"https://profiles.wordpress.org/skippy\">skippy</a>、<a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>、<a href=\"https://profiles.wordpress.org/snacking\">snacking</a>、<a href=\"https://profiles.wordpress.org/solal\">solal</a>、<a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>、<a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>、<a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>、<a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>、<a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>、<a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</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/stevenlinx\">stevenlinx</a>、<a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>、<a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>、<a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>、<a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>、<a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>、<a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>、<a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>、<a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>、<a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>、<a href=\"https://profiles.wordpress.org/team\">team</a>、<a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>、<a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>、<a href=\"https://profiles.wordpress.org/the\">the</a>、<a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>、<a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>、<a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>、<a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>、<a href=\"https://profiles.wordpress.org/tierra\">tierra</a>、<a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>、<a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>、<a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>、<a href=\"https://profiles.wordpress.org/timph\">timph</a>、<a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>、<a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>、<a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>、<a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>、<a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>、<a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>、<a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>、<a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>、<a href=\"https://profiles.wordpress.org/traversal\">traversal</a>、<a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>、<a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>、<a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>、<a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>、<a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>、<a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>、<a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>、<a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>、<a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>、<a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>、<a href=\"https://profiles.wordpress.org/zuige\">Viljami Kuosmanen</a>、<a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>、<a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>、<a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>、<a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>、<a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>、<a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>、<a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>、<a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>、<a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>、<a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>、<a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>、<a href=\"https://profiles.wordpress.org/yale01\">yale01</a>、<a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>、<a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>、<a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>、<a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>、<a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>、<a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>和<a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>。</p>\n<p>最后,让我们感谢为本次发布提供了翻译的贡献者。WordPress 4.9被翻译成了43种语言,还有更多在路上。</p>\n<p>您想发表关于WordPress 4.9的新闻吗?<a href=\"https://s.w.org/images/core/4.9/wp-4-9_press-kit.zip\">我们为您准备了媒体包,来告知您关于此次更新的新功能,我们也为您准备了一些媒体资源</a>。</p>\n<p>如果您想帮忙,请查阅<a href=\"https://make.wordpress.org/\">Make WordPress</a>和我们的<a href=\"https://make.wordpress.org/core/\">核心开发博客</a>。</p>\n<p>感谢您选择WordPress,我们希望您喜欢!</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/2017/11/16/tipton/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:\"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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"未来的 WordPress 4.8.1 和 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://cn.wordpress.org/2017/07/23/4-8-1-plans-and-the-future-of-wpcn/\";s: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:80:\"https://cn.wordpress.org/2017/07/23/4-8-1-plans-and-the-future-of-wpcn/#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:\"Sun, 23 Jul 2017 10:10:33 +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:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://cn.wordpress.org/?p=1060\";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:147:\"各位,抱歉!最近 Jimmy 看起来很忙,我们很久没能给大家带来新版本,请见谅。 4.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:12:\"Jiehan Zheng\";s: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:1455:\"<p>各位,抱歉!最近 Jimmy 看起来很忙,我们很久没能给大家带来新版本,请见谅。</p>\n<p>4.8.1 的官方(英文)版本预计 8 月 1 日发布,我的目标是在英文版本发布的同一天发布中文版本。因为<a href=\"https://make.wordpress.org/polyglots/2017/07/20/new-strings-for-wordpress-4-8-1/\">官方的技术原因</a>,在 4.8.1 发布前的准备期内,中文版无法再发布 4.8 的更新。4.8.1 版本的核心字串已经 100% 审核或重新翻译完毕。一些默认主题和插件还有少数字串没有完成,我会在周二发布之前审核或翻译完毕。</p>\n<p>对未来的版本,我的目标也是在每个官方版本发布的同一天发布中文版本。今后的翻译会更加开放,将在 <a href=\"https://translate.wordpress.org/locale/zh-cn/\">translate.wordpress.org</a> 上进行。中文管理员可以在<a href=\"https://make.wordpress.org/chat/\">官方 Slack</a> 上找到(@jiehan 或 #polyglots 频道)。</p>\n<p><ins><strong>更新:</strong>刚刚发布了一个临时版本,只包含了 <a href=\"https://translate.wordpress.org/locale/zh-cn/\">translate.wordpress.org</a> 最新的翻译,但因为 SVN 权限和个人时间原因,暂时没有本地化的代码更新(比如,没有在最新的主题中添加工信部备案号的功能),本地化的代码目前使用的还是 4.7 的,请见谅。这些将在 4.8.1 中加入。</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:76:\"https://cn.wordpress.org/2017/07/23/4-8-1-plans-and-the-future-of-wpcn/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:\"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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:45:\"\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:5:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 4.7“Vaughan”\";s:7:\"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:\"https://cn.wordpress.org/2016/12/08/vaughan/\";s: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:53:\"https://cn.wordpress.org/2016/12/08/vaughan/#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, 08 Dec 2016 05:09:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://cn.wordpress.org/?p=1040\";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.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:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:64:\"https://wordpress.org/news/files/2016/12/starter-content.mp4?_=1\";s:6:\"length\";s:7:\"3736020\";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:63:\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4?_=2\";s:6:\"length\";s:7:\"1127483\";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:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2016/12/video-headers.mp4?_=3\";s:6:\"length\";s:7:\"1549803\";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:8:\"Jimmy Xu\";s: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:41938:\"<div style=\"width: 692px\">\n<p>WordPress 4.7简体中文版现已<a href=\"https://cn.wordpress.org/releases/\">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Vaughan”,以纪念爵士歌手莎拉·沃恩。4.7的全新功能让您以您的想法来建立您的网站。</p>\n<div id=\"v-AHz0Ca46-1\" class=\"video-player\"><video id=\"v-AHz0Ca46-1-video\" width=\"612\" height=\"344\" poster=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_dvd.mp4\" type=\"video/mp4; codecs="avc1.64001E, mp4a.40.2"\" /><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_fmt1.ogv\" type=\"video/ogg; codecs="theora, vorbis"\" /><div><img alt=\"Introducing WordPress 4.7\" src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg\" width=\"612\" height=\"344\" /></div><p>Introducing WordPress 4.7</p></video></div>\n<hr />\n<h2 style=\"text-align: center\">“二〇一七”介绍</h2>\n<p>一个全新默认主题可让您的网站通过引人入胜的特色图片和影音页头生动呈现。</p>\n<p><img class=\"alignnone wp-image-4618 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-%E2%80%94-Twenty-Seventeen-1.jpg?resize=632%2C356&ssl=1\" width=\"632\" height=\"356\" /></p>\n<p>“二〇一七”专注于商业网站,提供了一个可自定义各部分的首页。使用挂件、导航、社交菜单、标志、自定颜色等来个性化。我们的2017年默认主题能支持更多语言、任何设备及广泛的用户群。</p>\n<hr />\n<h2 style=\"text-align: center\">您的网站,您说了算</h2>\n<p>WordPress 4.7为外观编辑加入新功能,帮助您完成主题的初始设置,在一个不间断的工作流程中对所有修改进行非破坏性的实时预览。</p>\n<h3>主题起始内容</h3>\n<p><div style=\"width: 612px;\" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-1040-1\" width=\"612\" height=\"334\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://cn.wordpress.org/files/2016/12/starter-content.mp4?_=1\" /><source type=\"\" src=\"https://wordpress.org/news/files/2016/12/starter-content.mp4?_=1\" /><a href=\"https://cn.wordpress.org/files/2016/12/starter-content.mp4\">https://cn.wordpress.org/files/2016/12/starter-content.mp4</a></video></div>为了帮助您建立一个坚实的基础,当您自定新网站时,个别主题将显示起始内容。这可以将商业信息放置在最佳位置,以提供带有社交网络链接的示例菜单、美丽图案的静态首页。</p>\n<div style=\"float:left;width:48%;margin:0\">\n<h3>编辑快捷方式</h3>\n<p><div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-1040-2\" width=\"612\" height=\"334\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://cn.wordpress.org/files/2016/12/starter-content.mp4?_=2\" /><source type=\"\" src=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4?_=2\" /><a href=\"https://cn.wordpress.org/files/2016/12/starter-content.mp4\">https://cn.wordpress.org/files/2016/12/starter-content.mp4</a></video></div>当实时预览时,可视化图标会显示在您网站能够自定义的部分。点击快捷方式直接进行编辑,与起始内容相互配合,自定义您的网站将会比以往来得更快。\n</p></div>\n<div style=\"float:right;width:48%;margin:0\">\n<h3>视频页头</h3>\n<p><div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-1040-3\" width=\"612\" height=\"334\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://cn.wordpress.org/files/2016/12/starter-content.mp4?_=3\" /><source type=\"\" src=\"https://wordpress.org/news/files/2016/12/video-headers.mp4?_=3\" /><a href=\"https://cn.wordpress.org/files/2016/12/starter-content.mp4\">https://cn.wordpress.org/files/2016/12/starter-content.mp4</a></video></div>有时候您想使用视频作为移动题图来展示您的作品,试试看“二〇一七”。需要一些视频灵感吗?试试看搜索提供下载、使用视频的网站。\n</p></div>\n<div style=\"clear: both\"></div>\n<div style=\"float:left;width:48%;margin:0\">\n<h3>更平滑的菜单建立</h3>\n<p><img class=\"wp-image-4606 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-%E2%80%94-Nav.jpg?resize=300%2C158&ssl=1\" width=\"300\" height=\"158\" /></p>\n<p>网站的许多菜单包含链接指向您的网站其他页面,但当您还没有任何页面时该怎么办?现在,您可以在建立菜单时新增页面,而不必离开定制器并放弃修改。一旦您发布了自定选项,您就可以准备好在新的页面加入内容。\n</p></div>\n<div style=\"float:right;width:48%;margin:0\">\n<h3>自定义CSS</h3>\n<p><img class=\"wp-image-4607 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-%E2%80%94-CSS.jpg?resize=300%2C158&ssl=1\" width=\"300\" height=\"158\" /></p>\n<p>有时候您只需要一些视觉上的微调就能使您的网站更臻完美。WordPress 4.7允许您加入自定义CSS并能立即在网站看到变化。实时预览加快您的工作速度,且无须反复刷新网页。\n</p></div>\n<div style=\"clear: both\"></div>\n<hr />\n<div style=\"float:left;width:48%;margin:0\">\n<h3>PDF缩略图预览</h3>\n<p><img class=\"wp-image-4609 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-%E2%80%94-PDF.jpg?resize=300%2C158&ssl=1\" width=\"300\" height=\"158\" /></p>\n<p>在WordPress 4.7管理您的文件集变得更容易。上传PDF文件将会产生缩略图,因此您可以在所有文件中更轻易区分他们。\n</p></div>\n<div style=\"float:right;width:48%;margin:0\">\n<h3>让仪表盘使用您的语言</h3>\n<p><img class=\"wp-image-4608 size-medium alignright\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-%E2%80%94-Language.jpg?resize=300%2C158&ssl=1\" width=\"300\" height=\"158\" /></p>\n<p>只是因为您的网站在单一语言设定下,但这不代表每一位协助管理网站的伙伴都使用该语言。新增更多语言至您的网站,让用户可以在他的个人资料页面选择不同语言。\n</p></div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2>向您介绍REST API内容节点</h2>\n<p>WordPress 4.7为文章、评论、自定义字段、用户、元数据和设置带来了REST API节点。</p>\n<p><img class=\"size-large wp-image-4600 alignnone\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-%E2%80%94-API.jpg?resize=632%2C205&ssl=1\" alt=\"\" width=\"632\" height=\"205\" /></p>\n<p>内容节点让您的WordPress拥有机器可读的额外访问资源,具备清晰、标准导向接口,为网站与插件、主题和App开创一条平稳的前进之路。准备好开始开发了吗?<a href=\"https://developer.wordpress.org/rest-api/reference/\">查看REST API参考。</a></p>\n<hr />\n<h2>更多开发者的快乐<img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f60a.png\" alt=\"????\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">文章类型模板</a></h3>\n<p>通过开启所有文章类型的页面模板功能,主题开发者可以有更弹性的WordPress模板结构。</p>\n<h3>更多主题API功能</h3>\n<p>WordPress 4.7为主题开发者带来<a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">新函数、钩子和行为</a>。</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\">自定义批处理</a></h3>\n<p>批处理现在除了编辑和删除外加入更多功能。</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\"><code>WP_Hook</code></a></h3>\n<p>依靠动作和过滤器的代码已被大幅调整与改写,同时修正了一些错误。</p>\n<h3>设置注册API</h3>\n<p>register_setting()<a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\">已经强化</a>,加入包含类型、描述及REST API能见度管理。</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/\">自定义变更集</a></h3>\n<p>自定义变更集让定制器中的修改持久化,就像自动保存草稿一样。他们也让像起始内容一样的新功能成为可能。</p>\n<hr />\n<h2>开发团队</h2>\n<p>此次发布由<a href=\"https://helen.blog/\">Helen Hou-Sandí</a>领头,由<a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>和<a href=\"http://aaron.jorb.in/\">Aaron Jorbin</a>担任发布代表,并得到了以下个人的帮助。这次发布包含了482人的贡献,创下新高,其中205人更是第一次贡献。在您喜欢的音乐服务中听听莎拉·沃恩,并看看下面这些个人资料吧:</p>\n<p><a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>、<a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>、<a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>、<a href=\"https://profiles.wordpress.org/achbed\">achbed</a>、<a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>、<a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>、<a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>、<a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>、<a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>、<a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>、<a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>、<a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Björklund</a>、<a href=\"https://profiles.wordpress.org/akshayvinchurkar\">AkshayVinchurkar</a>、<a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>、<a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>、<a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>、<a href=\"https://profiles.wordpress.org/alex27\">alex27</a>、<a href=\"https://profiles.wordpress.org/allancole\">allancole</a>、<a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>、<a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>、<a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</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/rarst\">Andrey “Rarst” Savchenko</a>、<a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>、<a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>、<a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>、<a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>、<a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>、<a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>、<a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>、<a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>、<a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>、<a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>、<a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>、<a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>、<a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>、<a href=\"https://profiles.wordpress.org/attitude\">attitude</a>、<a href=\"https://profiles.wordpress.org/backermann\">backermann</a>、<a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>、<a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>、<a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>、<a href=\"https://profiles.wordpress.org/binarymoon\">BinaryMoon</a>、<a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>、<a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>、<a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>、<a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>、<a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>、<a href=\"https://profiles.wordpress.org/gitlost\">bonger</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/brainstormforce\">Brainstorm Force</a>、<a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>、<a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>、<a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>、<a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>、<a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>、<a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>、<a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>、<a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>、<a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>、<a href=\"https://profiles.wordpress.org/chesio\">chesio</a>、<a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>、<a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>、<a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>、<a href=\"https://profiles.wordpress.org/chredd\">chredd</a>、<a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>、<a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>、<a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>、<a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>、<a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>、<a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>、<a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>、<a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>、<a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>、<a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>、<a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>、<a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>、<a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>、<a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>、<a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>、<a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>、<a href=\"https://profiles.wordpress.org/codfish\">codfish</a>、<a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>、<a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>、<a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>、<a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>、<a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>、<a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>、<a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>、<a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>、<a href=\"https://profiles.wordpress.org/danielpietrasik\">danielpietrasik</a>、<a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>、<a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>、<a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>、<a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>、<a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>、<a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>、<a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>、<a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>、<a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>、<a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>、<a href=\"https://profiles.wordpress.org/folletto\">Davide ‘Folletto’ Casali</a>、<a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>、<a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>、<a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>、<a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>、<a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>、<a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>、<a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>、<a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>、<a href=\"https://profiles.wordpress.org/dineshc\">dineshc</a>、<a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>、<a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>、<a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>、<a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>、<a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>、<a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>、<a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>、<a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>、<a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>、<a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>、<a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>、<a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>、<a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>、<a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>、<a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>、<a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>、<a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>、<a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>、<a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>、<a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>、<a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>、<a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>、<a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>、<a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>、<a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>、<a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>、<a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>、<a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>、<a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>、<a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>、<a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>、<a href=\"https://profiles.wordpress.org/frankiet\">frankiet</a>、<a href=\"https://profiles.wordpress.org/akeif\">Fred</a>、<a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>、<a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>、<a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</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/geekysoft\">Geeky Software</a>、<a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>、<a href=\"https://profiles.wordpress.org/goranseric\">Goran Šerić</a>、<a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>、<a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>、<a href=\"https://profiles.wordpress.org/greatislander\">greatislander</a>、<a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>、<a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>、<a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>、<a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>、<a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>、<a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>、<a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>、<a href=\"https://profiles.wordpress.org/iamjolly\">iamjolly</a>、<a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>、<a href=\"https://profiles.wordpress.org/ianedington\">ian.edington</a>、<a href=\"https://profiles.wordpress.org/idealien\">idealien</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/imnok\">Imnok</a>、<a href=\"https://profiles.wordpress.org/implenton\">implenton</a>、<a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>、<a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>、<a href=\"https://profiles.wordpress.org/krstarica\">Ivan</a>、<a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>、<a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>、<a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>、<a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>、<a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>、<a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>、<a href=\"https://profiles.wordpress.org/japh\">Japh</a>、<a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>、<a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>、<a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>、<a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>、<a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</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/jimt\">jimt</a>、<a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>、<a href=\"https://profiles.wordpress.org/jmusal\">jmusal</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/joemcgill\">Joe McGill</a>、<a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>、<a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>、<a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>、<a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</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/johnpgreen\">johnpgreen</a>、<a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>、<a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>、<a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>、<a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>、<a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>、<a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>、<a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>、<a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>、<a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>、<a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>、<a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>、<a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>、<a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>、<a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>、<a href=\"https://profiles.wordpress.org/joyously\">Joy</a>、<a href=\"https://profiles.wordpress.org/jrf\">jrf</a>、<a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>、<a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>、<a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>、<a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>、<a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>、<a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>、<a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</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/kacperszurek\">kacperszurek</a>、<a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>、<a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>、<a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>、<a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>、<a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>、<a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>、<a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>、<a href=\"https://profiles.wordpress.org/wraithkenny\">Ken Newman</a>、<a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</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/ixkaito\">Kite</a>、<a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>、<a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>、<a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>、<a href=\"https://profiles.wordpress.org/kokarn\">kokarn</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/kouratoras\">Konstantinos Kouratoras</a>、<a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>、<a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>、<a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>、<a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>、<a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>、<a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>、<a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>、<a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>、<a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>、<a href=\"https://profiles.wordpress.org/lukepettway\">lukepettway</a>、<a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>、<a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>、<a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>、<a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>、<a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>、<a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>、<a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>、<a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>、<a href=\"https://profiles.wordpress.org/mariovalney\">Mario Valney</a>、<a href=\"https://profiles.wordpress.org/clorith\">Marius L. J. (Clorith)</a>、<a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>、<a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>、<a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>、<a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>、<a href=\"https://profiles.wordpress.org/markshep\">markshep</a>、<a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>、<a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>、<a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt Jaworski</a>、<a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>、<a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>、<a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>、<a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</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/maxcutler\">Max Cutler</a>、<a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>、<a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>、<a href=\"https://profiles.wordpress.org/mbelchev\">mbelchev</a>、<a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>、<a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>、<a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>、<a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>、<a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</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/mihai2u\">Mike Crantea</a>、<a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</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/mikeschroder\">Mike Schroder</a>、<a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>、<a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>、<a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>、<a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>、<a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>、<a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>、<a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</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/mt8biz\">moto hachi ( mt8.biz )</a>、<a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>、<a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>、<a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>、<a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>、<a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>、<a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>、<a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>、<a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>、<a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>、<a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>、<a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>、<a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>、<a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>、<a href=\"https://profiles.wordpress.org/odie2\">odie2</a>、<a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>、<a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>、<a href=\"https://profiles.wordpress.org/orvils\">orvils</a>、<a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>、<a href=\"https://profiles.wordpress.org/ottok\">Otto Kekäläinen</a>、<a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>、<a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>、<a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>、<a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>、<a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>、<a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>、<a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>、<a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>、<a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>、<a href=\"https://profiles.wordpress.org/phh\">phh</a>、<a href=\"https://profiles.wordpress.org/php\">php</a>、<a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>、<a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>、<a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>、<a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>、<a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>、<a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>、<a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>、<a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>、<a href=\"https://profiles.wordpress.org/quasel\">quasel</a>、<a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>、<a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>、<a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</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/ranh\">ranh</a>、<a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>、<a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>、<a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>、<a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>、<a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>、<a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>、<a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>、<a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>、<a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Araújo</a>、<a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>、<a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</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/ryanplas\">Ryan Plas</a>、<a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>、<a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>、<a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>、<a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>、<a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>、<a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>、<a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>、<a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>、<a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>、<a href=\"https://profiles.wordpress.org/schlessera\">schlessera</a>、<a href=\"https://profiles.wordpress.org/schrapel\">schrapel</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/scrappyhuborg\">scrappy@hub.org</a>、<a href=\"https://profiles.wordpress.org/scribu\">scribu</a>、<a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>、<a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>、<a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>、<a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>、<a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>、<a href=\"https://profiles.wordpress.org/shprink\">shprink</a>、<a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>、<a href=\"https://profiles.wordpress.org/skippy\">skippy</a>、<a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>、<a href=\"https://profiles.wordpress.org/snacking\">snacking</a>、<a href=\"https://profiles.wordpress.org/soean\">Soeren Wrede</a>、<a href=\"https://profiles.wordpress.org/solal\">solal</a>、<a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>、<a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>、<a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>、<a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>、<a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</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/stevenlinx\">stevenlinx</a>、<a href=\"https://profiles.wordpress.org/stubgo\">stubgo</a>、<a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>、<a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>、<a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>、<a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>、<a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>、<a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>、<a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>、<a href=\"https://profiles.wordpress.org/team\">team</a>、<a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>、<a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>、<a href=\"https://profiles.wordpress.org/the\">the</a>、<a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>、<a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>、<a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>、<a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>、<a href=\"https://profiles.wordpress.org/tierra\">tierra</a>、<a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>、<a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>、<a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>、<a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>、<a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>、<a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>、<a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>、<a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>、<a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>、<a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>、<a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>、<a href=\"https://profiles.wordpress.org/traversal\">traversal</a>、<a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>、<a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>、<a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>、<a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>、<a href=\"https://profiles.wordpress.org/truongwp\">Truong Giang</a>、<a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>、<a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>、<a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>、<a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>、<a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>、<a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>、<a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>、<a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>、<a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>、<a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>、<a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>、<a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>、<a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>、<a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>、<a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>、<a href=\"https://profiles.wordpress.org/yale01\">yale01</a>、<a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>、<a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>、<a href=\"https://profiles.wordpress.org/youknowriad\">youknowriad</a>、<a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>、<a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>、<a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>、<a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>和<a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>。</p>\n<p>特别感谢<a href=\"https://ramiabraham.com/\">Rami Abraham</a>制作发布视频。</p>\n<p>最后,让我们感谢为本次发布提供了翻译的贡献者。WordPress 4.7被翻译成了52种语言,这次的发布视频也被翻译成了44种语言!</p>\n<p>如果您想帮忙,请查阅<a href=\"https://make.wordpress.org/\">Make WordPress</a>和我们的<a href=\"https://make.wordpress.org/core/\">核心开发博客</a>。感谢您选择WordPress,我们希望您喜欢!</p>\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:49:\"https://cn.wordpress.org/2016/12/08/vaughan/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:\"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:\"\";}}}}}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:26:\"WordPress 4.5“Coleman”\";s:7:\"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:\"https://cn.wordpress.org/2016/04/17/coleman/\";s: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:53:\"https://cn.wordpress.org/2016/04/17/coleman/#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:\"Sun, 17 Apr 2016 03:18:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://cn.wordpress.org/?p=1024\";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.5简体中文版现已开放下载。\";s: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:\"Jimmy Xu\";s: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:26377:\"<div style=\"width: 692px\">\n<p>WordPress 4.5简体中文版现已<a href=\"https://cn.wordpress.org/releases/\">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Coleman”,以纪念爵士萨克斯手科尔曼·霍金斯。4.5的全新功能协助您精简工作流程,无论您要写作还是建构网站。</p>\n<div id=\"v-scFdjVo6-1\" class=\"video-player\"><video id=\"v-scFdjVo6-1-video\" width=\"612\" height=\"344\" poster=\"https://videos.files.wordpress.com/scFdjVo6/video-604c4abe08_scruberthumbnail_1.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/scFdjVo6/video-604c4abe08_dvd.mp4\" type=\"video/mp4; codecs="avc1.64001E, mp4a.40.2"\" /><source src=\"https://videos.files.wordpress.com/scFdjVo6/video-604c4abe08_fmt1.ogv\" type=\"video/ogg; codecs="theora, vorbis"\" /><div><img alt=\"Introducing WordPress 4.5 “Coleman”\" src=\"https://videos.files.wordpress.com/scFdjVo6/video-604c4abe08_scruberthumbnail_1.jpg\" width=\"612\" height=\"344\" /></div><p>Introducing WordPress 4.5 “Coleman”</p></video></div>\n<hr />\n<h2 style=\"text-align: center\">编辑功能的改善</h2>\n<p><img class=\"aligncenter size-full wp-image-4220\" src=\"https://wordpress.org/news/files/2016/04/illustration-short-inlinelinks.png\" alt=\"illustration-short-inlinelinks\" width=\"1000\" height=\"400\" /></p>\n<h3>行内链接</h3>\n<p>通过降低分心的编写界面,轻易地链接内容,让您更专注在您的写作上。</p>\n<p><img class=\"aligncenter size-full wp-image-4265\" src=\"https://wordpress.org/news/files/2016/04/editing-shortcuts-big.gif\" alt=\"editing-shortcuts-big\" width=\"960\" height=\"576\" /></p>\n<h3>格式捷径</h3>\n<p>您喜欢在编写列表和标题时使用格式捷径吗?伴随着水平线和<code><code></code>现在它们变得更好用了。</p>\n<hr />\n<h2 style=\"text-align: center\">自定义进步</h2>\n<p><img class=\"aligncenter size-full wp-image-4221\" src=\"https://wordpress.org/news/files/2016/04/illustration-short-responsive-preview.png\" alt=\"illustration-short-responsive-preview\" width=\"1000\" height=\"400\" /></p>\n<h3>实时响应式预览</h3>\n<p>确保您的站点在所有设备屏幕上都能完美呈现!在定制器中直接预览手机、平板及桌面的版面。</p>\n<p><img class=\"aligncenter wp-image-4239 size-full\" src=\"https://wordpress.org/news/files/2016/04/illustration-short-customlogo-whitespace.png\" width=\"1000\" height=\"440\" /></p>\n<h3>自定标志</h3>\n<p>“二〇一五”及“二〇一六”主题已经更新,现已支持自定标志,您可以在定制器的“站点识别”一节找到,</p>\n<hr />\n<h2 style=\"text-align: center\">引擎盖下</h2>\n<div class=\"under-the-hood three-col\">\n<div class=\"col\">\n<h3>智能图片缩放</h3>\n<p>生成图片的速度现在提升了50%且无损品质。<a href=\"https://make.wordpress.org/core/2016/03/12/performance-improvements-for-images-in-wordpress-4-5/\">这真的非常酷</a>。</p>\n</div>\n<div class=\"col\">\n<h3>选择性刷新</h3>\n<p>定制器现在支持<a href=\"https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/\">全方位框架</a>来渲染各部分的预览,无须使用JavaScript重写您的PHP代码。</p>\n</div>\n<div class=\"col\">\n<h3>改善脚本载入器</h3>\n<p>更好地支持了脚本头/尾的依赖关系。新的<code><a href=\"https://make.wordpress.org/core/2016/03/08/enhanced-script-loader-in-wordpress-4-5/\">wp_add_inline_script()</a></code>可以针对已注册的脚本加入额外的代码。</p>\n<h3>更棒的嵌入模板</h3>\n<p>嵌入模板已分离为不同部分,并且可以通过模板层级<a href=\"https://make.wordpress.org/core/2016/03/11/embeds-changes-in-wordpress-4-5/\">直接由主题进行覆盖</a>。</p>\n<h3>JavaScript库更新</h3>\n<p>jQuery 1.12.3、jQuery Migrate 1.4.0、Backbone 1.2.3和Underscore 1.8.3现已收录。</p>\n</div>\n</div>\n<div class=\"under-the-hood two-col\"></div>\n<hr />\n<h2 style=\"text-align: center\">开发团队</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/mikeschroder\"><img id=\"grav-76424a001dc6b3ebb4faca0c567800c4-0\" class=\"grav-hashed\" src=\"https://www.gravatar.com/avatar/76424a001dc6b3ebb4faca0c567800c4?d=mm&s=180&r=G\" alt=\"Mike Schroder\" width=\"80\" height=\"80\" /></a>此次发布由<a href=\"https://getsource.net/\">Mike Schroder</a>领头,由<a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>担任发布代表,<a href=\"https://choycedesign.com/\">Mel Choyce</a>担任发布设计主管,并得到了以下个人的帮助。这次发布包含了298人的贡献。在您喜欢的音乐服务中听听科尔曼·霍金斯,并看看下面这些个人资料吧:</p>\n<p><a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>、<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>、<a href=\"https://profiles.wordpress.org/uglyrobot\">Aaron Edwards</a>、<a href=\"https://profiles.wordpress.org/ahockley\">Aaron Hockley</a>、<a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>、<a href=\"https://profiles.wordpress.org/abiralneupane\">Abiral Neupane</a>、<a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>、<a href=\"https://profiles.wordpress.org/aidanlane\">aidanlane</a>、<a href=\"https://profiles.wordpress.org/ambrosey\">Alice Brosey</a>、<a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</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/nacin\">Andrew Nacin</a>、<a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>、<a href=\"https://profiles.wordpress.org/rockwell15\">Andrew Rockwell</a>、<a href=\"https://profiles.wordpress.org/andizer\">Andy</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/apaliku\">apaliku</a>、<a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>、<a href=\"https://profiles.wordpress.org/ashmatadeen\">ash.matadeen</a>、<a href=\"https://profiles.wordpress.org/bappidgreat\">Ashok Kumar Nath</a>、<a href=\"https://profiles.wordpress.org/bandonrandon\">BandonRandon</a>、<a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>、<a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>、<a href=\"https://profiles.wordpress.org/berengerzyla\">berengerzyla</a>、<a href=\"https://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>、<a href=\"https://profiles.wordpress.org/thisisit\">Bhushan S. Jawle</a>、<a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>、<a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>、<a href=\"https://profiles.wordpress.org/williamsba1\">Brad Williams</a>、<a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>、<a href=\"https://profiles.wordpress.org/thebrandonallen\">Brandon Allen</a>、<a href=\"https://profiles.wordpress.org/bhubbard\">Brandon Hubbard</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/borgesbruno\">Bruno Borges</a>、<a href=\"https://profiles.wordpress.org/chmac\">Callum Macdonald</a>、<a href=\"https://profiles.wordpress.org/camikaos\">Cami Kaos</a>、<a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>、<a href=\"https://profiles.wordpress.org/mackensen\">Charles Fulton</a>、<a href=\"https://profiles.wordpress.org/chetanchauhan\">Chetan Chauhan</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/chriscct7\">Chris Christoff</a>、<a href=\"https://profiles.wordpress.org/chris_dev\">Chris Mok</a>、<a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>、<a href=\"https://profiles.wordpress.org/ckoerner\">ckoerner</a>、<a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>、<a href=\"https://profiles.wordpress.org/compute\">Compute</a>、<a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>、<a href=\"https://profiles.wordpress.org/d4z_c0nf\">d4z_c0nf</a>、<a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>、<a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>、<a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>、<a href=\"https://profiles.wordpress.org/scarinessreported\">Daniel Bailey</a>、<a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>、<a href=\"https://profiles.wordpress.org/diddledan\">Daniel Llewellyn</a>、<a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>、<a href=\"https://profiles.wordpress.org/danielpataki\">danielpataki</a>、<a href=\"https://profiles.wordpress.org/dvankooten\">Danny van Kooten</a>、<a href=\"https://profiles.wordpress.org/thewanderingbrit\">Dave Clements</a>、<a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>、<a href=\"https://profiles.wordpress.org/dbrumbaugh10up\">David Brumbaugh</a>、<a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>、<a href=\"https://profiles.wordpress.org/dnewton\">David Newton</a>、<a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>、<a href=\"https://profiles.wordpress.org/folletto\">Davide ‘Folletto’ Casali</a>、<a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>、<a href=\"https://profiles.wordpress.org/realloc\">Dennis Ploetner</a>、<a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>、<a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>、<a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>、<a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>、<a href=\"https://profiles.wordpress.org/dossy\">Dossy Shiobara</a>、<a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>、<a href=\"https://profiles.wordpress.org/drebbitsweb\">Dreb Bits</a>、<a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>、<a href=\"https://profiles.wordpress.org/duaneblake\">duaneblake</a>、<a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>、<a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>、<a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>、<a href=\"https://profiles.wordpress.org/codex-m\">Emerson Maningo</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/ebinnion\">Eric Binnion</a>、<a href=\"https://profiles.wordpress.org/ericdaams\">Eric Daams</a>、<a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</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/faishal\">faishal</a>、<a href=\"https://profiles.wordpress.org/fantasyworld\">fantasyworld</a>、<a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>、<a href=\"https://profiles.wordpress.org/finnj\">finnj</a>、<a href=\"https://profiles.wordpress.org/firebird75\">firebird75</a>、<a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>、<a href=\"https://profiles.wordpress.org/fusillicode\">fusillicode</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/gblsm\">gblsm</a>、<a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>、<a href=\"https://profiles.wordpress.org/garusky\">Giuseppe Mamone</a>、<a href=\"https://profiles.wordpress.org/jubstuff\">Giustino Borzacchiello</a>、<a href=\"https://profiles.wordpress.org/grantpalin\">Grant Palin</a>、<a href=\"https://profiles.wordpress.org/groovecoder\">groovecoder</a>、<a href=\"https://profiles.wordpress.org/wido\">Guido Scialfa</a>、<a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>、<a href=\"https://profiles.wordpress.org/hakre\">hakre</a>、<a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>、<a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>、<a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>、<a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</a>、<a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>、<a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</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/iamntz\">Ionut Staicu</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/jadpm\">jadpm</a>、<a href=\"https://profiles.wordpress.org/jamesdigioia\">James DiGioia</a>、<a href=\"https://profiles.wordpress.org/jason_the_adams\">Jason</a>、<a href=\"https://profiles.wordpress.org/jaspermdegroot\">Jasper de Groot</a>、<a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>、<a href=\"https://profiles.wordpress.org/jeffpyebrookcom\">Jeffrey Schutzman</a>、<a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</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/jesin\">Jesin A</a>、<a href=\"https://profiles.wordpress.org/ardathksheyna\">Jess G.</a>、<a href=\"https://profiles.wordpress.org/boluda\">Joan Boluda</a>、<a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>、<a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>、<a href=\"https://profiles.wordpress.org/joelerr\">joelerr</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/johnnypea\">JohnnyPea</a>、<a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>、<a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>、<a href=\"https://profiles.wordpress.org/keraweb\">Jory Hogeveen</a>、<a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>、<a href=\"https://profiles.wordpress.org/joshlevinson\">Josh Levinson</a>、<a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>、<a href=\"https://profiles.wordpress.org/jrchamp\">jrchamp</a>、<a href=\"https://profiles.wordpress.org/jrf\">jrf</a>、<a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>、<a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>、<a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>、<a href=\"https://profiles.wordpress.org/katieburch\">katieburch</a>、<a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>、<a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>、<a href=\"https://profiles.wordpress.org/kiranpotphode\">Kiran Potphode</a>、<a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>、<a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>、<a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</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/kouratoras\">Konstantinos Kouratoras</a>、<a href=\"https://profiles.wordpress.org/krissiev\">KrissieV</a>、<a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>、<a href=\"https://profiles.wordpress.org/leemon\">leemon</a>、<a href=\"https://profiles.wordpress.org/layotte\">Lew Ayotte</a>、<a href=\"https://profiles.wordpress.org/liamdempsey\">Liam Dempsey</a>、<a href=\"https://profiles.wordpress.org/luan-ramos\">Luan Ramos</a>、<a href=\"https://profiles.wordpress.org/luciole135\">luciole135</a>、<a href=\"https://profiles.wordpress.org/lpawlik\">Lukas Pawlik</a>、<a href=\"https://profiles.wordpress.org/latz\">Lutz Schröer</a>、<a href=\"https://profiles.wordpress.org/madvic\">madvic</a>、<a href=\"https://profiles.wordpress.org/marcochiesi\">Marco Chiesi</a>、<a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>、<a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</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/mapk\">Mark Uraine</a>、<a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>、<a href=\"https://profiles.wordpress.org/gitlost\">Martin Burke</a>、<a href=\"https://profiles.wordpress.org/mattfelten\">Matt Felten</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/mattgeri\">MattGeri</a>、<a href=\"https://profiles.wordpress.org/wp-architect\">Matthew Ell</a>、<a href=\"https://profiles.wordpress.org/maweder\">maweder</a>、<a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>、<a href=\"https://profiles.wordpress.org/mcapybara\">mcapybara</a>、<a href=\"https://profiles.wordpress.org/mehulkaklotar\">Mehul Kaklotar</a>、<a href=\"https://profiles.wordpress.org/meitar\">Meitar</a>、<a href=\"https://profiles.wordpress.org/mensmaximus\">mensmaximus</a>、<a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>、<a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>、<a href=\"https://profiles.wordpress.org/micropat\">micropat</a>、<a href=\"https://profiles.wordpress.org/ipstenu\">Mika Epstein</a>、<a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</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/dimadin\">Milan Dinić</a>、<a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>、<a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>、<a href=\"https://profiles.wordpress.org/usermrpapa\">Mr Papa</a>、<a href=\"https://profiles.wordpress.org/mwidmann\">mwidmann</a>、<a href=\"https://profiles.wordpress.org/nexurium\">nexurium</a>、<a href=\"https://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>、<a href=\"https://profiles.wordpress.org/nicdford\">Nic Ford</a>、<a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>、<a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>、<a href=\"https://profiles.wordpress.org/ninos-ego\">Ninos</a>、<a href=\"https://profiles.wordpress.org/oaron\">oaron</a>、<a href=\"https://profiles.wordpress.org/overclokk\">overclokk</a>、<a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>、<a href=\"https://profiles.wordpress.org/obrienlabs\">Pat O’Brien</a>、<a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>、<a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>、<a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>、<a href=\"https://profiles.wordpress.org/perezlabs\">Perez Labs</a>、<a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>、<a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>、<a href=\"https://profiles.wordpress.org/cadeyrn\">petermolnar</a>、<a href=\"https://profiles.wordpress.org/walbo\">Petter Walbø Johnsgård</a>、<a href=\"https://profiles.wordpress.org/wizzard_\">Pieter</a>、<a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>、<a href=\"https://profiles.wordpress.org/ptahdunbar\">Pirate Dunbar</a>、<a href=\"https://profiles.wordpress.org/prettyboymp\">prettyboymp</a>、<a href=\"https://profiles.wordpress.org/profforg\">Profforg</a>、<a href=\"https://profiles.wordpress.org/programmin\">programmin</a>、<a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>、<a href=\"https://profiles.wordpress.org/rahalaboulfeth\">rahal.aboulfeth</a>、<a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>、<a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>、<a href=\"https://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>、<a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</a>、<a href=\"https://profiles.wordpress.org/rob\">rob</a>、<a href=\"https://profiles.wordpress.org/rogerhub\">Roger Chen</a>、<a href=\"https://profiles.wordpress.org/romsocial\">RomSocial</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/ryankienstra\">Ryan Kienstra</a>、<a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>、<a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>、<a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>、<a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>、<a href=\"https://profiles.wordpress.org/salvoaranzulla\">salvoaranzulla</a>、<a href=\"https://profiles.wordpress.org/samhotchkiss\">Sam Hotchkiss</a>、<a href=\"https://profiles.wordpress.org/rosso99\">Sara Rosso</a>、<a href=\"https://profiles.wordpress.org/sarciszewski\">Scott Arciszewski</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/scottbrownconsulting\">scottbrownconsulting</a>、<a href=\"https://profiles.wordpress.org/scribu\">scribu</a>、<a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>、<a href=\"https://profiles.wordpress.org/sergejmueller\">Sergej Müller</a>、<a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>、<a href=\"https://profiles.wordpress.org/shamess\">Shane</a>、<a href=\"https://profiles.wordpress.org/shinichin\">Shinichi Nishikawa</a>、<a href=\"https://profiles.wordpress.org/sidati\">sidati</a>、<a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>、<a href=\"https://profiles.wordpress.org/aargh-a-knot\">sky</a>、<a href=\"https://profiles.wordpress.org/slushman\">slushman</a>、<a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>、<a href=\"https://profiles.wordpress.org/stephanethomas\">stephanethomas</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/stevenkword\">Steven Word</a>、<a href=\"https://profiles.wordpress.org/charlestonsw\">Store Locator Plus</a>、<a href=\"https://profiles.wordpress.org/subharanjan\">Subharanjan</a>、<a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>、<a href=\"https://profiles.wordpress.org/5um17\">Sumit Singh</a>、<a href=\"https://profiles.wordpress.org/tacoverdo\">Taco Verdonschot</a>、<a href=\"https://profiles.wordpress.org/tahteche\">tahteche</a>、<a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>、<a href=\"https://profiles.wordpress.org/takayukister\">Takayuki Miyoshi</a>、<a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>、<a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>、<a href=\"https://profiles.wordpress.org/themiked\">theMikeD</a>、<a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>、<a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>、<a href=\"https://profiles.wordpress.org/timplunkett\">timplunkett</a>、<a href=\"https://profiles.wordpress.org/tmuikku\">tmuikku</a>、<a href=\"https://profiles.wordpress.org/skithund\">Toni Viemerö</a>、<a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>、<a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>、<a href=\"https://profiles.wordpress.org/rilwis\">Tran Ngoc Tuan Anh</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/grapplerulrich\">Ulrich</a>、<a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>、<a href=\"https://profiles.wordpress.org/vhomenko\">vhomenko</a>、<a href=\"https://profiles.wordpress.org/virgodesign\">virgodesign</a>、<a href=\"https://profiles.wordpress.org/vladolaru\">vlad.olaru</a>、<a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>、<a href=\"https://profiles.wordpress.org/vtieu\">vtieu</a>、<a href=\"https://profiles.wordpress.org/webaware\">webaware</a>、<a href=\"https://profiles.wordpress.org/wesleye\">Wesley Elfring</a>、<a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>、<a href=\"https://profiles.wordpress.org/wisdmlabs\">WisdmLabs</a>、<a href=\"https://profiles.wordpress.org/wpdelighter\">WP Delighter</a>、<a href=\"https://profiles.wordpress.org/xavortm\">xavortm</a>、<a href=\"https://profiles.wordpress.org/yetanotherdaniel\">yetAnotherDaniel</a>和<a href=\"https://profiles.wordpress.org/zinigor\">zinigor</a>。</p>\n<p>特别感谢<a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a>制作发布视频,及<a href=\"https://jacklenox.com/\">Jack Lenox</a>的配音。</p>\n<p>最后,让我们感谢为本次发布提供了翻译的贡献者。WordPress 4.5被翻译成了44种语言,这次的发布视频也被翻译成了32种语言!</p>\n<p>如果您想帮忙,请查阅<a href=\"https://make.wordpress.org/\">Make WordPress</a>和我们的<a href=\"https://make.wordpress.org/core/\">核心开发博客</a>。感谢您选择WordPress,我们4.6见!</p>\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:49:\"https://cn.wordpress.org/2016/04/17/coleman/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:\"5\";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 4.4“Clifford”\";s:7:\"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://cn.wordpress.org/2015/12/13/clifford/\";s: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:54:\"https://cn.wordpress.org/2015/12/13/clifford/#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, 12 Dec 2015 22:52:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://cn.wordpress.org/?p=1011\";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.4简体中文版现已开放下载。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jimmy Xu\";s: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:37891:\"<div style=\"width: 692px\">\n<p>WordPress 4.4简体中文版现已<a href=\"https://cn.wordpress.org/releases/\">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Clifford”,以纪念爵士小号手<a href=\"https://en.wikipedia.org/wiki/Clifford_Brown\">克利福德·布朗</a>。4.4让您的网站更具连接性且反应敏捷。Clifford也带来了全新的默认主题,二〇一六。</p>\n<hr />\n<h2>介绍二〇一六</h2>\n<p><img class=\"aligncenter size-full wp-image-3994\" src=\"https://wordpress.org/news/files/2015/12/ipad-white-desktop-2x.png\" alt=\"A screenshot of Twenty Sixteen set in an iPad frame\" width=\"632\" height=\"428\" /></p>\n<p>我们最新的默认主题,二〇一六,是一个具现代感又不失经典博客设计风格的主题。</p>\n<p>二〇一六在任何设备上都看起来很棒。一个流动式网格设计、灵活页首,搭配各式趣味的配色,让你的内容大放异彩。</p>\n<hr />\n<h2>自适应图片</h2>\n<p><img class=\"aligncenter wp-image-3995 size-full\" src=\"https://wordpress.org/news/files/2015/12/responsive-devices-ipad-2x.png\" alt=\"An image of a laptop, iPad, Android phone, and iPhone containing the same image displayed at multiple sizes to demonstrate responsive image features.\" width=\"632\" height=\"290\" /></p>\n<p>WordPress现在以更聪明的方式显示适合任何设备的图片尺寸,确保每次皆完美呈现。您甚至不需要修改您的主题,</p>\n<hr />\n<h2>嵌入一切</h2>\n<blockquote class=\"wp-embedded-content\" data-secret=\"90z26jVNGy\"><p><a href=\"https://make.wordpress.org/core/2015/10/28/new-embeds-feature-in-wordpress-4-4/\">New Embeds Feature in WordPress 4.4</a></p></blockquote>\n<p><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" src=\"https://make.wordpress.org/core/2015/10/28/new-embeds-feature-in-wordpress-4-4/embed/#?secret=90z26jVNGy\" data-secret=\"90z26jVNGy\" width=\"600\" height=\"338\" title=\"“New Embeds Feature in WordPress 4.4” — Make WordPress Core\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe></p>\n<p>现在您可以将文章嵌入到其他WordPress网站。只要将文章URL贴入编辑器,即可看到即时嵌入预览,完整的标题、摘要及特色图片(如果您有设定),甚至会包含您的网站图标以及评论与分享链接。</p>\n<p>除了文章嵌入外,WordPress 4.4还加入五个新的oEmbed提供者:Cloudup、Reddit留言、ReverbNation、Speaker Deck及VideoPress。</p>\n<hr />\n<h2>引擎盖下</h2>\n<p><img class=\"aligncenter size-full wp-image-4003\" src=\"https://wordpress.org/news/files/2015/12/banner-1544x500.jpg\" alt=\"The WordPress REST API logo\" width=\"1544\" height=\"500\" /></p>\n<h3>REST API基础设施</h3>\n<p>REST API基础设施已整合于WordPress的核心中,将开发模式带入一个崭新的纪元。REST API为开发者提供在WordPress之上建设并扩展RESTful API的道路。</p>\n<p>基础设施是REST API多阶段推出的第一部分,而将会在未来的发布中包含核心节点。要了解更多关于核心节点或是扩展REST API的信息,请查阅官方<a href=\"https://wordpress.org/plugins/rest-api/\">WordPress REST API</a>扩展。</p>\n<h3>项目元数据</h3>\n<p>项目现在像文章一样支持元数据。请参阅<a href=\"https://developer.wordpress.org/reference/functions/add_term_meta\"><code>add_term_meta()</code></a>、<a href=\"https://developer.wordpress.org/reference/functions/get_term_meta\"><code>get_term_meta()</code></a>和<a href=\"https://developer.wordpress.org/reference/functions/update_term_meta\"><code>update_term_meta()</code></a>来获得更多信息。</p>\n<h3>评论查询改善</h3>\n<p>评论查询现在有缓存机制来改善性能。全新<code>WP_Comment_Query</code>参数能更轻松地调用、访问评论。</p>\n<h3>项目、评论以及网络对象</h3>\n<p>新的<code>WP_Term</code>、<code>WP_Comment</code>和<code>WP_Network</code>对象让与项目、评论和网络的交互变得更直观、更可预测。</p>\n<hr />\n<h2>开发团队</h2>\n<p>此次发布由<a href=\"http://scotty-t.com/\">Scott Taylor</a>领头,并得到了以下个人的帮助。这次发布包含了471人的贡献(创下新高!)。在您喜欢的音乐服务中听听克利福德·布朗,并看看下面这些个人资料吧:</p>\n<p><a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>、<a href=\"https://profiles.wordpress.org/_smartik_\">_smartik_</a>、<a href=\"https://profiles.wordpress.org/a5hleyrich\">A5hleyRich</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/aaronrutley\">Aaron Rutley</a>、<a href=\"https://profiles.wordpress.org/kawauso\">Adam Harley (Kawauso)</a>、<a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>、<a href=\"https://profiles.wordpress.org/adamholisky\">adamholisky</a>、<a href=\"https://profiles.wordpress.org/aduth\">aduth</a>、<a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>、<a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bjorklund</a>、<a href=\"https://profiles.wordpress.org/albertoct\">AlbertoCT</a>、<a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</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/gounder\">Alexander Gounder</a>、<a href=\"https://profiles.wordpress.org/alireza1375\">alireza1375</a>、<a href=\"https://profiles.wordpress.org/shedonist\">Amanda Giles</a>、<a href=\"https://profiles.wordpress.org/amereservant\">amereservant</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/afragen\">Andy Fragen</a>、<a href=\"https://profiles.wordpress.org/amandato\">Angelo Mandato</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\">Anthony Burchell</a>、<a href=\"https://profiles.wordpress.org/apkoponen\">ap.koponen</a>、<a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>、<a href=\"https://profiles.wordpress.org/athsear\">Athsear’J.S.</a>、<a href=\"https://profiles.wordpress.org/atomicjack\">atomicjack</a>、<a href=\"https://profiles.wordpress.org/austinginder\">Austin Ginder</a>、<a href=\"https://profiles.wordpress.org/filosofo\">Austin Matzko</a>、<a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>、<a href=\"https://profiles.wordpress.org/barrykooij\">Barry Kooij</a>、<a href=\"https://profiles.wordpress.org/bcworkz\">bcworkz</a>、<a href=\"https://profiles.wordpress.org/bdn3504\">BdN3504</a>、<a href=\"https://profiles.wordpress.org/pixolin\">Bego Mario Garde</a>、<a href=\"https://profiles.wordpress.org/benjmay\">Ben May</a>、<a href=\"https://profiles.wordpress.org/benjaminpick\">Benjamin Pick</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/bilalcoder\">bilalcoder</a>、<a href=\"https://profiles.wordpress.org/binarykitten\">BinaryKitten</a>、<a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>、<a href=\"https://profiles.wordpress.org/bjornjohansen\">Bjorn Johansen</a>、<a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>、<a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>、<a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</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/bradyvercher\">Brady Vercher</a>、<a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>、<a href=\"https://profiles.wordpress.org/bravokeyl\">bravokeyl</a>、<a href=\"https://profiles.wordpress.org/brentvr\">brentvr</a>、<a href=\"https://profiles.wordpress.org/brettz95\">brettz95</a>、<a href=\"https://profiles.wordpress.org/mckilem\">Bruno Kos</a>、<a href=\"https://profiles.wordpress.org/crazycoolcam\">Cam</a>、<a href=\"https://profiles.wordpress.org/camikaos\">Cami Kaos</a>、<a href=\"https://profiles.wordpress.org/carolinegeven\">carolinegeven</a>、<a href=\"https://profiles.wordpress.org/misterbisson\">Casey Bisson</a>、<a href=\"https://profiles.wordpress.org/cdog\">Catalin Dogaru</a>、<a href=\"https://profiles.wordpress.org/ch1902\">ch1902</a>、<a href=\"https://profiles.wordpress.org/chacha102\">chacha102</a>、<a href=\"https://profiles.wordpress.org/nhuja\">Chandra M</a>、<a href=\"https://profiles.wordpress.org/chasewiseman\">Chase Wiseman</a>、<a href=\"https://profiles.wordpress.org/chiara_09\">Chiara Dossena</a>、<a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>、<a href=\"https://profiles.wordpress.org/chiragswadia\">Chirag Swadia</a>、<a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>、<a href=\"https://profiles.wordpress.org/chrismkindred\">Chris Kindred</a>、<a href=\"https://profiles.wordpress.org/cklosows\">Chris Klosowski</a>、<a href=\"https://profiles.wordpress.org/chriscoyier\">chriscoyier</a>、<a href=\"https://profiles.wordpress.org/chrisdc1\">Chrisdc1</a>、<a href=\"https://profiles.wordpress.org/lovememore\">christianoliff</a>、<a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>、<a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>、<a href=\"https://profiles.wordpress.org/chrisvendiadvertisingcom\">cjhaas</a>、<a href=\"https://profiles.wordpress.org/codeelite\">codeelite</a>、<a href=\"https://profiles.wordpress.org/coenjacobs\">Coen Jacobs</a>、<a href=\"https://profiles.wordpress.org/compute\">Compute</a>、<a href=\"https://profiles.wordpress.org/couturefreak\">Courtney Ivey</a>、<a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>、<a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>、<a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>、<a href=\"https://profiles.wordpress.org/dboulet\">Dan Boulet</a>、<a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>、<a href=\"https://profiles.wordpress.org/daniel-koskinen\">Daniel Koskinen</a>、<a href=\"https://profiles.wordpress.org/dmenard\">Daniel Menard</a>、<a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>、<a href=\"https://profiles.wordpress.org/daniellandau\">daniellandau</a>、<a href=\"https://profiles.wordpress.org/daniloercoli\">daniloercoli</a>、<a href=\"https://profiles.wordpress.org/dannydehaan\">Danny de Haan</a>、<a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>、<a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>、<a href=\"https://profiles.wordpress.org/dattaparad\">Datta Parad</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/davidanderson\">David Anderson</a>、<a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>、<a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>、<a href=\"https://profiles.wordpress.org/davidbinda\">david.binda</a>、<a href=\"https://profiles.wordpress.org/debaat\">DeBAAT</a>、<a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>、<a href=\"https://profiles.wordpress.org/realloc\">Dennis Ploetner</a>、<a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>、<a href=\"https://profiles.wordpress.org/downstairsdev\">Devin Price</a>、<a href=\"https://profiles.wordpress.org/dezzy\">Dezzy</a>、<a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>、<a href=\"https://profiles.wordpress.org/dipalidhole27gmailcom\">Dipali Dhole</a>、<a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipesh.kakadiya</a>、<a href=\"https://profiles.wordpress.org/dbru\">Dominik Bruderer</a>、<a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>、<a href=\"https://profiles.wordpress.org/drebbitsweb\">Dreb Bits</a>、<a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>、<a href=\"https://profiles.wordpress.org/dustinbolton\">dustinbolton</a>、<a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>、<a href=\"https://profiles.wordpress.org/edirect24\">edirect24</a>、<a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>、<a href=\"https://profiles.wordpress.org/eduardozulian\">Eduardo Zulian</a>、<a href=\"https://profiles.wordpress.org/cais\">Edward Caissie</a>、<a href=\"https://profiles.wordpress.org/egill\">Egill R. Erlendsson</a>、<a href=\"https://profiles.wordpress.org/egower\">egower</a>、<a href=\"https://profiles.wordpress.org/iehsanir\">Ehsaan</a>、<a href=\"https://profiles.wordpress.org/ehtis\">ehtis</a>、<a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>、<a href=\"https://profiles.wordpress.org/ellieroepken\">Ellie Strejlau</a>、<a href=\"https://profiles.wordpress.org/elliott-stocks\">Elliott Stocks</a>、<a href=\"https://profiles.wordpress.org/elusiveunit\">elusiveunit</a>、<a href=\"https://profiles.wordpress.org/enshrined\">enshrined</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/ericdaams\">Eric Daams</a>、<a href=\"https://profiles.wordpress.org/ericmann\">Eric Mann</a>、<a href=\"https://profiles.wordpress.org/ericjuden\">ericjuden</a>、<a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>、<a href=\"https://profiles.wordpress.org/f4rkie\">F4rkie</a>、<a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>、<a href=\"https://profiles.wordpress.org/fsylum\">Firdaus Zahari</a>、<a href=\"https://profiles.wordpress.org/fonglh\">fonglh</a>、<a href=\"https://profiles.wordpress.org/francoisb\">francoisb</a>、<a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>、<a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>、<a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>、<a href=\"https://profiles.wordpress.org/gaelan\">Gaelan Lloyd</a>、<a href=\"https://profiles.wordpress.org/gagan0123\">Gagan Deep Singh</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/grvrulz\">Gaurav Pareek</a>、<a href=\"https://profiles.wordpress.org/gautamgupta\">Gautam Gupta</a>、<a href=\"https://profiles.wordpress.org/geminorum\">geminorum</a>、<a href=\"https://profiles.wordpress.org/kloon\">Gerhard Potgieter</a>、<a href=\"https://profiles.wordpress.org/gezamiklo\">geza.miklo</a>、<a href=\"https://profiles.wordpress.org/gizburdt\">Gijs Jorissen</a>、<a href=\"https://profiles.wordpress.org/garusky\">Giuseppe Mamone</a>、<a href=\"https://profiles.wordpress.org/jubstuff\">Giustino Borzacchiello</a>、<a href=\"https://profiles.wordpress.org/gnaka08\">gnaka08</a>、<a href=\"https://profiles.wordpress.org/gradyetc\">gradyetc</a>、<a href=\"https://profiles.wordpress.org/gregrickaby\">Greg Rickaby</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/webord\">Gustavo Bordoni</a>、<a href=\"https://profiles.wordpress.org/gwinhlopez\">gwinh.lopez</a>、<a href=\"https://profiles.wordpress.org/hakre\">hakre</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/hnle\">Hinaloe</a>、<a href=\"https://profiles.wordpress.org/hrishiv90\">Hrishikesh Vaipurkar</a>、<a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</a>、<a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>、<a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>、<a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>、<a href=\"https://profiles.wordpress.org/iandstewart\">Ian Stewart</a>、<a href=\"https://profiles.wordpress.org/icetee\">icetee</a>、<a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>、<a href=\"https://profiles.wordpress.org/headonfire\">Ihor Vorotnov</a>、<a href=\"https://profiles.wordpress.org/imath\">imath</a>、<a href=\"https://profiles.wordpress.org/ippetkov\">ippetkov</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/macmanx\">James Huff</a>、<a href=\"https://profiles.wordpress.org/janhenckens\">janhenckens</a>、<a href=\"https://profiles.wordpress.org/japh\">Japh</a>、<a href=\"https://profiles.wordpress.org/jaspermdegroot\">Jasper de Groot</a>、<a href=\"https://profiles.wordpress.org/jazbek\">jazbek</a>、<a href=\"https://profiles.wordpress.org/jcroucher\">jcroucher</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/jeffmatson\">JeffMatson</a>、<a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>、<a href=\"https://profiles.wordpress.org/jeichorn\">jeichorn</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/jesin\">Jesin A</a>、<a href=\"https://profiles.wordpress.org/engelen\">Jesper van Engelen</a>、<a href=\"https://profiles.wordpress.org/jim912\">jim912</a>、<a href=\"https://profiles.wordpress.org/jliman\">jliman</a>、<a href=\"https://profiles.wordpress.org/jmayhak\">jmayhak</a>、<a href=\"https://profiles.wordpress.org/jnylen0\">jnylen0</a>、<a href=\"https://profiles.wordpress.org/jobst\">Jobst Schmalenbach</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/joemcgill\">Joe McGill</a>、<a href=\"https://profiles.wordpress.org/joehills\">joehills</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/mindctrl\">John Parris</a>、<a href=\"https://profiles.wordpress.org/duck_\">Jon Cave</a>、<a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</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/koke\">Jorge Bernal</a>、<a href=\"https://profiles.wordpress.org/betzster\">Josh Betz</a>、<a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>、<a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>、<a href=\"https://profiles.wordpress.org/jrf\">jrf</a>、<a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>、<a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>、<a href=\"https://profiles.wordpress.org/justdaiv\">justdaiv</a>、<a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>、<a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</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/kalenjohnson\">KalenJohnson</a>、<a href=\"https://profiles.wordpress.org/karinedo\">karinedo</a>、<a href=\"https://profiles.wordpress.org/karpstrucking\">karpstrucking</a>、<a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>、<a href=\"https://profiles.wordpress.org/kevinb\">Kevin Behrens</a>、<a href=\"https://profiles.wordpress.org/kevinlangleyjr\">Kevin Langley</a>、<a href=\"https://profiles.wordpress.org/kevinatelement\">kevinatelement</a>、<a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>、<a href=\"https://profiles.wordpress.org/ixkaito\">Kite</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/kraftner\">kraftner</a>、<a href=\"https://profiles.wordpress.org/drozdz\">Krzysiek Drozdz</a>、<a href=\"https://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>、<a href=\"https://profiles.wordpress.org/laceous\">laceous</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/lcherpit\">lcherpit</a>、<a href=\"https://profiles.wordpress.org/ldinclaux\">ldinclaux</a>、<a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>、<a href=\"https://profiles.wordpress.org/leemon\">leemon</a>、<a href=\"https://profiles.wordpress.org/lessbloat\">lessbloat</a>、<a href=\"https://profiles.wordpress.org/linuxologos\">linuxologos</a>、<a href=\"https://profiles.wordpress.org/spmlucas\">Lucas Karpiuk</a>、<a href=\"https://profiles.wordpress.org/lucatume\">lucatume</a>、<a href=\"https://profiles.wordpress.org/luciole135\">luciole135</a>、<a href=\"https://profiles.wordpress.org/lucymtc\">lucymtc</a>、<a href=\"https://profiles.wordpress.org/lukecarbis\">Luke Carbis</a>、<a href=\"https://profiles.wordpress.org/madalinungureanu\">madalin.ungureanu</a>、<a href=\"https://profiles.wordpress.org/mako09\">Mako</a>、<a href=\"https://profiles.wordpress.org/manolis09\">manolis09</a>、<a href=\"https://profiles.wordpress.org/iworks\">Marcin Pietrzak</a>、<a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</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/markjaquith\">Mark Jaquith</a>、<a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>、<a href=\"https://profiles.wordpress.org/mechter\">Markus</a>、<a href=\"https://profiles.wordpress.org/wilto\">Mat Marquis</a>、<a href=\"https://profiles.wordpress.org/matheusfd\">Matheus Martins</a>、<a href=\"https://profiles.wordpress.org/mattbagwell\">Matt Bagwell</a>、<a href=\"https://profiles.wordpress.org/mgibbs189\">Matt Gibbs</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/veraxus\">Matt van Andel</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/mazurstas\">mazurstas</a>、<a href=\"https://profiles.wordpress.org/mbrandys\">mbrandys</a>、<a href=\"https://profiles.wordpress.org/mdmcginn\">mdmcginn</a>、<a href=\"https://profiles.wordpress.org/mehulkaklotar\">mehulkaklotar</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/micahmills\">micahmills</a>、<a href=\"https://profiles.wordpress.org/micahwave\">micahwave</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/cainm\">Michael Cain</a>、<a href=\"https://profiles.wordpress.org/michielhab\">Michiel Habraken</a>、<a href=\"https://profiles.wordpress.org/mcguive7\">Mickey Kay</a>、<a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</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/thaicloud\">Mike Jordan</a>、<a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>、<a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>、<a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinic</a>、<a href=\"https://profiles.wordpress.org/mismith227\">mismith227</a>、<a href=\"https://profiles.wordpress.org/misterunknown\">misterunknown</a>、<a href=\"https://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>、<a href=\"https://profiles.wordpress.org/monika\">Monika</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/mt8biz\">moto hachi ( mt8.biz )</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/mulvane\">mulvane</a>、<a href=\"https://profiles.wordpress.org/neoscrib\">neoscrib</a>、<a href=\"https://profiles.wordpress.org/next-season\">NExT-Season</a>、<a href=\"https://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>、<a href=\"https://profiles.wordpress.org/nicholas_io\">nicholas_io</a>、<a href=\"https://profiles.wordpress.org/nickciske\">Nick Ciske</a>、<a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>、<a href=\"https://profiles.wordpress.org/nickduncan\">NickDuncan</a>、<a href=\"https://profiles.wordpress.org/rahe\">Nicolas Juen</a>、<a href=\"https://profiles.wordpress.org/nikeo\">nikeo</a>、<a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>、<a href=\"https://profiles.wordpress.org/niklasbr\">Niklas</a>、<a href=\"https://profiles.wordpress.org/nikolovtmw\">Nikola Nikolov</a>、<a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>、<a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>、<a href=\"https://profiles.wordpress.org/originalexe\">OriginalEXE</a>、<a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>、<a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>、<a href=\"https://profiles.wordpress.org/obrienlabs\">Pat O’Brien</a>、<a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>、<a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>、<a href=\"https://profiles.wordpress.org/figureone\">Paul Ryan</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/sirbrillig\">Payton Swick</a>、<a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>、<a href=\"https://profiles.wordpress.org/walbo\">Petter Walbo Johnsgard</a>、<a href=\"https://profiles.wordpress.org/petya\">Petya Raykovska</a>、<a href=\"https://profiles.wordpress.org/pfefferle\">pfefferle</a>、<a href=\"https://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>、<a href=\"https://profiles.wordpress.org/philiplakin\">PhilipLakin</a>、<a href=\"https://profiles.wordpress.org/corphi\">Philipp Cordes</a>、<a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</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/prasad-nevase\">Prasad Nevase</a>、<a href=\"https://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>、<a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>、<a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>、<a href=\"https://profiles.wordpress.org/rajnikmit\">rajnikmit</a>、<a href=\"https://profiles.wordpress.org/racase\">Rakesh Lawaju (Racase Lawaju)</a>、<a href=\"https://profiles.wordpress.org/ramay\">ramay</a>、<a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>、<a href=\"https://profiles.wordpress.org/raulillana\">Raul Illana</a>、<a href=\"https://profiles.wordpress.org/renoirb\">renoirb</a>、<a href=\"https://profiles.wordpress.org/rhubbardreverb\">rhubbardreverb</a>、<a href=\"https://profiles.wordpress.org/rhyswynne\">Rhys Wynne</a>、<a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>、<a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</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/rommelxcastro\">Rommel Castro</a>、<a href=\"https://profiles.wordpress.org/wpmuguru\">Ron Rennick</a>、<a href=\"https://profiles.wordpress.org/ronalfy\">Ronald Huereca</a>、<a href=\"https://profiles.wordpress.org/kingkool68\">Russell Heimlich</a>、<a href=\"https://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>、<a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>、<a href=\"https://profiles.wordpress.org/markel\">Ryan Markel</a>、<a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>、<a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>、<a href=\"https://profiles.wordpress.org/zeo\">Safirul Alredha</a>、<a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>、<a href=\"https://profiles.wordpress.org/sammybeats\">Sam Brodie</a>、<a href=\"https://profiles.wordpress.org/sam2kb\">sam2kb</a>、<a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>、<a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>、<a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>、<a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>、<a href=\"https://profiles.wordpress.org/rosso99\">Sara Rosso</a>、<a href=\"https://profiles.wordpress.org/sarciszewski\">sarciszewski</a>、<a href=\"https://profiles.wordpress.org/sgrant\">Scott Grant</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/greglone\">ScreenfeedFr</a>、<a href=\"https://profiles.wordpress.org/scribu\">scribu</a>、<a href=\"https://profiles.wordpress.org/sdavis2702\">Sean Davis</a>、<a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>、<a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>、<a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>、<a href=\"https://profiles.wordpress.org/serpent7776\">serpent7776</a>、<a href=\"https://profiles.wordpress.org/several27\">several27</a>、<a href=\"https://profiles.wordpress.org/shimakyohsuke\">shimakyohsuke</a>、<a href=\"https://profiles.wordpress.org/side777\">side777</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/sirzooro\">sirzooro</a>、<a href=\"https://profiles.wordpress.org/sjmur\">sjmur</a>、<a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>、<a href=\"https://profiles.wordpress.org/spacedmonkey\">Spacedmonkey</a>、<a href=\"https://profiles.wordpress.org/khromov\">Stanislav Khromov</a>、<a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>、<a href=\"https://profiles.wordpress.org/stebbiv\">stebbiv</a>、<a href=\"https://profiles.wordpress.org/miglosh\">Stefan Froehlich</a>、<a href=\"https://profiles.wordpress.org/sboisvert\">Stephane Boisvert</a>、<a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</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/stevehenty\">stevehenty</a>、<a href=\"https://profiles.wordpress.org/stevehoneynz\">SteveHoneyNZ</a>、<a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>、<a href=\"https://profiles.wordpress.org/charlestonsw\">Store Locator Plus</a>、<a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>、<a href=\"https://profiles.wordpress.org/brainstormforce\">Sujay</a>、<a href=\"https://profiles.wordpress.org/5um17\">Sumit Singh</a>、<a href=\"https://profiles.wordpress.org/summerblue\">summerblue</a>、<a href=\"https://profiles.wordpress.org/sunnyratilal\">Sunny Ratilal</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 Lister</a>、<a href=\"https://profiles.wordpress.org/tanner-m\">Tanner Moushey</a>、<a href=\"https://profiles.wordpress.org/tbcorr\">tbcorr</a>、<a href=\"https://profiles.wordpress.org/tychay\">Terry Chay</a>、<a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>、<a href=\"https://profiles.wordpress.org/themiked\">theMikeD</a>、<a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>、<a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>、<a href=\"https://profiles.wordpress.org/tott\">Thorsten Ott</a>、<a href=\"https://profiles.wordpress.org/tigertech\">tigertech</a>、<a href=\"https://profiles.wordpress.org/tillkruess\">Till Kruss</a>、<a href=\"https://profiles.wordpress.org/tevko\">Tim Evko</a>、<a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>、<a href=\"https://profiles.wordpress.org/tmeister\">tmeister</a>、<a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>、<a href=\"https://profiles.wordpress.org/willmot\">Tom Willmot</a>、<a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>、<a href=\"https://profiles.wordpress.org/tommarshall\">tommarshall</a>、<a href=\"https://profiles.wordpress.org/tomsommer\">tomsommer</a>、<a href=\"https://profiles.wordpress.org/skithund\">Toni Viemero</a>、<a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>、<a href=\"https://profiles.wordpress.org/liljimmi\">Tracy (LilJimmi) Levesque</a>、<a href=\"https://profiles.wordpress.org/rilwis\">Tran Ngoc Tuan Anh</a>、<a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>、<a href=\"https://profiles.wordpress.org/trenzterra\">trenzterra</a>、<a href=\"https://profiles.wordpress.org/tryon\">Tryon Eggleston</a>、<a href=\"https://profiles.wordpress.org/tszming\">tszming</a>、<a href=\"https://profiles.wordpress.org/junsuijin\">ty</a>、<a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>、<a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>、<a href=\"https://profiles.wordpress.org/sorich87\">Ulrich Sossou</a>、<a href=\"https://profiles.wordpress.org/umeshsingla\">Umesh Kumar</a>、<a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>、<a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>、<a href=\"https://profiles.wordpress.org/vilkatis\">vilkatis</a>、<a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>、<a href=\"https://profiles.wordpress.org/walterebert\">Walter Ebert</a>、<a href=\"https://profiles.wordpress.org/walterbarcelos\">walterbarcelos</a>、<a href=\"https://profiles.wordpress.org/webdevmattcrom\">webdevmattcrom</a>、<a href=\"https://profiles.wordpress.org/wen-solutions\">WEN Solutions</a>、<a href=\"https://profiles.wordpress.org/wenthemes\">WEN Themes</a>、<a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>、<a href=\"https://profiles.wordpress.org/wmertens\">wmertens</a>、<a href=\"https://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>、<a href=\"https://profiles.wordpress.org/theode\">WP Plugin Dev dot com</a>、<a href=\"https://profiles.wordpress.org/wpdev101\">wpdev101</a>、<a href=\"https://profiles.wordpress.org/alphawolf\">wpseek</a>、<a href=\"https://profiles.wordpress.org/wturrell\">wturrell</a>、<a href=\"https://profiles.wordpress.org/yamchhetri\">Yam Chhetri</a>、<a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>、<a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>、<a href=\"https://profiles.wordpress.org/zrothauser\">Zack Rothauser</a>和<a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>。</p>\n<p>特别感谢<a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a>与<a href=\"http://www.sararosso.com/newsletter/\">Sara Rosso</a>制作发布视频,及<a href=\"http://camikaos.com/\">Cami Kaos</a>的配音。</p>\n<p>最后,让我们感谢为发布视频制作了字幕的贡献者,这次的发布视频被翻译成了23种语言!</p>\n<p>如果您想帮忙,请查阅<a href=\"https://make.wordpress.org/\">Make WordPress</a>和我们的<a href=\"https://make.wordpress.org/core/\">核心开发博客</a>。感谢您选择WordPress,我们4.5见!</p>\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:50:\"https://cn.wordpress.org/2015/12/13/clifford/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:\"10\";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:45:\"\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:5:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.3“Billie”\";s:7:\"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/2015/08/21/billie/\";s: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/2015/08/21/billie/#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, 20 Aug 2015 19:04: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: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=995\";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.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:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:46:\"https://s.w.org/images/core/4.3/formatting.mp4\";s:6:\"length\";s:7:\"1574782\";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:46:\"https://s.w.org/images/core/4.3/formatting.ogv\";s:6:\"length\";s:7:\"1939540\";s:4:\"type\";s:9:\"video/ogg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:47:\"https://s.w.org/images/core/4.3/formatting.webm\";s:6:\"length\";s:6:\"686435\";s:4:\"type\";s:10:\"video/webm\";}}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:\"Jimmy Xu\";s: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:22076:\"<div style=\"width: 692px\">\nWordPress 4.3简体中文版现已<a href=\"https://cn.wordpress.org/releases/\">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Billie”,以纪念爵士钢琴手<a href=\"https://zh.wikipedia.org/zh-cn/%E6%AF%94%E8%8E%89%C2%B7%E8%8D%B7%E8%8E%89%E6%88%B4\">比莉·荷莉戴</a>。4.3中的新功能会让您更容易自定义网站及内容格式。</p>\n<div id=\"v-T54Iy7Tw-1\" class=\"video-player\"><video id=\"v-T54Iy7Tw-1-video\" width=\"612\" height=\"344\" poster=\"https://videos.files.wordpress.com/T54Iy7Tw/video-7601c95191_scruberthumbnail_1.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/T54Iy7Tw/video-7601c95191_dvd.mp4\" type=\"video/mp4; codecs="avc1.64001E, mp4a.40.2"\" /><source src=\"https://videos.files.wordpress.com/T54Iy7Tw/video-7601c95191_fmt1.ogv\" type=\"video/ogg; codecs="theora, vorbis"\" /><div><img alt=\"Introducing WordPress 4.3 "Billie"\" src=\"https://videos.files.wordpress.com/T54Iy7Tw/video-7601c95191_scruberthumbnail_1.jpg\" width=\"612\" height=\"344\" /></div><p>Introducing WordPress 4.3 "Billie"</p></video></div>\n<hr />\n<h2>定制器菜单</h2>\n<div><img src=\"https://s.w.org/images/core/4.3/menu-customizer.png\" alt=\"\" /></div>\n<p>建立您的菜单,更新,然后指定至适当位置,同时还能在定制器里即时预览。流线式定制器设计提供对手机友好且更方便的介面。随着每个版本发布,它将变得更快、更好用。</p>\n<hr />\n<h2>格式快捷键</h2>\n<p><div style=\"width: 612px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-995-4\" width=\"612\" height=\"344\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://s.w.org/images/core/4.3/formatting.mp4?_=4\" /><source type=\"video/webm\" src=\"https://s.w.org/images/core/4.3/formatting.webm?_=4\" /><source type=\"video/ogg\" src=\"https://s.w.org/images/core/4.3/formatting.ogv?_=4\" /><a href=\"https://s.w.org/images/core/4.3/formatting.mp4\">https://s.w.org/images/core/4.3/formatting.mp4</a></video></div><br />\n您的写作流程伴随着WordPress 4.3全新格式快捷键功能将变得更快。使用星号来建立清单、井号建立一个标题。别再打断您的工作;您的文字搭配<code>*</code>和<code>#</code>看起来更加美好。</p>\n<hr />\n<h2>站点图标</h2>\n<p><img src=\"https://s.w.org/images/core/4.3/site-icon-customizer.png\" alt=\"\" /><br />\n在浏览器标签、收藏夹和移动设备主画面以站点图标作为您的站点代表。在定制器里新增您独一无二的站点图标;当您切换主题时仍保持不变。使您的站点呈现出自己的品牌。</p>\n<hr />\n<h2>更好的密码</h2>\n<p><img src=\"https://s.w.org/images/core/4.3/better-passwords.png\" alt=\"\" /><br />\n借助WordPress改进的密码设定功能使网站更安全。不再使用电子邮件接收密码,而是取得一个密码重设链接。当您在网站新增用户或编辑用户资料时,WordPress将会自动产生一个安全密码。</p>\n<hr />\n<h2>其他改善</h2>\n<ul>\n<li><strong>更顺滑的管理体验</strong> – 经过改进的跨管理界面的列表视图使您的WordPress更方便并且更容易在任何装置上运作。</li>\n<li><strong>关闭页面的评论</strong> – 新建立的页面将关闭评论,将讨论局限在您的博客,只在它们应该出现的地方显示。</li>\n<li><strong>快速自定义您的站点</strong> – 无论您是否在前台,都可以点击工具栏的自定义链接迅速为您的网站做出更改。</li>\n</ul>\n<hr />\n<h2>开发团队</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/obenland\"><img id=\"grav-2370ea5912750f4cb0f3c51ae1cbca55-0\" class=\"grav-hashed\" src=\"https://www.gravatar.com/avatar/2370ea5912750f4cb0f3c51ae1cbca55?d=mm&s=180&r=G\" alt=\"Konstantin Obenland\" width=\"80\" height=\"80\" /></a><br />\n此次发布由<a href=\"http://konstantin.obenland.it/\">Konstantin Obenland</a>领头,并得到了以下个人的帮助。这次发布包含了246人的贡献。在您喜欢的音乐服务中听听比莉·荷莉戴,并看看下面这些个人资料吧:</p>\n<p><a href=\"https://profiles.wordpress.org/mercime\">@mercime</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/adamkheckler\">Adam Heckler</a>、<a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>、<a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bjorklund</a>、<a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</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/deconf\">Alin Marcu</a>、<a href=\"https://profiles.wordpress.org/andfinally\">andfinally</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/nacin\">Andrew Nacin</a>、<a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>、<a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>、<a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>、<a href=\"https://profiles.wordpress.org/antpb\">Anthony Burchell</a>、<a href=\"https://profiles.wordpress.org/anubisthejackle\">anubisthejackle</a>、<a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>、<a href=\"https://profiles.wordpress.org/arjunskumar\">Arjun S Kumar</a>、<a href=\"https://profiles.wordpress.org/avnarun\">avnarun</a>、<a href=\"https://profiles.wordpress.org/brad2dabone\">Bad Feather</a>、<a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>、<a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>、<a href=\"https://profiles.wordpress.org/binarykitten\">BinaryKitten</a>、<a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>、<a href=\"https://profiles.wordpress.org/bjornjohansen\">Bjorn Johansen</a>、<a href=\"https://profiles.wordpress.org/bolo1988\">bolo1988</a>、<a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>、<a href=\"https://profiles.wordpress.org/bradt\">Brad Touesnard</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/krogsgard\">Brian Krogsgard</a>、<a href=\"https://profiles.wordpress.org/brianlayman\">Brian Layman</a>、<a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>、<a href=\"https://profiles.wordpress.org/calevans\">CalEvans</a>、<a href=\"https://profiles.wordpress.org/chasewiseman\">Chase Wiseman</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/chriscct7\">chriscct7</a>、<a href=\"https://profiles.wordpress.org/posykrat\">Clement Biron</a>、<a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</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/mte90\">Daniele Mte90 Scasciafratte</a>、<a href=\"https://profiles.wordpress.org/daniluk4000\">daniluk4000</a>、<a href=\"https://profiles.wordpress.org/dmchale\">Dave McHale</a>、<a href=\"https://profiles.wordpress.org/daveal\">DaveAl</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/daxelrod\">daxelrod</a>、<a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>、<a href=\"https://profiles.wordpress.org/realloc\">Dennis Ploetner</a>、<a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>、<a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>、<a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipesh.kakadiya</a>、<a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>、<a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>、<a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>、<a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>、<a href=\"https://profiles.wordpress.org/eclev91\">eclev91</a>、<a href=\"https://profiles.wordpress.org/eligijus\">eligijus</a>、<a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>、<a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</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/fab1en\">Fabien Quatravaux</a>、<a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>、<a href=\"https://profiles.wordpress.org/francoeurdavid\">francoeurdavid</a>、<a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>、<a href=\"https://profiles.wordpress.org/gabrielperezs\">gabrielperezs</a>、<a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</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/georgestephanis\">George Stephanis</a>、<a href=\"https://profiles.wordpress.org/glennm\">glennm</a>、<a href=\"https://profiles.wordpress.org/gtuk\">gtuk</a>、<a href=\"https://profiles.wordpress.org/hailin\">hailin</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/henrikakselsen\">henrikakselsen</a>、<a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>、<a href=\"https://profiles.wordpress.org/hrishiv90\">Hrishikesh Vaipurkar</a>、<a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>、<a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</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/isaacchapman\">isaacchapman</a>、<a href=\"https://profiles.wordpress.org/izem\">izem</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/jadpm\">jadpm</a>、<a href=\"https://profiles.wordpress.org/jamesgol\">jamesgol</a>、<a href=\"https://profiles.wordpress.org/jancbeck\">jancbeck</a>、<a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</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/jmichaelward\">Jeremy Ward</a>、<a href=\"https://profiles.wordpress.org/jesin\">Jesin A</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/joehoyle\">Joe Hoyle</a>、<a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</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/picard102\">John Leschinski</a>、<a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>、<a href=\"https://profiles.wordpress.org/jpyper\">Jpyper</a>、<a href=\"https://profiles.wordpress.org/jrf\">jrf</a>、<a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>、<a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>、<a href=\"https://profiles.wordpress.org/ungestaltbar\">Kai</a>、<a href=\"https://profiles.wordpress.org/karinchristen\">karinchristen</a>、<a href=\"https://profiles.wordpress.org/karpstrucking\">karpstrucking</a>、<a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>、<a href=\"https://profiles.wordpress.org/kevkoeh\">Kevin Koehler</a>、<a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>、<a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>、<a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</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/leogopal\">Leo Gopal</a>、<a href=\"https://profiles.wordpress.org/loushou\">loushou</a>、<a href=\"https://profiles.wordpress.org/lumaraf\">Lumaraf</a>、<a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</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/markjaquith\">Mark Jaquith</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/martinsachse\">martinsachse</a>、<a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>、<a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>、<a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>、<a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>、<a href=\"https://profiles.wordpress.org/maxxsnake\">maxxsnake</a>、<a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>、<a href=\"https://profiles.wordpress.org/nikonratm\">Michael</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/michaelryanmcneill\">michaelryanmcneill</a>、<a href=\"https://profiles.wordpress.org/mcguive7\">Mickey Kay</a>、<a href=\"https://profiles.wordpress.org/mihai\">mihai</a>、<a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</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/dimadin\">Milan Dinic</a>、<a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>、<a href=\"https://profiles.wordpress.org/mrutz\">mrutz</a>、<a href=\"https://profiles.wordpress.org/nabil_kadimi\">nabil_kadimi</a>、<a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>、<a href=\"https://profiles.wordpress.org/nazmulhossainnihal\">Nazmul Hossain Nihal</a>、<a href=\"https://profiles.wordpress.org/nicholas_io\">nicholas_io</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/nbachiyski\">Nikolay Bachiyski</a>、<a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>、<a href=\"https://profiles.wordpress.org/onnimonni\">Onni Hakala</a>、<a href=\"https://profiles.wordpress.org/ozh\">Ozh</a>、<a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>、<a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</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/gungeekatx\">Pete Nelson</a>、<a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>、<a href=\"https://profiles.wordpress.org/peterrknight\">PeterRKnight</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/pragunbhutani\">pragunbhutani</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/rarylson\">rarylson</a>、<a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>、<a href=\"https://profiles.wordpress.org/rauchg\">rauchg</a>、<a href=\"https://profiles.wordpress.org/ravinderk\">Ravinder Kumar</a>、<a href=\"https://profiles.wordpress.org/rclations\">RC Lations</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/ritteshpatel\">Ritesh Patel</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/rommelxcastro\">Rommel Castro</a>、<a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>、<a href=\"https://profiles.wordpress.org/rhurling\">Rouven Hurling</a>、<a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>、<a href=\"https://profiles.wordpress.org/rmarks\">Ryan Marks</a>、<a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>、<a href=\"https://profiles.wordpress.org/ohryan\">Ryan Neudorf</a>、<a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>、<a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>、<a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>、<a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>、<a href=\"https://profiles.wordpress.org/santagada\">santagada</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/scribu\">scribu</a>、<a href=\"https://profiles.wordpress.org/scruffian\">scruffian</a>、<a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>、<a href=\"https://profiles.wordpress.org/sebastiantiede\">Sebastian</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/designsimply\">Sheri Bigelow</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/metodiew\">Stanko Metodiev</a>、<a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</a>、<a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>、<a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>、<a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>、<a href=\"https://profiles.wordpress.org/stuartshields\">stuartshields</a>、<a href=\"https://profiles.wordpress.org/sudar\">Sudar</a>、<a href=\"https://profiles.wordpress.org/sunnyratilal\">Sunny Ratilal</a>、<a href=\"https://profiles.wordpress.org/taka2\">taka2</a>、<a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>、<a href=\"https://profiles.wordpress.org/thorbrink\">Thor Brink</a>、<a href=\"https://profiles.wordpress.org/creativeinfusion\">Tim Smith</a>、<a href=\"https://profiles.wordpress.org/tlexcellent\">tlexcellent</a>、<a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>、<a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</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/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>、<a href=\"https://profiles.wordpress.org/toru\">Toru Miki</a>、<a href=\"https://profiles.wordpress.org/liljimmi\">Tracy (LilJimmi) Levesque</a>、<a href=\"https://profiles.wordpress.org/tryon\">Tryon Eggleston</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/vivekbhusal\">vivekbhusal</a>、<a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>、<a href=\"https://profiles.wordpress.org/willnorris\">Will Norris</a>、<a href=\"https://profiles.wordpress.org/willgladstone\">willgladstone</a>、<a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>、<a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>、<a href=\"https://profiles.wordpress.org/eltobiano\">WPMU DEV Jose</a>、<a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>、<a href=\"https://profiles.wordpress.org/ysalame\">Yuri Salame</a>、<a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>、<a href=\"https://profiles.wordpress.org/katzwebdesign\">Zack Katz</a>和<a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>。</p>\n<p>特别感谢<a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a>制作发布视频、<a href=\"http://hugobaeta.com/\">Hugo Baeta</a>的设计和<a href=\"http://jacklenox.com/\">Jack Lenox</a>的配音。</p>\n<p>最后,让我们感谢为发布视频制作了字幕的贡献者,这次的发布视频被翻译成了30种语言!</p>\n<p>如果您想帮忙,请查阅<a href=\"https://make.wordpress.org/\">Make WordPress</a>和我们的<a href=\"https://make.wordpress.org/core/\">核心开发博客</a>。感谢您选择WordPress,我们4.4见!\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:48:\"https://cn.wordpress.org/2015/08/21/billie/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:\"13\";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:25:\"WordPress 4.2“Powell”\";s:7:\"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/2015/04/24/powell/\";s: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/2015/04/24/powell/#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, 23 Apr 2015 19:32: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: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=977\";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.2简体中文版现已开放下载。\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jimmy Xu\";s: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:30183:\"<div style=\"width: 692px\">\nWordPress 4.2简体中文版现已<a href=\"https://cn.wordpress.org/releases/\">开放下载</a>,或在您的WordPress仪表盘中升级。我们将此版本命名为“Powell”,以纪念爵士钢琴手<a href=\"https://en.wikipedia.org/wiki/Bud_Powell\">巴德·鲍威尔</a>。4.2中的新功能会帮助您与全世界交流共享。</p>\n<div id=\"v-e9kH4FzP-1\" class=\"video-player\"><video id=\"v-e9kH4FzP-1-video\" width=\"612\" height=\"344\" poster=\"https://videos.files.wordpress.com/e9kH4FzP/wordpress-4-2_scruberthumbnail_2.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/e9kH4FzP/wordpress-4-2_dvd.mp4\" type=\"video/mp4; codecs="avc1.64001E, mp4a.40.2"\" /><source src=\"https://videos.files.wordpress.com/e9kH4FzP/wordpress-4-2_fmt1.ogv\" type=\"video/ogg; codecs="theora, vorbis"\" /><div><img alt=\"Introducing WordPress 4.2 "Powell"\" src=\"https://videos.files.wordpress.com/e9kH4FzP/wordpress-4-2_scruberthumbnail_2.jpg\" width=\"612\" height=\"344\" /></div><p>Introducing WordPress 4.2 "Powell"</p></video></div>\n<hr style=\"margin: 2em 0 3em\" />\n<h2 style=\"text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px\">更方便地共享内容</h2>\n<p><img class=\"alignnone size-full wp-image-3677\" src=\"https://wordpress.org/news/files/2015/04/4.2-press-this-2.jpg\" alt=\"按这里\" width=\"1000\" height=\"832\" /><br />\n收藏、编辑、发布,向您介绍最新的”按这里“工具。在工具菜单中,将”按这里“加入到您的浏览器书签或移动设备主屏幕,然后您就可以迅雷不及掩耳地共享您的内容。共享您喜欢的视频、图片和内容从来没有像现在这样简单快捷。</p>\n<hr style=\"margin: 2em 0 3em\" />\n<h2 style=\"text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px\">扩展的字符集支持</h2>\n<p><img class=\"alignnone size-full wp-image-3676\" src=\"https://wordpress.org/news/files/2015/04/4.2-characters.png\" alt=\"字符集支持:颜文字和特殊字符\" width=\"1000\" height=\"832\" /><br />\n无论您使用何种语言,在WordPress中写作都将变得更好。WordPress 4.2将原生支持许多新字符,包括中日韩文字、音乐和数学符号,以及象形文字。</p>\n<p>即使您没有在使用以上那些字符,您仍可获益——WordPress现已支持颜文字!发挥创意并用<img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f499.png\" alt=\"????\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />、<img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f438.png\" alt=\"????\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />、<img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f412.png\" alt=\"????\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />、<img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f355.png\" alt=\"????\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />与所有其他<a href=\"https://codex.wordpress.org/Emoji\">颜文字</a>来装点您的内容。</p>\n<hr style=\"margin: 2em 0 3em\" />\n<p><img class=\"alignright size-medium wp-image-3656\" src=\"https://wordpress.org/news/files/2015/04/4.2-theme-switcher-300x230.png\" alt=\"定制器中的主题切换器\" width=\"288\" height=\"221\" /></p>\n<h3 style=\"margin: 0 0 5px 0;font-size: 16px;font-weight: bold\">在定制器中切换主题</h3>\n<p>您可以在定制器中浏览和预览已安装的主题,并可让主题在您的站点亮相之前确保它能够搭配您的内容。</p>\n<div style=\"clear: both\"></div>\n<p><img class=\"alignright size-medium wp-image-3653\" src=\"https://wordpress.org/news/files/2015/04/4.2-embeds-300x230.png\" alt=\"Tumbr.com oEmbed样例\" width=\"288\" height=\"221\" /></p>\n<h3 style=\"margin: 0 0 5px 0;font-size: 16px;font-weight: bold\">更多的嵌入内容</h3>\n<p>把Tumblr.com和Kickstarter的链接粘贴进编辑器,那些内容就将魔法般地出现在您眼前。您的发布和编辑体验会随着我们的每次发布变得更密不可分。</p>\n<div style=\"clear: both\"></div>\n<p><img class=\"alignright size-medium wp-image-3654\" src=\"https://wordpress.org/news/files/2015/04/4.2-plugins-300x230.png\" alt=\"内联插件升级\" width=\"288\" height=\"221\" /></p>\n<h3 style=\"margin: 0 0 5px 0;font-size: 16px;font-weight: bold\">更流畅的插件升级</h3>\n<p>向无聊的加载屏幕说再见,并向简单顺滑的插件升级说你好。点击<em>现在升级</em>,您即可以看到魔法发生。</p>\n<div style=\"clear: both\"></div>\n<hr style=\"margin: 2em 0 3em\" />\n<h2 style=\"text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px\">引擎盖下</h2>\n<h5>utf8mb4支持</h5>\n<p>数据库字符编码已从utf8变为utf8mb4,加入了对所有4字节字符的支持。</p>\n<h5>JavaScript无障碍</h5>\n<p>您现在可以在JavaScript中通过<code>wp.a11y.speak()</code>向屏幕阅读器发送音频提醒。传入字符串,更新就会被发送到专用的ARIA即时通知区域。</p>\n<h5>分离共享的条目信息</h5>\n<p>不同分类法间共享的条目信息将在其中一条获得更新时分离。您可以在<a href=\"https://developer.wordpress.org/plugins/taxonomy/working-with-split-terms-in-wp-4-2/\">插件开发者手册</a>中获取更多信息。</p>\n<h5>复杂查询排序</h5>\n<p><code>WP_Query</code>、<code>WP_Comment_Query</code>和<code>WP_User_Query</code>现在支持使用具名的元查询条款进行复杂排序。</p>\n<hr style=\"margin: 2em 0 3em\" />\n<h2 style=\"text-align: center;margin: 15px 0 20px;font-family: sans-serif;font-size: 26px\">开发团队</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/drewapicture\"><img id=\"grav-95c934fa2c3362794bf62ff8c59ada08-0\" class=\"grav-hashed\" src=\"https://www.gravatar.com/avatar/95c934fa2c3362794bf62ff8c59ada08?d=mm&s=180&r=G\" alt=\"Drew Jaynes\" width=\"90\" height=\"90\" /></a></p>\n<p>此次发布由<a href=\"http://werdswords.com/\">Drew Jaynes</a>领头,并得到了以下个人的帮助。这次发布包含了283人的贡献,创下新高。在您喜欢的音乐服务中听听巴德·鲍威尔,并看看下面这些个人资料吧:</p>\n<p><a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>、<a href=\"https://profiles.wordpress.org/a5hleyrich\">A5hleyRich</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/abhishekfdd\">abhishekfdd</a>、<a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>、<a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>、<a href=\"https://profiles.wordpress.org/alexkingorg\">Alex King</a>、<a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>、<a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>、<a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>、<a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>、<a href=\"https://profiles.wordpress.org/awbauer\">Andrew Bauer</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/ankitgadertcampcom\">Ankit Gade</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/aramzs\">Aram Zucker-Scharff</a>、<a href=\"https://profiles.wordpress.org/arminbraun\">ArminBraun</a>、<a href=\"https://profiles.wordpress.org/ashfame\">Ashfame</a>、<a href=\"https://profiles.wordpress.org/filosofo\">Austin Matzko</a>、<a href=\"https://profiles.wordpress.org/avryl\">avryl</a>、<a href=\"https://profiles.wordpress.org/barrykooij\">Barry Kooij</a>、<a href=\"https://profiles.wordpress.org/beaulebens\">Beau Lebens</a>、<a href=\"https://profiles.wordpress.org/bendoh\">Ben Doherty (Oomph、Inc)</a>、<a href=\"https://profiles.wordpress.org/bananastalktome\">Billy Schneider</a>、<a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</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/bswatson\">Brian Watson</a>、<a href=\"https://profiles.wordpress.org/calevans\">CalEvans</a>、<a href=\"https://profiles.wordpress.org/carolinegeven\">carolinegeven</a>、<a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>、<a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>、<a href=\"https://profiles.wordpress.org/cdog\">Catalin Dogaru</a>、<a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>、<a href=\"https://profiles.wordpress.org/chipx86\">chipx86</a>、<a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>、<a href=\"https://profiles.wordpress.org/cbaldelomar\">Chris Baldelomar</a>、<a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</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/clifgriffin\">Clifton Griffin</a>、<a href=\"https://profiles.wordpress.org/codix\">Code Master</a>、<a href=\"https://profiles.wordpress.org/corphi\">Corphi</a>、<a href=\"https://profiles.wordpress.org/couturefreak\">Courtney Ivey</a>、<a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>、<a href=\"https://profiles.wordpress.org/cweiske\">cweiske</a>、<a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>、<a href=\"https://profiles.wordpress.org/timersys\">Damian</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/dkotter\">Darin Kotter</a>、<a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>、<a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</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/davidanderson\">David Anderson</a>、<a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>、<a href=\"https://profiles.wordpress.org/folletto\">Davide ‘Folletto’ Casali</a>、<a href=\"https://profiles.wordpress.org/davideugenepratt\">davideugenepratt</a>、<a href=\"https://profiles.wordpress.org/davidhamiltron\">davidhamiltron</a>、<a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>、<a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>、<a href=\"https://profiles.wordpress.org/dsmart\">Derek Smart</a>、<a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>、<a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>、<a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipesh.kakadiya</a>、<a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>、<a href=\"https://profiles.wordpress.org/doublesharp\">doublesharp</a>、<a href=\"https://profiles.wordpress.org/dzerycz\">DzeryCZ</a>、<a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>、<a href=\"https://profiles.wordpress.org/emazovetskiy\">e.mazovetskiy</a>、<a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>、<a href=\"https://profiles.wordpress.org/cais\">Edward Caissie</a>、<a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>、<a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>、<a href=\"https://profiles.wordpress.org/elliottcarlson\">elliottcarlson</a>、<a href=\"https://profiles.wordpress.org/enej\">enej</a>、<a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>、<a href=\"https://profiles.wordpress.org/ericlewis\">Eric Lewis</a>、<a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>、<a href=\"https://profiles.wordpress.org/evansolomon\">Evan Solomon</a>、<a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>、<a href=\"https://profiles.wordpress.org/fhwebcs\">fhwebcs</a>、<a href=\"https://profiles.wordpress.org/floriansimeth\">Florian Simeth</a>、<a href=\"https://profiles.wordpress.org/bueltge\">Frank</a>、<a href=\"https://profiles.wordpress.org/frankpw\">Frank P. Walentynowicz</a>、<a href=\"https://profiles.wordpress.org/f-j-kaiser\">Franz Josef Kaiser</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/geertdd\">Geert De Deckere</a>、<a href=\"https://profiles.wordpress.org/genkisan\">genkisan</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/webord\">Gustavo Bordoni</a>、<a href=\"https://profiles.wordpress.org/hakre\">hakre</a>、<a href=\"https://profiles.wordpress.org/harishchaudhari\">Harish Chaudhari</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/herbmillerjr\">herbmillerjr</a>、<a href=\"https://profiles.wordpress.org/hew\">Hew</a>、<a href=\"https://profiles.wordpress.org/horike\">horike</a>、<a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</a>、<a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>、<a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>、<a href=\"https://profiles.wordpress.org/ianmjones\">ianmjones</a>、<a href=\"https://profiles.wordpress.org/idealien\">idealien</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/jdgrimes\">J.D. Grimes</a>、<a href=\"https://profiles.wordpress.org/jacklenox\">Jack Lenox</a>、<a href=\"https://profiles.wordpress.org/jamescollins\">James Collins</a>、<a href=\"https://profiles.wordpress.org/janhenckens\">janhenckens</a>、<a href=\"https://profiles.wordpress.org/cheffheid\">Jeff de Wit</a>、<a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</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/jipmoors\">jipmoors</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/joemcgill\">Joe McGill</a>、<a href=\"https://profiles.wordpress.org/yo-l1982\">Joel Bernerman</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/johneckman\">John Eckman</a>、<a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>、<a href=\"https://profiles.wordpress.org/jlevandowski\">John Levandowski</a>、<a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>、<a href=\"https://profiles.wordpress.org/joostdekeijzer\">joost de keijzer</a>、<a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>、<a href=\"https://profiles.wordpress.org/jcastaneda\">Jose Castaneda</a>、<a href=\"https://profiles.wordpress.org/joshlevinson\">Josh Levinson</a>、<a href=\"https://profiles.wordpress.org/jphase\">jphase</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/jtsternberg\">Justin Sternberg</a>、<a href=\"https://profiles.wordpress.org/justincwatt\">Justin Watt</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/ryelle\">Kelly Dwan</a>、<a href=\"https://profiles.wordpress.org/kevdotbadger\">Kevin Ruscoe</a>、<a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>、<a href=\"https://profiles.wordpress.org/ixkaito\">Kite</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/lancewillett\">Lance Willett</a>、<a href=\"https://profiles.wordpress.org/mindrun\">Leonard</a>、<a href=\"https://profiles.wordpress.org/leopeo\">Leonardo Giacone</a>、<a href=\"https://profiles.wordpress.org/lgladdy\">Liam Gladdy</a>、<a href=\"https://profiles.wordpress.org/magicroundabout\">magicroundabout</a>、<a href=\"https://profiles.wordpress.org/maimairel\">maimairel</a>、<a href=\"https://profiles.wordpress.org/mako09\">Mako</a>、<a href=\"https://profiles.wordpress.org/funkatronic\">Manny Fleurmond</a>、<a href=\"https://profiles.wordpress.org/marcelomazza\">marcelomazza</a>、<a href=\"https://profiles.wordpress.org/marcochiesi\">Marco Chiesi</a>、<a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>、<a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</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/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/mzak\">Matt</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/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/maxcutler\">Max Cutler</a>、<a href=\"https://profiles.wordpress.org/mehulkaklotar\">mehulkaklotar</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/mgibbs189\">mgibbs189</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/michalzuber\">michalzuber</a>、<a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>、<a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>、<a href=\"https://profiles.wordpress.org/thaicloud\">Mike Jordan</a>、<a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>、<a href=\"https://profiles.wordpress.org/mikengarrett\">MikeNGarrett</a>、<a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinic</a>、<a href=\"https://profiles.wordpress.org/mmn-o\">mmn-o</a>、<a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>、<a href=\"https://profiles.wordpress.org/momdad\">MomDad</a>、<a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>、<a href=\"https://profiles.wordpress.org/morpheu5\">Morpheu5</a>、<a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>、<a href=\"https://profiles.wordpress.org/nathan_dawson\">nathan_dawson</a>、<a href=\"https://profiles.wordpress.org/neil_pie\">Neil Pie</a>、<a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>、<a href=\"https://profiles.wordpress.org/nicnicnicdevos\">nicnicnicdevos</a>、<a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>、<a href=\"https://profiles.wordpress.org/ninnypants\">ninnypants</a>、<a href=\"https://profiles.wordpress.org/nitkr\">nitkr</a>、<a href=\"https://profiles.wordpress.org/nunomorgadinho\">Nuno Morgadinho</a>、<a href=\"https://profiles.wordpress.org/originalexe\">OriginalEXE</a>、<a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>、<a href=\"https://profiles.wordpress.org/pathawks\">Pat Hawks</a>、<a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</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/sirbrillig\">Payton Swick</a>、<a href=\"https://profiles.wordpress.org/petemall\">Pete Mall</a>、<a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>、<a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>、<a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>、<a href=\"https://profiles.wordpress.org/podpirate\">podpirate</a>、<a href=\"https://profiles.wordpress.org/postpostmodern\">postpostmodern</a>、<a href=\"https://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>、<a href=\"https://profiles.wordpress.org/prasoon2211\">prasoon2211</a>、<a href=\"https://profiles.wordpress.org/cyman\">Primoz Cigler</a>、<a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>、<a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>、<a href=\"https://profiles.wordpress.org/rahulbhangale\">rahulbhangale</a>、<a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>、<a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>、<a href=\"https://profiles.wordpress.org/ravindra-pal-singh\">Ravindra Pal Singh</a>、<a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>、<a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</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/rmarks\">Ryan Marks</a>、<a href=\"https://profiles.wordpress.org/sagarjadhav\">sagarjadhav</a>、<a href=\"https://profiles.wordpress.org/samo9789\">samo9789</a>、<a href=\"https://profiles.wordpress.org/samuelsidler\">samuelsidler</a>、<a href=\"https://profiles.wordpress.org/sgrant\">Scott Grant</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/scottgonzalez\">scott.gonzalez</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/sergejmueller\">Sergej Muller</a>、<a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>、<a href=\"https://profiles.wordpress.org/sevenspark\">sevenspark</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/sippis\">sippis</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/stephdau\">Stephane Daury</a>、<a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>、<a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>、<a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>、<a href=\"https://profiles.wordpress.org/stevehickeydesign\">stevehickeydesign</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/hissy\">Takuro Hishikawa</a>、<a href=\"https://profiles.wordpress.org/themiked\">theMikeD</a>、<a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>、<a href=\"https://profiles.wordpress.org/ipm-frommen\">Thorsten Frommen</a>、<a href=\"https://profiles.wordpress.org/tillkruess\">Till</a>、<a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>、<a href=\"https://profiles.wordpress.org/tiqbiz\">tiqbiz</a>、<a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>、<a href=\"https://profiles.wordpress.org/tmeister\">tmeister</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/tomdxw\">tomdxw</a>、<a href=\"https://profiles.wordpress.org/travisnorthcutt\">Travis Northcutt</a>、<a href=\"https://profiles.wordpress.org/trishasalas\">trishasalas</a>、<a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>、<a href=\"https://profiles.wordpress.org/uamv\">UaMV</a>、<a href=\"https://profiles.wordpress.org/desaiuditd\">Udit Desai</a>、<a href=\"https://profiles.wordpress.org/sorich87\">Ulrich Sossou</a>、<a href=\"https://profiles.wordpress.org/veritaserum\">Veritaserum</a>、<a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>、<a href=\"https://profiles.wordpress.org/volodymyrc\">VolodymyrC</a>、<a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>、<a href=\"https://profiles.wordpress.org/welcher\">welcher</a>、<a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>、<a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>和<a href=\"https://profiles.wordpress.org/wordpressorru\">WordPressor</a>。</p>\n<p>特别感谢<a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a>制作发布视频及<a href=\"http://camikaos.com/\">Cami Kaos</a>为视频配音。</p>\n<p>最后,让我们感谢为发布视频制作了字幕的贡献者,这次的发布视频被翻译成了30种语言!</p>\n<p><a href=\"https://profiles.wordpress.org/adrianpop\">Adrian Pop</a>、<a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>、<a href=\"https://profiles.wordpress.org/bagerathan\">Bagerathan Sivarajah</a>、<a href=\"https://profiles.wordpress.org/besnik\">Besnik</a>、<a href=\"https://profiles.wordpress.org/bjornjohansen\">Bjørn Johansen</a>、Chantal Coolsma、<a href=\"https://profiles.wordpress.org/cubells\">cubells</a>、Daisuke Takahashi、<a href=\"https://profiles.wordpress.org/dianakc\">Diana K. Cury</a>、<a href=\"https://profiles.wordpress.org/djzone\">DjZoNe</a>、<a href=\"https://profiles.wordpress.org/dyrer\">dyrer</a>、<a href=\"https://profiles.wordpress.org/semblance\">Elzette Roelofse</a>、<a href=\"https://profiles.wordpress.org/fxbtacoverdoenard\">fxbtacoverdoenard</a>、<a href=\"https://profiles.wordpress.org/gabriel-reguly\">Gabriel Reguly</a>、<a href=\"https://profiles.wordpress.org/miss_jwo\">Jenny Wong</a>、<a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>、<a href=\"https://profiles.wordpress.org/hgmb\">Håvard Grimelid</a>、<a href=\"https://profiles.wordpress.org/intoxstudio\">Joachim Jensen</a>、<a href=\"https://profiles.wordpress.org/jimmyxu\">Jimmy Xu</a>、<a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>、<a href=\"https://profiles.wordpress.org/pokeraitis\">Justina</a>、<a href=\"https://profiles.wordpress.org/kosvrouvas\">Kostas Vrouvas</a>、<a href=\"https://profiles.wordpress.org/eclare\">Krzysztof Trynkiewicz</a>、<a href=\"https://profiles.wordpress.org/goblindegook\">Luís Rodrigues</a>、<a href=\"https://profiles.wordpress.org/luisrull\">Luis Rull</a>、<a href=\"https://profiles.wordpress.org/culturemark\">Mark Thomas Gazel </a>、<a href=\"https://profiles.wordpress.org/clorith\">Marius Jensen</a>、<a href=\"https://profiles.wordpress.org/matthee\">matthee</a>、<a href=\"https://profiles.wordpress.org/damst\">Mattias Tengblad</a>、Matúš Záhradník、Mayuko Moriyama、<a href=\"https://profiles.wordpress.org/michalvittek\">Michal Vittek</a>、<a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>、<a href=\"https://profiles.wordpress.org/mrshemek\">MrShemek</a>、<a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>、<a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>、<a href=\"https://profiles.wordpress.org/peterhoob\">Peter Holme Obrestad</a>、<a href=\"https://profiles.wordpress.org/petya\">Petya Raykovska</a>、Przemysław Mirota、<a href=\"https://profiles.wordpress.org/qraczek\">qraczek</a>、<a href=\"https://profiles.wordpress.org/bi0xid\">Rafa Poveda</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/gwgan\">Rhoslyn Prys</a>、<a href=\"https://profiles.wordpress.org/robee\">Robert Axelsen</a>、<a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>、<a href=\"https://profiles.wordpress.org/siobhyb\">Siobhan Bamber</a>、<a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>、<a href=\"https://profiles.wordpress.org/tohave\">ک To Have داشتن</a>、<a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>、<a href=\"https://profiles.wordpress.org/egalego\">Victor J. Quesada</a>、<a href=\"https://profiles.wordpress.org/wolly\">Wolly</a>、<a href=\"https://profiles.wordpress.org/xavivars\">Xavi Ivars</a>和<a href=\"https://profiles.wordpress.org/xibe\">Xavier Borderie</a>。</p>\n<p>如果您想帮忙,请查阅<a href=\"https://make.wordpress.org/\">Make WordPress</a>和我们的<a href=\"https://make.wordpress.org/core/\">核心开发博客</a>。感谢您选择WordPress,我们4.3见!\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:48:\"https://cn.wordpress.org/2015/04/24/powell/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:\"27\";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 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:8:\"Jimmy Xu\";s: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=\"\\"%s\\"\">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><title></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 “Rarst” 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:2:\"29\";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: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:8:\"Jimmy Xu\";s: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&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:\"21\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:30:\"https://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:9:\"\n 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:4:\"\n 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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 02 Apr 2018 14:21:36 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 29 Mar 2018 03:03:42 GMT\";s:4:\"link\";s:61:\"<https://cn.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911040210\";}','no'),(129,'_transient_timeout_feed_mod_7d1d7866a17d17cf5f79e1f075b87a31','1522722099','no'),(130,'_transient_feed_mod_7d1d7866a17d17cf5f79e1f075b87a31','1522678899','no'),(131,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1522722103','no'),(132,'_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:44:\"Dev Blog: The Month in WordPress: March 2018\";s:7:\"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:\"https://wordpress.org/news/?p=5632\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2018/04/the-month-in-wordpress-march-2018/\";s: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:4323:\"<p>With a significant new milestone and some great improvements to WordPress as a platform, this month has been an important one for the project. Read on to find out more about what happened during the month of March.\n\n</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress Now Powers 30% of the Internet</h2>\n\n<p>Over the last 15 years, the popularity and usage of WordPress has been steadily growing. That growth hit a significant milestone this month when <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">W3Techs reported that WordPress now powers over 30% of sites on the web.</a></p>\n\n<p>The percentage is determined based on W3Techs’ review of the top 10 million sites on the web, and it’s a strong indicator of the popularity and flexibility of WordPress as a platform.</p>\n\n<p>If you would like to have hand in helping to grow WordPress even further, <a href=\"https://make.wordpress.org/\">you can get involved today</a>.</p>\n\n<h2>WordPress Jargon Glossary Goes Live</h2>\n\n<p>The WordPress Marketing Team has been hard at work lately putting together <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">a comprehensive glossary of WordPress jargon</a> to help newcomers to the project become more easily acquainted with things.</p>\n\n<p>The glossary <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">is available here</a> along with a downloadable PDF to make it simpler to reference offline.</p>\n\n<p>Publishing this resource is part of an overall effort to make WordPress more easily accessible for people who are not so familiar with the project. If you would like to assist the Marketing Team with this, you can follow <a href=\"https://make.wordpress.org/marketing/\">the team blog</a> and join the #marketing channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n<h2>Focusing on Privacy in WordPress</h2>\n\n<p>Online privacy has been in the news this month for all the wrong reasons. It has reinforced the commitment of the GDPR Compliance Team to continue working on enhancements to WordPress core that allow site owners to improve privacy standards.</p>\n\n<p>The team's work, and the wider privacy project, spans four areas: Adding tools which will allow site administrators to collect the information they need about their sites, examining the plugin guidelines with privacy in mind, enhancing privacy standards in WordPress core, and creating documentation focused on best practices in online privacy.</p>\n\n<p>To get involved with the project, you can <a href=\"https://make.wordpress.org/core/2018/03/28/roadmap-tools-for-gdpr-compliance/\">view the roadmap</a>, <a href=\"https://make.wordpress.org/core/tag/gdpr-compliance/\">follow the updates</a>, <a href=\"https://core.trac.wordpress.org/query?status=!closed&keywords=~gdpr\">submit patches</a>, and join the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat\">Making WordPress Slack group</a>. Office hours are 15:00 UTC on Wednesdays.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>The WordPress Foundation has published <a href=\"https://wordpressfoundation.org/2017-annual-report/\">their annual report for 2017</a> showing just how much the community has grown over the last year.</li>\n <li>The dates for WordCamp US <a href=\"https://2018.us.wordcamp.org/2018/03/13/announcing-wordcamp-us-2018/\">have been announced</a> — this flagship WordCamp event will be held on 7-9 December this year in Nashville, Tennessee.</li>\n <li>WordPress 4.9.5 is due for release on April 3 — <a href=\"https://make.wordpress.org/core/2018/03/21/wordpress-4-9-5-beta/\">find out more here</a>.</li>\n <li>Version 2.5 of Gutenberg, the new editor for WordPress core, <a href=\"https://make.wordpress.org/core/2018/03/29/whats-new-in-gutenberg-29th-march/\">was released this month</a> with a host of great improvements.</li>\n <li>WordSesh, a virtual WordPress conference, <a href=\"http://wordsesh.com/\">is returning in July this year</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em><br /></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, 02 Apr 2018 08:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";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:77:\"WPTavern: WPWeekly Episode 310 – Community Management, PHP, and Hello Dolly\";s:7:\"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:58:\"https://wptavern.com?p=79249&preview=true&preview_id=79249\";s:7:\"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:\"https://wptavern.com/wpweekly-episode-310-community-management-php-and-hello-dolly\";s: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:2325:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss the news of the week including, the removal of offensive lyrics in Hello Dolly, a request for plugin developers to stop supporting legacy PHP versions, and changes coming in WordPress 4.9.5.</p>\n<p>We also talk about community management, the difference between comments and forums, and finally, John shares his concerns on how the Gutenberg call-out prompt is being built into core.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/a-plea-for-plugin-developers-to-stop-supporting-legacy-php-versions\">A Plea For Plugin Developers to Stop Supporting Legacy PHP Versions</a><br />\n<a href=\"https://wptavern.com/without-context-some-lyrics-inside-the-hello-dolly-plugin-are-degrading-to-women\">Without Context, Some Lyrics Inside the Hello Dolly Plugin Are Degrading to Women</a><br />\n<a href=\"https://wptavern.com/why-gutenberg-and-why-now\">Why Gutenberg and Why Now?</a><br />\n<a href=\"https://wptavern.com/noteworthy-changes-coming-in-wordpress-4-9-5\">Noteworthy Changes Coming in WordPress 4.9.5</a><br />\n<a href=\"https://wptavern.com/in-wordpress-4-9-5-users-will-be-two-clicks-away-from-installing-and-activating-gutenberg-from-the-dashboard\">In WordPress 4.9.5, Users Will Be Two Clicks Away From Installing and Activating Gutenberg From the Dashboard</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wptavern.com/how-to-disable-push-notification-requests-in-firefox\">How to Disable Push Notification Requests in Firefox</a></p>\n<p><a href=\"https://addons.mozilla.org/en-US/firefox/addon/facebook-container/\">Facebook Container Add-on for Firefox</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 4th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #310:</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:\"Thu, 29 Mar 2018 21:07:53 +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: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:42:\"WPTavern: My Gutenberg Experience Thus Far\";s:7:\"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:29:\"https://wptavern.com/?p=78991\";s:7:\"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://wptavern.com/my-gutenberg-experience-thus-far\";s: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:5397:\"<p>Ive used Gutenberg for several months and during that time, there have been moments where I love it and situations where I've had to disable the plugin because of frustrating bugs. </p>\n\n<p>One of the most frustrating aspects of using Gutenberg is the lack of support from the plugins I depend on.</p>\n\n<h2>Publish Post Preview</h2>\n\n<p>I use the <a href=\"https://wordpress.org/plugins/public-post-preview/\">Publish Post Preview</a> plugin to generate a preview link for posts so that people can see what it looks like before it's published.</p>\n\n<img />\n Publish Preview Checkbox in the Current Editor\n\n\n<p>In the current editor, the checkbox to generate a link is in the Publish meta box. In Gutenberg, that option doesn't exist. According to a <a href=\"https://wordpress.org/support/topic/compatibility-with-gutenberg/\">recent support forum post</a>, the author does not plan on making it Gutenberg compatible until there is a finalized API to extend the sidebar.</p>\n\n<h2>Telegram for WordPress</h2>\n\n<p>We use the <a href=\"https://wordpress.org/plugins/telegram-for-wp/\">Telegram for WordPress</a> plugin to automatically send published posts to our Telegram channel. The plugin adds a meta box that has options to send the post, configure the message structure, send a file, and display the featured image.</p>\n\n<p>In Gutenberg, the meta box is open by default which provides access to those options. However, when I edit a published post, there are times when the meta box is closed and clicking the arrow to expand it doesn't work. <em>Since the Send this post to channel</em> option is on by default, saving changes to the post will resend the post to Telegram subscribers. Something I don't want to happen for simple edits. <br /></p>\n\n<h2>Edit Flow</h2>\n\n<p>We use <a href=\"https://wordpress.org/plugins/edit-flow/\">Edit Flow</a> to collaborate on posts and often use the Editorial Comments feature to provide feedback. In Gutenberg, the meta boxes for Editorial Comments and Notifications do not open when clicking the arrow. Therefor, we can't use those features. <br /></p>\n\n<img />\n <br /><br />Edit Flow Meta Boxes are Broken\n\n\n<h2>After the Deadline</h2>\n\n<p>I'm a fan of <a href=\"https://jetpack.com/support/spelling-and-grammar/\">After the Deadline</a> which is a proofreading module in Jetpack. It checks posts for spelling, grammar, and misused words. When activated, a button is added to the visual editor to perform the checks. This button is not available in Gutenberg, so those features are not available as well.</p>\n\n<h2>Adding Images to Paragraphs is a Pain</h2>\n\n<p>Adding images to paragraphs in Gutenberg is more cumbersome than it needs to be. In the current editor, all I have to do is place the cursor where I want to insert an image, add media, choose image size, align it, and I'm done.</p>\n\n<p>In Gutenberg, you need to create an image block below the paragraph block, move the image block to the paragraph block, align it, and use handlebars on the corner of the image to resize it. </p>\n\n<p>I realize that there are a few workflows that I'm going to have to change because of how Gutenberg works, but this workflow doesn't make any sense to me, especially when I can't insert images without creating a new block. Thankfully, the Gutenberg team is on top of it and is <a href=\"https://github.com/WordPress/gutenberg/pull/5794\">working on a solution</a> to add images within a paragraph block.</p>\n\n<h2>Random Blank Paragraph Blocks</h2>\n\n<p>I recently copied a large amount of text from a Google Doc and pasted it into Gutenberg and was surprised by how well it worked. Blocks were created in the right spots and I didn't have to edit it much.</p>\n\n<p>I opened the post in the classic editor so that I could use the proofreading feature and it mangled the post. I opened the post in Gutenberg again and noticed a bunch of empty paragraph blocks created in-between paragraph blocks.</p>\n\n<p>This resulted in having to spend some time deleting the empty paragraph blocks and questioning whether I should avoid transferring posts between editors in the future.</p>\n\n<h2>Tags Sometimes Appear Blank in the Meta Box</h2>\n\n<p>When adding tags to posts, sometimes the tags appear blank although they show up on the front-end. Also, deleting tags sometimes doesn't work. I click on the X and nothing happens in the back-end, but the tag will be removed from the front-end. <br /></p>\n\n<img />\n Blank Tags in Gutenberg\n\n\n<h2>Gutenberg Has a Lot of Rough Edges</h2>\n\n<p>If this version of Gutenberg were merged into WordPress today, it would be a disaster. It's clear that the project has a long way to go before being considered for merge into core. Most of the issues I've outlined in this post are known and are being addressed. <br /></p>\n\n<p>Gutenberg is supposed to make everything we do in the current editor easier and more efficient. If it doesn't, then I have to ask, what's the point?</p>\n\n<p>What concerns me the most about Gutenberg is plugin support. Some of the plugins I mentioned above are active on 10K sites or less but are important to the way I craft and publish content in WordPress. <br /></p>\n\n<p> Without them, using Gutenberg is not a great experience and instead, makes me want to use the current editor where things simply work. <br /></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, 29 Mar 2018 20:28:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:3;a:6:{s:4:\"data\";s:11:\"\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:44:\"HeroPress: Giving Back In Your Own 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:29:\"https://heropress.com/?p=2490\";s:7:\"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:133:\"https://heropress.com/giving-back-in-your-own-community/#utm_source=rss&utm_medium=rss&utm_campaign=giving-back-in-your-own-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:3298:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2015/11/GoodtimeToBe-HeroPress-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull quote: It is a good time to be part of the global WordPress community: the costs are low, the developer community is strong, and job availability is at an all time high.\" /><p>I was delighted to find several years ago that there’s a thriving WordPress community in Nepal. Via Slack I got to meet Sakin Shrestha, and learned all about what their group is doing in Nepal to create jobs and keep the Nepali from having to leave the country to find work.</p>\n<p>I recently found out that Sakin is finding a new way to give back to his community: <a href=\"https://sakinshrestha.com/events/announcing-my-new-venture-aksharaa-kindergarten/\">opening a kindergarten</a>. In order for any country to grow strong it has to have good education for its children, and Sakin is working to make that happen.</p>\n<p>Read about how the Nepali WordPress community is working to build their own country.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/doing-our-part-for-the-community/\">Doing Our Part for the Community</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Giving Back In Your Own Community\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Giving%20Back%20In%20Your%20Own%20Community&via=heropress&url=https%3A%2F%2Fheropress.com%2Fgiving-back-in-your-own-community%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Giving Back In Your Own Community\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fgiving-back-in-your-own-community%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fgiving-back-in-your-own-community%2F&title=Giving+Back+In+Your+Own+Community\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Giving Back In Your Own Community\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/giving-back-in-your-own-community/&media=https://heropress.com/wp-content/uploads/2015/11/GoodtimeToBe-HeroPress-150x150.jpg&description=Giving Back In Your Own Community\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Giving Back In Your Own Community\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/giving-back-in-your-own-community/\" title=\"Giving Back In Your Own Community\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/giving-back-in-your-own-community/\">Giving Back In Your Own Community</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 28 Mar 2018 14:21: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:\"\";}}}}}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:119:\"WPTavern: In WordPress 4.9.5, Users Will Be Two Clicks Away From Installing and Activating Gutenberg From the Dashboard\";s:7:\"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:29:\"https://wptavern.com/?p=78827\";s:7:\"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:129:\"https://wptavern.com/in-wordpress-4-9-5-users-will-be-two-clicks-away-from-installing-and-activating-gutenberg-from-the-dashboard\";s: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:3920:\"<p>At the end of last month, Matt Cromwell, Head of Support and Community Outreach for <a href=\"https://givewp.com/\">GiveWP</a> and an administrator for the <a href=\"https://www.facebook.com/groups/advancedwp/\">Advanced WordPress Facebook group</a>, hosted a <a href=\"https://wptavern.com/matt-cromwell-hosts-matt-mullenweg-in-qa-gutenberg-interview\">question and answer session</a> about Gutenberg with Matt Mullenweg.</p>\n\n<p>Mullenweg was asked a few times if he could provide a concrete date on when Gutenberg and WordPress 5.0 would be ready. While a date was not given, Mullenweg said, \"For those who want a concrete date, we will have one or two orders of magnitude more users of Gutenberg in April.\"</p>\n\n<p>It's now clear what he meant by that. WordPress 4.9.5, scheduled for release in April, will <a href=\"https://core.trac.wordpress.org/ticket/41316\">feature a call-out prompt</a> that has links to information about Gutenberg and a button to quickly install the plugin if user permissions allow. <br /></p>\n\n<img />\n Gutenberg Call-out in WordPress 4.9.5\n\n\n<p>The core team added a Try Gutenberg prompt in October of last year but <a href=\"https://wptavern.com/wordpress-4-9-beta-4-removes-try-gutenberg-call-to-action\">it was removed</a> in WordPress 4.9 Beta 4. After discussing the subject with Mullenweg, it was determined that Gutenberg was not ready for large-scale testing.</p>\n\n<p>The prompt in WordPress 4.9.5 changes the button text based on the following scenarios.<br /></p>\n\n<ul>\n <li>If Gutenberg is not installed, <em>and</em> the user can install plugins, the Install Today button is displayed.<br /></li>\n <li>If Gutenberg is installed but not activated, <em>and</em> the user can install plugins, the Activate Today button is displayed.<br /></li>\n <li>If Gutenberg is installed and activated, <em>and</em> the user can edit posts, the Try Today button is displayed.<br /></li>\n</ul>\n\n<p>If Gutenberg is not installed and the user can not install plugins, the button is hidden from view. If you'd like to hide the prompt from users, David Decker has <a href=\"https://github.com/deckerweb/remove-gutenberg-panel\">created a plugin</a> that's available on GitHub that simply hides it from view.</p>\n\n<p>One of the concerns about the prompt is the lack of warning of the risks involved using beta software on a live site. Gutenberg is beta software that's still in development that could <a href=\"https://core.trac.wordpress.org/ticket/41316#comment:75\">adversely affect sites</a>. There is no warning on the call-out box and in two clicks, users can install and activate Gutenberg. <br /></p>\n\n<p>Whether it's Gutenberg or some other beta software, this general advice applies. Create a full backup of your site before installing and if possible, install it on a staging site first.</p>\n\n<p>I predict that the volunteers who manage the WordPress.org support forums will have their hands full once WordPress 4.9.5 is released. The support team <a href=\"https://make.wordpress.org/support/2018/03/agenda-for-march-22nd-support-meeting/\">is preparing</a> by brainstorming user outcomes, common questions that may be asked, and potential pitfalls users experience after installing Gutenberg. <br /></p>\n\n<p>If you'd like to give them a helping hand, check out the <a href=\"https://make.wordpress.org/support/handbook/\">Support Handbook</a> and if you have any questions, stop by the <a href=\"https://wordpress.slack.com/?redir=%2Fmessages%2Fforums%2F\">#forums</a> channel in <a href=\"https://make.wordpress.org/chat/\">Slack</a>.</p>\n\n<p>The Gutenberg call-out has the potential to pave the way for large audiences to test major features in core without needing to use or install a beta branch of WordPress. However, this convenience comes with risks and while they can be reduced, WordPress needs to be up front and center to users about those risks.</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, 27 Mar 2018 22:55:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:36:\"WPTavern: Why Gutenberg and Why Now?\";s:7:\"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:29:\"https://wptavern.com/?p=78707\";s:7:\"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://wptavern.com/why-gutenberg-and-why-now\";s: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:17921:\"<img />\n\n<p>Tevya Washburn has been building websites for more than 20 years and building them on WordPress for 10. He bootstrapped his website maintenance and support company, <a href=\"http://wordx.press\">WordXpress</a>, that he’s worked on full-time for more than seven years.</p>\n\n<p>Late last year he launched his first premium plugin, and presented at WordCamp Salt Lake City. He lives in Caldwell, ID and is the founding member of the WordPress Meetup group in Western Idaho. <br /></p>\n\n<hr />\n\n<p>It was only a few months ago that I knew almost nothing about WordPress’ new Gutenberg editor. I had a basic concept of what it was and this vague annoyance that it would mean I’d have to learn new things and probably put a lot of effort into making some sites or projects work with it.</p>\n\n<p>I kept hearing all of the frustration and issues with Gutenberg itself and the lack of information on how to integrate with it. At <a href=\"https://wordx.press\">WordX</a>p<a href=\"https://wordx.press\">ress</a> we recently pivoted away from designing websites. When we designed them in the past, we used premium themes. I figured Gutenberg was the theme developer’s problem.<br /></p>\n\n<p>I still had this feeling of dread though, knowing many of my favorite plugins might not add support for it. I also felt some apprehension that even if the themes we use did add support for it, they might have a lot of new bugs through the first few releases.</p>\n\n<p>Then I launched my first WordPress plugin, <a href=\"https://starfishwp.com\">Starfish Reviews</a>, and suddenly they weren’t someone else’s problems anymore! Now I’d have to come up with a plan to integrate our plugin with Gutenberg. I installed the Gutenberg plugin on a test site where we were testing our plugin with the nightly releases of WordPress and started playing around with it.</p>\n\n<p>I was pleasantly surprised at how intuitive and easy it was to use! Now it wasn’t (and isn’t) finished, so there were bugs and annoyances, but overall I was impressed.</p>\n\n<p>Around the same time, I suggested we should have someone present on Gutenberg at our local meetup. My brief experience was more than what anyone else had, so the responsibility fell on me. Preparing for the presentation forced me to look at Gutenberg more carefully and pay more attention to the information and debate going on throughout the community.</p>\n\n<p>I started reading blog posts, paying more attention in podcasts, and even looking at what was being said on Twitter. I watched the State of the Word at WordCamp US where the general tide in the feelings toward Gutenberg, seemed to turn, though many people still remain skeptical, critical, or antagonistic toward the project as a whole.</p>\n\n<p>Today, I saw someone suggesting legal action if Gutenberg caused problems on their sites. That’s ridiculous on several levels, but shows that there’s still a lot of suspicion, frustration, and outright anger around Gutenberg.</p>\n\n<p><em>A couple notes: 1. the graphs below are for illustration purposes only, they’re not meant to be accurate to any actual data. 2. If you prefer listening, you can </em><a href=\"https://www.youtube.com/watch?v=S4ZqrVJ465E\"><em>watch my screencast version</em></a><em> (13:12) of what follows. The message is the same, but differs in many aspects of presentation.</em></p>\n\n<h2><strong>Finding the Why</strong></h2>\n\n<p>Simon Sinek is known for <a href=\"https://www.youtube.com/watch?v=u4ZoJKF_VuA\">his Ted talk</a> where he explains that most people explain a new product or service by talking about ‘what’ it is and ‘how’ it works, but they rarely explain the ‘why’ behind it. The ‘why’ actually resonates with people the most. They want to understand the reason and beliefs behind it.</p>\n\n<p>In my research, I couldn’t seem to find a clear answer to the most important question: “Why Gutenberg?” If I was going to present to people who knew little or nothing about it, I wanted to provide a reason why this major change was coming that might cause significant frustration, work, and pain for them.</p>\n\n<img />\n\n<p>I found a lot of ‘what’ and ‘how’ about Gutenberg. In some posts by <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">Matt Mullenweg</a> and <a href=\"https://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">Matías Ventura</a>, I found hints about ‘why’ Gutenberg existed, but no really clear, simple explanation of why this whole project was happening. Why would Matt and others want to seemingly force this major change on us all? Why does it have to be such a radical departure from the past? Why now?</p>\n\n<p>I was certain the conspiracy theorists—who seem to believe that Automattic’s sole mission is to make their lives more miserable—were wrong. But what was the purpose? Could it really just be a <strong>me too</strong> attitude that left all of these brilliant minds feeling like they had to keep up with Squarespace and Medium? That didn’t seem to fit. Especially since Gutenberg is already leagues better than Squarespace’s convoluted visual editor.</p>\n\n<h2><strong>Innovative Disruption</strong></h2>\n\n<img />\n The Innovator's Dilemma Book Cover\n\n\n<p>Taking cues from those hints and suggestions, I started thinking about the innovative disruption model. It was popularized in business circles, starting in 1997 when the book “<a href=\"https://en.wikipedia.org/wiki/The_Innovator%27s_Dilemma\">The Innovator’s Dilemma</a>” was published by Clayton Christensen, a Harvard professor. His book was an expansion of an <a href=\"https://hbr.org/1995/01/disruptive-technologies-catching-the-wave\">earlier article</a> in the Harvard Business Review.</p>\n\n<p>At the risk of oversimplifying the model, innovative disruption is what happens when an existing company who is the top dog (either in sales or market share) gets comfortable with their position at the top along with their revenue stream and quits innovating. They make small, incremental updates to their products or services to keep customers happy, but fail to look at the future of their industry.</p>\n\n<p>This makes it easier for a startup or smaller, more innovative company to bring a new product or service to market that completely disrupts the existing market because it’s better, faster, cheaper. The established company doesn’t see the disruption coming because they feel secure in their large market share and steady sales revenue. They often respond with “why would anyone want that?” when approached with the new model that is about to completely upset their business model.</p>\n\n<h2><strong>Blockbuster Gets Busted</strong></h2>\n\n<p>The classic example of this is Blockbuster Entertainment, Inc. They had over 9,000 stores at one time, allowing people to rent VHS tapes and later, DVDs. They had a huge portion of the market all to themselves and it seemed nobody could compete with this juggernaut.</p>\n\n<p>Then along came two small startups: Netflix and Redbox. Netflix comes along and says “we’re going to stream movies over the internet. That’s the future and the way everyone will want to consume movies and TV in the future. But since the internet is too slow right now, we’ll just start by mailing DVDs to people.”</p>\n\n<p>Blockbuster looked at this and said, “the internet is <em>way</em> too slow to stream movies. That’s ridiculous! Who wants to wait two weeks to get a movie in the mail?! Hahaha! Stupid startup, they’re wasting their money and energy.” In hindsight this seems ridiculous. At the time, most people would have agreed with Blockbuster.</p>\n\n<p>As you know, people started changing the way they rented movies. Once they tried it, they were happy to pay a subscription and use a queue to get DVDs delivered in the mail. Ultimately, making the decision of what to watch ahead of time was better than wandering through a cathedral of DVDs only to find the one you wanted to watch has already been checked out.</p>\n\n<p>Consumer internet bandwidth speeds quickly caught up. Netflix even invented some of the technologies that provide high quality streaming video to your home. Now, most of us can’t imagine having to go to the store to rent a physical copy of a movie. And those that can, get them from a Redbox kiosk that has a limited selection, but is much quicker and easier than a video store. Netflix now has a larger market share than Blockbuster ever did, with <em>zero</em> physical locations.</p>\n\n<img />\n\n<p>There are exactly nine Blockbuster stores still operating, mostly in Alaska. From 9,000 down to nine in only a few years! This is what failing to innovate does. This is how comfort and confidence in market share and sales blinds people and organizations to the coming innovations that will disrupt their market.</p>\n\n<h2><strong>Literacy, Disruption, and Gutenberg</strong></h2>\n\n<p>Disruptive innovation doesn’t apply just in business. I have a Bachelor’s degree in history. So one example I love to use is how literacy and education ultimately toppled monarchies and traditional power structures in favor of republics and representative democracy.</p>\n\n<p>The choice of Gutenberg as the name of the new WordPress editor seems prescient in this example as well. The name was one of the clues that led me to answer the ‘why?’ question. It was Johannes Gutenberg and his movable type printing press that was the innovative disruption that changed everything!</p>\n\n<p>Before that, the vast majority of people in Europe were illiterate and uneducated. The scarcity of books and written material made it impractical and prohibitively expensive for most people to learn to read. It also allowed the Church and aristocracy to control the opportunity to become literate. That meant the rich and powerful were the gatekeepers of knowledge. Most riots and uprisings to this point were about hunger.</p>\n\n<p>The Gutenberg press changed all that. Suddenly books could be mass-produced faster, cheaper, better than they ever could before. Literacy caught on like a wildfire. The power structures thought they could control it and maintain the status quo. They outlawed printing without state approval and did many other things to limit the spread of ideas through printed materials.</p>\n\n<p>But it was too late, the power to spread ideas that the printing press provided was much too viral. Many printing presses were operated illegally, then destroyed when they were discovered by authorities.</p>\n\n<img />\n\n<p>The tipping point had been reached though. The ability to read and spread ideas via printed documents was much more powerful than the money, soldiers, and weapons of the monarchy. Though hunger might have sparked riots and uprisings from this time on, those tiny flames were fanned into an inferno of revolution by ideas spread through printed words. <a href=\"https://en.wikipedia.org/wiki/Thomas_Paine\">Thomas Paine</a>’s Common Sense is a great example if you want to learn more about concrete examples.</p>\n\n<h2><strong>The Pain of Disrupting Yourself</strong></h2>\n\n<p>I don’t have a business degree, but from my understanding, <em>The Innovator’s Dilemma</em> can be simplified down to this: to survive, and stay on top, a company (or software, or community) must innovate. It <em>can not</em> be incremental innovation. It <em>must</em> be innovation that disrupts the company’s core product or business model, even to the point of entirely replacing it.</p>\n\n<p>Blockbuster tried some Redbox-like and Netflix-like solutions, but they were too little, too late. The only way they could have survived would have been to disrupt their own business model and service. They would have had to say, “in five years we will close all 9k stores and completely shift our business to providing video online.”</p>\n\n<p>Who does that? Who thinks “we have built an empire, but we have to completely change it and replace it all over again”? That’s “The Innovator’s Dilemma” that the book’s title refers to: it’s incredibly difficult to think in those terms when you’re on the top. It’s nearly impossible to say, “we have to disrupt ourselves. We must compete with our own business and products and services.” But ultimately it’s the only way to survive.</p>\n\n<p>…Or you can buy an innovative company and let them disrupt your main business. Did you know Blockbuster had the <a href=\"http://www.businessinsider.com/blockbuster-ceo-passed-up-chance-to-buy-netflix-for-50-million-2015-7\">chance to buy Netflix</a> for $50 million in 2000? It was pocket change, but they passed because it was a very small, niche business.</p>\n\n<p>Had they bought Netflix and allowed it to continue innovating and disrupting their core retail rental model, Blockbuster might still be around. It wouldn’t have 9k retail stores, but it would have an even larger market share than it ever did renting DVDs.</p>\n\n<img />\n\n<p>In either case, the process is painful. That’s why it’s called disruptive. Not because it’s a walk on the beach or small speed bump, but because it takes a lot of work and forward-thinking and causes a lot of pain to create and implement.</p>\n\n<p>If you are the market leader, you can’t rest on your previous success. You have to change everything once again, like you did to get to where you are now. Despite the pain of doing it, you have to invest yourself and your resources into hard work and difficult questions and challenging thinking that goes directly counter to our natural tendency as humans. If you want to stay on top, it’s the only way.</p>\n\n<h2><strong>WordPress is Ripe for Disruption</strong></h2>\n\n<p>WordPress has a 30% market share right now. It won’t be long before 1 out of every 3 websites is built on WordPress. No other platform is even close.</p>\n\n<p>As WordPress professionals and community members, it seems like we have all the momentum and benefits of being the leader. “Surely nothing could displace WordPress!” That’s what Blockbuster said. That’s what monarchs of past ages said. The truth is simple: “yes, something could. In fact, something will, if WordPress doesn’t innovatively disrupt itself.”</p>\n\n<img />\n\n<p>Is it going to be painful? Yes. Is it going to cause a lot of work and effort on the part of the community? Yes! Absolutely. But the alternative is to learn a totally new platform in five years when WordPress dies like Blockbuster did. You think this change is going to be difficult? Try throwing out WordPress entirely and moving your website(s) to an entirely new platform. Because that’s the alternative.</p>\n\n<h2><strong>Good Arguments Against Gutenberg</strong></h2>\n\n<p>I see many people listing a string of bugs in the Gutenberg UI/UX and concluding that Gutenberg shouldn’t exist. I see others critiquing the underlying technologies and claiming that’s evidence that Gutenberg is entirely wrong.</p>\n\n<p>I’m sorry, but those arguments are entirely invalid. They may be great arguments for how Gutenberg needs to change or improve, but they are <em>not</em> valid arguments against the existence of Gutenberg and its inclusion in core.</p>\n\n<p>Hopefully, I’ve made it clear that WordPress is in dire need of innovation. If that’s true, then as I see it, there’s only one really great argument against Gutenberg. As one person in one of the meetups I presented at put it: “is it the right innovation?”</p>\n\n<p>That's the crux of the whole thing: <strong>WordPress must innovate to survive</strong>. Matt Mullenweg and the entire Gutenberg team have looked at the past and the future and decided that a better, faster, easier user interface and experience, are the disruptive innovations that WordPress needs to survive.</p>\n\n<p>You can argue that it’s not, that there’s some other innovation that will completely change WordPress and thereby save it from disruption by outside forces. And that's a totally valid argument to make. But in my opinion, <strong>you can’t argue that continued, incremental changes are enough.</strong> You can’t argue that the path we’ve been on the last five years is going to keep WordPress on top for the next five years. It simply won’t.</p>\n\n<h2><strong>I Like Gutenberg, but I Love What it’s Doing</strong></h2>\n\n<p>In my experience thus far, I like Gutenberg. I believe it is the right disruptive innovation WordPress needs at this time. It will make WordPress easier to use and help its underpinnings be ready for the future. Being easy to use is what got WordPress where it is today.</p>\n\n<p>It’s not very easy to use any more. There are significantly easier options out there, that could disrupt WordPress and replace it. I think Gutenberg will allow WordPress to disrupt itself and keep ahead of other disruptive innovations. It will save WordPress and allow us all to keep using it and building our businesses on it for another 10 years into the future.</p>\n\n<p>I like Gutenberg, but I really love what Gutenberg means, what it represents, and what it's doing. Gutenberg is bigger than just a new post editor, it shows that the leaders of the WordPress community are willing to make hard decisions and innovate even when it means disrupting their own work and previous innovations.</p>\n\n<img />\n\n<p>I have huge respect for the Gutenberg team, who have not only had to rethink everything and do all those difficult things I referred to before, but have had to do it all very publicly, while navigating a gauntlet of criticism, personal attacks, and much more.</p>\n\n<p>I hope this post shows my thanks and newfound appreciation for what they’re doing and going through. Flipping the phrase from <em>The Dark Knight,</em> the members of the Gutenberg team are “the heroes the WordPress community needs right now, even if they’re not the ones we deserve.”</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, 26 Mar 2018 18:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:65:\"Post Status: The Future of Content Distribution — Draft podcast\";s:7:\"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://poststatus.com/?p=44599\";s:7:\"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:\"https://poststatus.com/future-content-distribution-draft-podcast/\";s: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:2385:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p><span>This week the Brians put their brains together and discuss content distribution across various mediums and platforms as well as subscriptions for both digital and physical products. The conversation shifts between different tooling and platforms that exist for enabling content distribution as well as some of the societal shifts that have shaped how we share and consume both content and products. </span></p>\n<p><span>This is a good episode for anyone who is developing sites and selling solutions around content distribution or subscriptions as well as anyone who is running (or looking to run) a business based around a subscriber model (paid or otherwise).</span></p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">WP Jargon Glossary</a></li>\n<li><a href=\"https://www.blog.google/topics/google-news-initiative/announcing-google-news-initiative/\">Google News subscription initiative</a></li>\n<li><a href=\"https://woocommerce.com/2018/02/succeed-with-woocommerce-subscriptions-technical-tips/\">Brent’s blog post</a></li>\n<li><a href=\"https://woocommerce.com/products/teams-woocommerce-memberships/\">Teams for WooCommerce Memberships</a></li>\n<li><a href=\"https://www.recode.net/2017/12/13/16771646/target-shipt-acquisition-price-550-million-grocery-delivery-same-day\">Target acquires Shipt</a></li>\n</ul>\n<h3>Sponsor: Pagely</h3>\n<p><a href=\"https://pagely.com\"><span>Pagely</span></a><span> offers best in class managed WordPress hosting, powered by the Amazon Cloud, the Internet’s most reliable infrastructure. Post Status is proudly hosted by Pagely. Thank you to </span><a href=\"https://pagely.com\"><span>Pagely</span></a><span> for being a Post Status partner</span></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, 26 Mar 2018 13:24:53 +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:14:\"Katie Richards\";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:20:\"BuddyPress: 10 years\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=271550\";s:7:\"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://buddypress.org/2018/03/10-years/\";s: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:5437:\"<p>In 2008 (just 10 short years ago) <a href=\"https://profiles.wordpress.org/apeatling\">Andy Peatling</a> made the very first code-commit to the newly adopted BuddyPress project, joining bbPress, GlotPress, and BackPress at the time. As most of you can probably imagine, BuddyPress was a different piece of software back then, trying to solve a completely different decade’s worth of problems for a completely different version of WordPress.</p>\n<p>BuddyPress was multisite only, meaning it did not work on the regular version of WordPress that most people were accustomed to installing. It needed to completely take over the entire website experience to work, with a specific theme for the primary part of your site, and blog themes for user profiles and everything else.</p>\n<p>There was a lot to love about the original vision and version of BuddyPress. It was ambitious, but in a clever kind of way that made everyone tilt their heads, squint their eyes, and ponder what WordPress was capable of. BuddyPress knew exactly what it was trying to do, and owned it without apologies.</p>\n<p>It touted itself as a “Social Network in a box” at a time when MySpace was generating 75.9 million <em>unique</em> visitors per month, so if you couldn’t imagine how different BuddyPress may have been before, imagine how excited everyone was at the idea of owning their own MySpace.</p>\n<p>Since then, Andy invited <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone</a>, <a href=\"https://profiles.wordpress.org/djpaul\">Paul</a>, and <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">me</a> to help lead the project forward, and in-turn we’ve invited several other prolific BuddyPress contributors to help with every aspect of the project, website, design, and so on.</p>\n<p>The BuddyPress team has grown in a few different ways. Most recently, we’ve added <a href=\"https://profiles.wordpress.org/espellcaste\">Renato Alves</a> to the team to help with WP-CLI support. Renato is a long-time contributor who stepped up big-time to really own the WP-CLI implementation and finally see it through to the end.</p>\n<p><a href=\"https://profiles.wordpress.org/slaffik\">Slava Abakumov</a> lead the 2.8 release, and we finally met in person for the very first time just last week at WordCamp Miami. He’s another long-time contributor who has always had the best interests of the project in mind and at heart.</p>\n<p><a href=\"https://profiles.wordpress.org/offereins\">Laurens Offereins</a> has been helping fix BuddyPress bugs and work on evolving features since version 2.1, and while we haven’t met in person <em>yet</em>, I look forward to it someday!</p>\n<p><a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a> (who you may recognize from bbPress) also works a bit on BuddyPress, largely around tooling & meta related things, but he’s fully capable and will jump in and help anywhere he can, be it the forums or features.</p>\n<p><a href=\"https://profiles.wordpress.org/mercime\">Mercime</a> would prefer I not blather on endlessly here about how important she is, or how much I appreciate her, or anything like that, so please forget I mentioned it.</p>\n<p><a href=\"https://profiles.wordpress.org/hnla\">Hugo Ashmore</a> has spent the past 2 years completely rebuilding the default template pack. This is an absolutely huge undertaking, and everyone is really excited about sunsetting ye olde <code>bp-legacy</code>.</p>\n<p><a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a> has moved on to work on the enormously important and equally ambitious <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a> project. Tammie is wonderful, and doing a great job crafting what the future of democratizing publishing is.</p>\n<p>Lastly, a few of our veteran team members took sabbaticals from contributing to BuddyPress in the past few years, which I see as an opportunity to return with fresh ideas and perspectives, or maybe moving onto new & exciting challenges. This is a good, healthy thing to do, both for oneself and the project. Space makes the heart grow fonder, and all that.</p>\n<hr />\n<p>A small aside but worth saying here & now, is that leading an open-source project is everything you think it is (or maybe have read already that it is) and like a million other things that are hard to understand until you understand. The one constant (and subsequently the hardest and funnest part) is how to provide opportunities for personal growth, without prohibiting contributions, while also doing what’s best for the greater vision of the project itself, amongst a completely remote group of bespoke volunteers. I think Paul, Boone, and I do OK at this, but we are always learning and adjusting, so please reach out to us if there is anything we can do differently or better.</p>\n<hr />\n<p>BuddyPress is my personal favorite piece of software. It’s my favorite community. I wake up excited every day because of what it can do and who it does it for. Put another way, I love what we make it do and who we make it for: ourselves, one another, each other, and you.</p>\n<p>Cheers to 10 years, and here’s to another 10!</p>\n<p><img class=\"alignnone wp-image-271562 size-full\" src=\"https://buddypress.org/wp-content/uploads/1/2018/03/Screen-Shot-2018-03-25-at-4.38.12-PM.png\" alt=\"\" width=\"898\" height=\"452\" /></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, 25 Mar 2018 22:54: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:3:\"JJJ\";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:54:\"WPTavern: Noteworthy Changes Coming in WordPress 4.9.5\";s:7:\"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:29:\"https://wptavern.com/?p=78611\";s:7:\"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:\"https://wptavern.com/noteworthy-changes-coming-in-wordpress-4-9-5\";s: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:2401:\"<p>WordPress 4.9.5 Beta 1 <a href=\"https://make.wordpress.org/core/2018/03/21/wordpress-4-9-5-beta/\">is available</a> for testing and brings with it 23 bug fixes and improvements. A release candidate is scheduled for release on March 20th and a final release on April 3rd. Here are some notable changes you can expect in the release.</p>\n\n<h3>\"Cheatin’ uh?\" Error Message is Replaced</h3>\n\n<p>The \"Cheatin’ uh?\" error message has existed in WordPress for years and for some, is insulting. The error doesn't explain what went wrong and accuses the user of trying to cheat the system.</p>\n\n<img />\n Cheatin' Uh Error Message<br />\n\n\n<p>Eric Meyer highlighted the error in <a href=\"https://wordpress.tv/2016/06/24/eric-a-meyer-design-for-real-life/\">his keynote</a> at WordCamp North East Ohio in 2016, when talking about Designing for Real Life. He also <a href=\"https://core.trac.wordpress.org/ticket/38332#comment:11\">contributed to the ticket</a> with suggestions on how to improve the wording.</p>\n\n<p>In WordPress 4.9.5, the error <a href=\"https://core.trac.wordpress.org/ticket/38332\">has been changed</a> to more meaningful messages depending on the error that occurs.</p>\n\n<h3>Recommended PHP Version Increased to 7.2</h3>\n\n<p>Inside of the readme file in WordPress, the current recommended PHP version is 7.0. This version of PHP reached end of life last December. In 4.9.5, the recommend version is PHP 7.2. This is the same version that is <a href=\"https://wordpress.org/about/requirements/\">recommended on WordPress.org</a>.</p>\n\n<h3>Offensive Lyrics Removed From Hello Dolly</h3>\n\n<p>As we covered <a href=\"https://wptavern.com/without-context-some-lyrics-inside-the-hello-dolly-plugin-are-degrading-to-women\">earlier this week</a>, some of the lines displayed in the dashboard from the Hello Dolly plugin are inappropriate without context. In 4.9.5, the plugin will no longer display those lines.</p>\n\n<p>There's a possibility that in the future, there will be a musical note icon or symbol placed next to the line to indicate it's from a song. In addition, the lyrics are more in line with Louis Armstrong's recording.</p>\n\n<p>To see a full list of changes in WordPress 4.9.5, you can <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.9.5&group=component\">view a full list</a> of closed tickets on Trac. </p>\n\n<p><br /></p><br /></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 Mar 2018 21:32: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: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:47:\"WPTavern: WPWeekly Episode 309 – All AMPed Up\";s:7:\"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:58:\"https://wptavern.com?p=78601&preview=true&preview_id=78601\";s:7:\"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://wptavern.com/wpweekly-episode-309-all-amped-up\";s: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:2180:\"<p>In this episode, I’m joined by <a href=\"https://medinathoughts.com/\">Alberto Medina</a>, Developer Advocate working with the Web Content Ecosystems Team at Google, and <a href=\"https://weston.ruter.net/\">Weston Ruter</a>, CTO of XWP. We have a candid conversation about <a href=\"https://www.ampproject.org/\">Google’s AMP Project</a>. We start by learning why the project was created, what its main goal is, and the technology behind it.</p>\n<p>We also dive into some of the controversy surrounding the project by discussing whether or not AMP is a threat to the Open Web. Medina and Ruter provide insight into AMP’s transformation from focusing on the mobile web to providing a great user experience across the entire web. Last but not least, we learn about the relationship between Automattic, XWP, and the AMP team and how it’s helping to shape the future of the project.</p>\n<h2>Notable Links Mentioned:</h2>\n<p><a href=\"https://wordpress.org/plugins/amp/\">AMP for WordPress Plugin</a><br />\n<a href=\"https://github.com/Automattic/amp-wp\">AMP for WordPress GitHub Repository</a><br />\n<a href=\"https://github.com/ampproject\">AMP GitHub Repository</a><br />\n<a href=\"https://www.youtube.com/watch?v=GGS-tKTXw4Y\">Video presentation from AMP Conf 2018 showcasing the work that’s gone into the AMP for WordPress plugin</a><br />\n<a href=\"https://www.ampproject.org/latest/blog/standardizing-lessons-learned-from-amp/\">Official blog post outlining the future of the AMP Project</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 28th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #309:</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:\"Thu, 22 Mar 2018 14:34: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:\"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: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:25:\"Matt: Don’t Like 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:22:\"https://ma.tt/?p=47998\";s:7:\"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:\"https://ma.tt/2018/03/dont-like-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:407:\"<blockquote class=\"wp-block-quote\">\n <p>If you don't like change, you're going to like irrelevance even less.</p><cite>General Eric Shinseki</cite></blockquote>\n\n<p>I actually heard this on the <a href=\"https://www.fs.blog/2015/06/michael-lombardi/\">Farnam Street podcast with Patriots coach Michael Lombardi</a>, but it seems like General Shinseki said it first so attributing it there.</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 Mar 2018 00:01: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: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:11;a:6:{s:4:\"data\";s:11:\"\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:34:\"HeroPress: Keeping Community Alive\";s:7:\"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:29:\"https://heropress.com/?p=2487\";s:7:\"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:113:\"https://heropress.com/keeping-community-alive/#utm_source=rss&utm_medium=rss&utm_campaign=keeping-community-alive\";s: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:3425:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2016/09/090716-David-Laietta-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Be a pillar of support for your community.\" /><p>In the last year or so I’ve been a lot more involved with the business side of WordPress than the community side. The business side isn’t nearly as loving and supportive as the community side, and some of that is out of necessity. Business is business, and people need to eat.</p>\n<p>The problem comes when people get so focused on the business side of things that they forget they’re dealing with people. Recently <a href=\"https://twitter.com/carlhancock/status/971182969514799105\">Carl Hancock mentioned on twitter</a> that there are things that happen in business in the WordPress community that would horrify people. I don’t know who those people are that do those things, and I don’t even know what the things are, but I have hope that the community can be bigger and better than that.</p>\n<p>There will always be selfish jerks who abuse the system for personal gain, but I have hope that the WordPress community can generally rise above that, and perhaps even change the hearts of poor players.</p>\n<p>This week’s HeroPress replay is from David Laietta, about how our community changes lives.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/a-community-of-acceptance/\">A Community of Acceptance</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Keeping Community Alive\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Keeping%20Community%20Alive&via=heropress&url=https%3A%2F%2Fheropress.com%2Fkeeping-community-alive%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Keeping Community Alive\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fkeeping-community-alive%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fkeeping-community-alive%2F&title=Keeping+Community+Alive\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Keeping Community Alive\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/keeping-community-alive/&media=https://heropress.com/wp-content/uploads/2016/09/090716-David-Laietta-150x150.jpg&description=Keeping Community Alive\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Keeping Community Alive\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/keeping-community-alive/\" title=\"Keeping Community Alive\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/keeping-community-alive/\">Keeping Community Alive</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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 Mar 2018 15:39:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:77:\"WPTavern: A Plea For Plugin Developers to Stop Supporting Legacy PHP Versions\";s:7:\"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:29:\"https://wptavern.com/?p=78533\";s:7:\"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:88:\"https://wptavern.com/a-plea-for-plugin-developers-to-stop-supporting-legacy-php-versions\";s: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:2188:\"<p>Iain Poulson has <a href=\"https://deliciousbrains.com/legacy-php-version-support/\">published a thoughtful request</a> on the Delicious Brains blog asking WordPress plugin developers to stop supporting legacy PHP versions. He covers some of the benefits of developing with newer versions of PHP, what Delicious Brains is doing with its plugins, and using the <a href=\"https://make.wordpress.org/plugins/2017/08/29/minimum-php-version-requirement/\">Requires Minimum PHP Version header</a> in readme.txt.<br /></p>\n\n<blockquote class=\"wp-block-quote\">\n <p>While we wait for the Trac discussion to roll on and the WordPress development wheels to turn we can take action ourselves in our plugins to stop them working on installs that don’t meet our requirements. </p>\n <p>We do this in our own plugins where it is strictly necessary (<a href=\"https://deliciousbrains.com/wp-offload-s3/\">WP Offload S3</a> relies on the Amazon Web Services S3 SDK, which requires PHP 5.3.3+ and will we will <a href=\"https://deliciousbrains.com/wp-offload-s3/doc/php-version-requirements/\">move to PHP 5.5</a> in the future), and the more plugins that do this out of choice will help move the needle further.</p><cite>Iain Poulson <br type=\"_moz\" /></cite></blockquote>\n\n<p>Poulson mentions the <a href=\"https://github.com/WordPress/servehappy\">ServeHappy project</a> in his post and it's worth a mention here as well. The ServeHappy project was <a href=\"https://make.wordpress.org/core/2018/01/09/servehappy-roadmap/\">launched earlier this year</a> by a group of volunteers.</p>\n\n<p>Its main goal is to reduce the number of WordPress installs running on unsupported PHP versions through education, awareness, and tools to help users update their site's PHP versions.</p>\n\n<p>This project is in need of contributors. If you're interested, join the #core-php channel on <a href=\"https://make.wordpress.org/chat/\">WordPress Slack</a>. The team has meetings every Monday at 11:00 AM EDT. You can also follow the <a href=\"https://make.wordpress.org/core/tag/core-php/\">#core-php tag</a> on the Make WordPress.org Core site where links to chat logs and meeting summaries are published. </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 Mar 2018 00:31: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: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: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:62:\"WPTavern: How to Disable Push Notification Requests in Firefox\";s:7:\"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:29:\"https://wptavern.com/?p=78475\";s:7:\"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:73:\"https://wptavern.com/how-to-disable-push-notification-requests-in-firefox\";s: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:1246:\"<p>Have you noticed how many sites ask if you want to enable push notifications? I've answered no to every request but thanks <a href=\"https://twitter.com/tkraftner/status/976116234365358081\">to a tip</a> suggested by Thomas Kräftner, you can disable requests from appearing altogether in Firefox.</p>\n\n<p>Last week, Mozilla <a href=\"https://www.mozilla.org/en-US/firefox/59.0/releasenotes/\">released Firefox 59.0</a> and added a <a href=\"https://support.mozilla.org/en-US/kb/push-notifications-firefox\">new privacy feature</a> that allows users to block sites from sending push notification requests. To enable it, open the Options panel in Firefox 59.0 and click the Privacy&Security tab.<br /></p>\n\n<p>Scroll down to the Permissions section. Click on the Settings button for Notifications and check the box that says <em>Block new requests asking to allow notifications.</em></p>\n\n<img />\n Settings panel for Notifications\n\n\n<p>Click the Save Changes button and enjoy one less thing interrupting your browsing experience. To accomplish the same thing in Chrome, follow <a href=\"https://fieldguide.gizmodo.com/how-to-block-super-annoying-website-notification-reques-1797499616\">this tutorial published by Field Guide</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, 20 Mar 2018 23:32: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: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:91:\"WPTavern: Without Context, Some Lyrics Inside the Hello Dolly Plugin Are Degrading to Women\";s:7:\"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:29:\"https://wptavern.com/?p=78372\";s:7:\"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:\"https://wptavern.com/without-context-some-lyrics-inside-the-hello-dolly-plugin-are-degrading-to-women\";s: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:2914:\"<p>There have been <a href=\"https://core.trac.wordpress.org/ticket/11538\">many discussions</a> over the years on whether or not <a href=\"https://wordpress.org/plugins/hello-dolly/\">Hello Dolly</a> should be unbundled with WordPress. Seven years ago, it was <a href=\"https://core.trac.wordpress.org/ticket/15769\">argued</a> that the lyrics are copyrighted and could potentially violate the GPL license.</p>\n\n<p>The latest issue with Hello Dolly is that some lyrics that appear in users dashboards with the plugin activated can be degrading to women without context.</p>\n\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Find her an empty lap, fellas.<br /><br />Wondering about my <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> dashboard. Apparently they\'re lyrics. <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f643.png\" alt=\"????\" class=\"wp-smiley\" /> <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f644.png\" alt=\"????\" class=\"wp-smiley\" /> <a href=\"https://t.co/oxNU9czr5X\">pic.twitter.com/oxNU9czr5X</a></p>— Michelle Felt (@michellefelt) <a href=\"https://twitter.com/michellefelt/status/974060334502719488?ref_src=twsrc%5Etfw\">March 14, 2018</a></blockquote></p>\n\n<p>Two examples are:</p>\n\n<ul>\n <li>Find her an empty lap, fellas</li>\n <li>Find her a vacant knee, fellas</li>\n</ul>\n\n<p>Joe McGill has <a href=\"https://core.trac.wordpress.org/ticket/43555\">created a trac ticket</a> proposing that those two lines be removed. \"The Hello Dolly plugin has been bundled in WordPress for many years, being a simple example of how to build a plugin for WordPress while also adding a bit of whimsy to admin,\" he said.</p>\n\n<p>\"However, there are several passages of text from this song which are inappropriate to display without any context to people using WordPress—particularly as the WordPress project seeks to promote inclusivity for all.\"</p>\n\n<p>The discussion within the ticket suggests creating a black list or replacing the lyrics with less offensive versions. In many of the Google search results for Hello Dolly lyrics by Jerry Herman, shows that the lyrics inside the plugin and those in the song are different.</p>\n\n<p>The lyrics say, \"Find me a vacant knee, fellas.\" In a <a href=\"https://www.youtube.com/watch?v=RETJfq1U_gg\">video on YouTube</a> of Hello Dolly featuring Sarah Gardner singing the lyrics, she clearly says \"Find her an empty lap, fellas.\" In a YouTube video of <a href=\"https://www.youtube.com/watch?v=kmfeKUNDDYs\">Louis Armstrong singing Hello Dolly live</a>, he says \"Find her an empty lap, fellas.\"<br /></p>\n\n<p>Putting aside the debate of which version of the lyrics are used, displaying the text above without context can and is seen as degrading women. At a time when WordPress and its community are doing what it can to be more inclusive, changing or removing the lyrics seems like an easy win. </p>\n\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:\"Fri, 16 Mar 2018 20:45:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:55:\"WPTavern: Watch WordCamp Miami 2018 Via Free Livestream\";s:7:\"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:29:\"https://wptavern.com/?p=78359\";s:7:\"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:\"https://wptavern.com/watch-wordcamp-miami-2018-via-free-livestream\";s: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:618:\"<p>Tickets for the event may be sold out, but you can watch the event from anywhere thanks to a <a href=\"https://2018.miami.wordcamp.org/live/\">free livestream</a>. The stream starts today and covers both the E-Commerce and developers workshops. The stream begins tomorrow at 8:30AM EDT with separate links to <a href=\"https://bizstreams.fiu.edu/Mediasite/Play/05a25d9473ca4c919b5f29aa426bb0c01d?catalog=f4f4edd3-2dee-4302-91c6-d77c1da5f437\">morning</a> and <a href=\"https://bizstreams.fiu.edu/Mediasite/Play/30c9fdc284ce46648866ed715fd3b90d1d?catalog=f4f4edd3-2dee-4302-91c6-d77c1da5f437\">afternoon</a> sessions. </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 Mar 2018 16:18: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:\"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: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:65:\"WPTavern: Let’s Encrypt Wildcard Certificates Are Now Available\";s:7:\"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:29:\"https://wptavern.com/?p=78287\";s:7:\"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:73:\"https://wptavern.com/lets-encrypt-wildcard-certificates-are-now-available\";s: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:1765:\"<p>In July of last year, <a href=\"https://letsencrypt.org/\">Let's Encrypt</a> announced that it would begin <a href=\"https://letsencrypt.org/2017/07/06/wildcard-certificates-coming-jan-2018.html\">issuing Wildcard certificates</a> for free in January of 2018. Although a little late, the organization <a href=\"https://community.letsencrypt.org/t/acme-v2-and-wildcard-certificate-support-is-live/55579\">has announced</a> that Wildcard certificate support is now live.</p>\n\n<p>In addition to these certificates, the organization has updated its <a href=\"https://datatracker.ietf.org/wg/acme/about/\">ACME protocol</a> to version 2.0. ACMEv2 is required for clients that want to use Wildcard certificates.</p>\n\n<p>Wildcard certificates enable site administrators to secure all sub domains with a single certificate. This can be especially convenient for WordPress Multi-site networks.</p>\n\n<p>Let's Encrypt is working on transitioning all clients and subscribers to ACMEv2, though it hasn't set a time table on when it will expire the ACMEv1 API. </p>\n\n<p>In July of 2017, Let's Encrypt was securing 47 million domains. Today, the organization is <a href=\"https://letsencrypt.org/stats/\">securing nearly 70 million domains with 54 million certificates</a>. In the United States, nearly 80% of sites loaded in Firefox are through HTTPS.</p>\n\n<p>Let's Encrypt is an open certificate authority that's part of the non-profit <a href=\"https://letsencrypt.org/isrg/\">Internet Security Research Group</a>. It's mission is to make 100% of the web HTTPS. Operations are financed through sponsors and donations. If this is a mission you believe in, please consider <a href=\"https://letsencrypt.org/donate/\">donating</a> to the project.<br /></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 Mar 2018 17:23: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: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:68:\"WPTavern: WPWeekly Episode 308 – Wildcard SSL Certificates For All\";s:7:\"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:58:\"https://wptavern.com?p=78291&preview=true&preview_id=78291\";s:7:\"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://wptavern.com/wpweekly-episode-308-wildcard-ssl-certificates-for-all\";s: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:2349:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss the news of the week including the results from the 2018 Stack Overflow survey, Tech Crunch’s rebuild, and Let’s Encrypt adding support for wildcard certificates. We also talk about Google working towards AMP or parts of it becoming official web standards. I ranted about how the mobile experience on the web sucks, and we end the show with some event news.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/stack-overflow-survey-respondents-still-rank-wordpress-among-the-most-dreadful-platforms\">Stack Overflow Survey Respondents Still Rank WordPress Among the Most Dreadful Platforms</a><br />\n<a href=\"https://www.theverge.com/2018/3/8/17095078/google-amp-accelerated-mobile-page-announcement-standard-web-packaging-urls\">Inside Google’s plan to make the whole web as fast as AMP</a><br />\n<a href=\"https://community.letsencrypt.org/t/acme-v2-and-wildcard-certificate-support-is-live/55579\">ACME v2 and Wildcard Certificate Support is Live</a><br />\n<a href=\"https://techcrunch.com/2018/03/13/welcome-to-the-new-techcrunch/\">TechCrunch rebuilt using the REST API</a><br />\n<a href=\"https://wptavern.com/wpcampus-scheduled-for-july-12-14-in-st-louis-mo\">WPCampus Scheduled for July 12-14 in St. Louis, MO</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://themeshaper.com/2018/03/07/designing-gutenberg-block-driven-themes-with-sketch/\">Designing Themes with Gutenberg Blocks and Sketch</a></p>\n<p><a href=\"https://www.pioneerdj.com/en-us/product/controller/ddj-1000/black/overview/\">DDJ-1000 The 4-channel professional performance DJ controller for rekordbox dj</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 21st 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #308:</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:\"Thu, 15 Mar 2018 01:09:33 +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:11:\"\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:63:\"HeroPress: A look back: Tamsin Taylor, Freedom Through Blogging\";s:7:\"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:29:\"https://heropress.com/?p=2484\";s:7:\"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:167:\"https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/#utm_source=rss&utm_medium=rss&utm_campaign=a-look-back-tamsin-taylor-freedom-through-blogging\";s: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:3463:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2016/10/100516-2-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: We cannot know the end of any journey until we find ourselves there.\" /><p>In August of 2016 I saw <a href=\"https://wordpress.tv/2016/08/09/tamsin-taylor-a-heros-journey/\">a WordCamp talk on WordPress.tv</a> called “A Hero’s Journey”, and I thought that seemed like something I should know a lot more about. A short time later I was speaking with Tamsin Taylor on Slack.</p>\n<p><img class=\"aligncenter wp-image-2485 size-full\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/03/Screen-Shot-2018-03-14-at-8.46.22-AM.png\" alt=\"A greeting conversation\" width=\"356\" height=\"201\" /></p>\n<p>I love telling stories, but I love hearing them more. Tamsin told me a story grief and loss, and how WordPress provided an outlet for those feelings. I hope her story resonates with you as well.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/bumpy-journey-becoming/\">The Bumpy Journey of Becoming</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: A look back: Tamsin Taylor, Freedom Through Blogging\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=A%20look%20back%3A%20Tamsin%20Taylor%2C%20Freedom%20Through%20Blogging&via=heropress&url=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: A look back: Tamsin Taylor, Freedom Through Blogging\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fa-look-back-tamsin-taylor-freedom-through-blogging%2F&title=A+look+back%3A+Tamsin+Taylor%2C+Freedom+Through+Blogging\" rel=\"nofollow\" target=\"_blank\" title=\"Share: A look back: Tamsin Taylor, Freedom Through Blogging\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/&media=https://heropress.com/wp-content/uploads/2016/10/100516-2-150x150.jpg&description=A look back: Tamsin Taylor, Freedom Through Blogging\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: A look back: Tamsin Taylor, Freedom Through Blogging\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/\" title=\"A look back: Tamsin Taylor, Freedom Through Blogging\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/a-look-back-tamsin-taylor-freedom-through-blogging/\">A look back: Tamsin Taylor, Freedom Through Blogging</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 14 Mar 2018 12:46: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:\"\";}}}}}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:98:\"WPTavern: Stack Overflow Survey Respondents Still Rank WordPress Among the Most Dreadful Platforms\";s:7:\"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:29:\"https://wptavern.com/?p=78278\";s:7:\"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:109:\"https://wptavern.com/stack-overflow-survey-respondents-still-rank-wordpress-among-the-most-dreadful-platforms\";s: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:2902:\"<p><a href=\"https://stackoverflow.com/\">Stack Overflow</a>, a Q&A community for developers, has published the results of <a href=\"https://insights.stackoverflow.com/survey/2018/\">its 2018 developer survey</a>. The survey was held between January 8th through the 28th and includes responses from 101,592 software developers from 183 countries across the world. This is nearly twice the amount of responses compared to <a href=\"https://insights.stackoverflow.com/survey/2017#methodology\">last year’s survey</a>.</p>\n<p><a href=\"https://insights.stackoverflow.com/survey/2017#technology-most-loved-dreaded-and-wanted-platforms\">Last year</a>, WordPress was the third most dreaded software platform behind Salesforce and SharePoint. This year, WordPress has improved in the rankings and is the sixth most dreaded platform. Respondents found Windows Phone, Mainframe, Salesforce, Drupal, and SharePoint to be more dreadful.</p>\n<img />WordPress is the sixth most dreaded software platform\n<p>Despite making headway, WordPress has <a href=\"https://wptavern.com/stack-overflow-developer-survey-ranks-wordpress-as-the-3rd-most-dreaded-technology\">consistently ranked near the top</a> in Stack Overflow’s survey for most dreadful platform. Asking developers why is probably akin to opening <a href=\"https://en.wikipedia.org/wiki/Pandora%27s_box\">Pandora’s box</a>.</p>\n<p>JavaScript was once again the <a href=\"https://insights.stackoverflow.com/survey/2018/#most-popular-technologies\">most popular technology</a> with HTML, CSS, and SQL following closely behind. Among the various JavaScript frameworks and libraries that exist, <a href=\"https://insights.stackoverflow.com/survey/2018/#technology-frameworks-libraries-and-tools\">Node.js is the most commonly used</a> followed by Angular and React.</p>\n<p>The survey introduced a few new topics this year, including questions about <a href=\"https://insights.stackoverflow.com/survey/2018/#technology-and-society\">artificial intelligence</a> and ethics. When <a href=\"https://insights.stackoverflow.com/survey/2018/#work-what-would-developers-do-if-asked-to-write-code-for-an-unethical-purpose\">posed with a hypothetical situation</a> in which a developer was asked if they would write code for unethical purposes, more than half of the respondents said no. Also of note is that <a href=\"https://insights.stackoverflow.com/survey/2018/#developer-profile-contributing-to-open-source\">less than half</a> of the respondents say they contribute to open source.</p>\n<p>There are a lot of interesting data points in the survey. I encourage you to <a href=\"https://insights.stackoverflow.com/survey/2018/#overview\">check out the results</a> and let me know in the comments what sticks out to you.</p>\n<p><strong>Updated 3/14/2018</strong> Corrected to say that WordPress has improved in the rankings and is therefor, less dreadful than before.</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 Mar 2018 10:08:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:60:\"WPTavern: WPCampus Scheduled for July 12-14 in St. Louis, MO\";s:7:\"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:29:\"https://wptavern.com/?p=78273\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/wpcampus-scheduled-for-july-12-14-in-st-louis-mo\";s: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:1138:\"<p><a href=\"https://2018.wpcampus.org/about/\">WPCampus</a>, an in-person conference dedicated to WordPress in higher education <a href=\"https://2018.wpcampus.org/\">has announced</a> its third annual event will be held July 12-14 at <a href=\"https://wustl.edu/\">Washington University</a> in St. Louis, MO. The <a href=\"https://2018.wpcampus.org/call-for-speakers/application/\">call for speakers</a> is open until April 7th. The event is two months after <a href=\"https://2018.stlouis.wordcamp.org/\">WordCamp St. Louis </a>which will also be held at Washington University.</p>\n<p>WPCampus held its first event in 2016 in Sarasota, FL, and its second in 2017 in Buffalo, NY. The schedule is not yet finalized but to get an idea on what to expect, check out the <a href=\"http://wpcampus.org/videos/\">video presentations</a> from previous events. Organizers expect about 200 attendees and are accepting <a href=\"https://2018.wpcampus.org/sponsors/\">sponsorship inquiries</a>.</p>\n<p>Tickets are not yet available but those interested in attending can sign up to the WPCampus mailing list where ticket information will be distributed first.</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 Mar 2018 00:12: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: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: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:60:\"Post Status: Network effects and WordPress — Draft podcast\";s:7:\"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://poststatus.com/?p=44341\";s:7:\"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:63:\"https://poststatus.com/network-effects-wordpress-draft-podcast/\";s: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:2200:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian and Brian discuss the power of network effects and how they relate to WordPress’ increasing market share and maturity. WordPress has recently hit two major milestones, turning 15 years old and reaching 30% market share of the top 10 million websites, and we spend this episode reflecting on the innovations that brought us here and where innovations are likely to occur over the next 10 years.</p>\n<p>We’ve come quite a long way in these 15 years. From the famous 5-minute install to being entirely pre-installed. From a supportive band of volunteers and vast ecosystem of free software to the commercially supported and highly-polished products that exist today. There is a lot about WordPress to be thankful for, and a lot of great things that will exist in the future because of it. And you can hear a bit about all of that on this episode of the Post Status Draft podcast.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://medium.com/evergreen-business-weekly/the-power-of-network-effects-why-they-make-such-valuable-companies-and-how-to-harness-them-5d3fbc3659f8\">The Power of Network Effects</a></li>\n<li>Mel Choice’s LoopConf presentation on <a href=\"https://loopconf.com/talk/customizing-the-future/\">Customizing the Future</a></li>\n</ul>\n<h3>Sponsor: Yoast</h3>\n<p>Yoast SEO Premium gives you 24/7 support from a great support team and extra features such as a redirect manager, recommended internal links, tutorial videos and integration with Google Webmaster Tools! Check out <a href=\"https://yoast.com/\">Yoast SEO Premium</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 Mar 2018 20:18:53 +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:14:\"Katie Richards\";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:79:\"WPTavern: Yoast Launches Fund to Increase Speaker Diversity at Tech Conferences\";s:7:\"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:29:\"https://wptavern.com/?p=78248\";s:7:\"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:90:\"https://wptavern.com/yoast-launches-fund-to-increase-speaker-diversity-at-tech-conferences\";s: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:1421:\"<p>In an effort to increase speaker diversity at conferences worldwide, the team at Yoast SEO has <a href=\"https://yoast.com/yoast-diversity-fund/\">launched</a> a diversity fund. The fund will pledge a minimum of €25,000 each year. Its purpose is to remove the financial burdens that can cause minorities or underrepresented groups to speak at conferences.</p>\n<p>“There are WordCamps throughout the world, these are conferences about, by and for the WordPress community,” Joost de Valk said.</p>\n<p>“While we already sponsor a lot of them, they tend to not have the budget to pay for speakers’ travel and accommodation cost. The same applies to other conferences about open source, certainly those that are not commercially run. We want to take away that particular reason for not having a diverse conference.”</p>\n<p>Eligible candidates will be reimbursed €1,000 for travel and accommodations per event. In order to qualify for the fund, speakers must meet the following requirements:</p>\n<ul>\n<li>Is a part of – or identifies as part of – a typically underrepresented group.</li>\n<li>The conference is not commercial.</li>\n<li>The conference targets either the WordPress, Magento, or TYPO3 community.</li>\n<li>Has been accepted as a speaker to the conference.</li>\n</ul>\n<p>To submit an application, email diversity-fund at yoast.com where applications are reviewed within a week.</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, 09 Mar 2018 03:20: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: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: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:60:\"WPTavern: WPWeekly Episode 307 – Thirty Percent of the Web\";s:7:\"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:58:\"https://wptavern.com?p=78242&preview=true&preview_id=78242\";s:7:\"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:\"https://wptavern.com/wpweekly-episode-307-thirty-percent-of-the-web\";s: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:2423:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I start with a continued discussion of AMP from last week. We cover the big releases of the week including Jetpack, Genesis, Yoast SEO, and Gutenberg. We discuss a new project that aims to determine Gutenberg compatible plugins, debate the terminology used to describe WordPress’ market share, and a new plugin that makes WordPress updates more secure.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://make.wordpress.org/core/2018/03/02/whats-new-in-gutenberg-2nd-march/\">Gutenberg 2.3, Now With Nested Blocks</a><br />\n<a href=\"https://studiopress.blog/genesis-2-6/\">Genesis 2.6</a><br />\n<a href=\"https://yoast.com/yoast-seo-7-0/\">Yoast SEO 7.0</a><br />\n<a href=\"https://jetpack.com/category/releases/\">Jetpack 5.9</a><br />\n<a href=\"https://wptavern.com/4500-plugins-need-your-help-in-determining-gutenberg-compatibility\">4,500 Plugins Need Your Help in Determining Gutenberg Compatibility</a><br />\n<a href=\"https://wptavern.com/new-plugin-makes-wordpress-core-updates-more-secure-by-requiring-cryptographic-signature-verification\">New Plugin Makes WordPress Core Updates More Secure by Requiring Cryptographic Signature Verification</a><br />\n<a href=\"https://wptavern.com/wordpress-now-used-on-30-of-the-top-10-million-sites\">WordPress Now Used on 30% of the Top 10 Million Sites</a></p>\n<h2>Picks of the Week:</h2>\n<p>Mel Choyce’s presentation on <a href=\"https://wptavern.com/conceptual-ideas-on-how-the-customizer-could-integrate-with-gutenberg\">Customizing the Future</a> at LoopConf.</p>\n<p>Felix Arntz’s presentation on a Global Admin, a <a href=\"https://www.youtube.com/watch?v=V085zCBdRfc\">deep dive into multi-network organization</a> at LoopConf.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 14th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #307:</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:\"Thu, 08 Mar 2018 03:39:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:22:\"Matt: Back to Blogging\";s:7:\"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:22:\"https://ma.tt/?p=47991\";s:7:\"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:\"https://ma.tt/2018/03/back-to-blogging/\";s: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:134:\"<p>I really enjoyed <a href=\"http://tomcritchlow.com/2018/02/23/small-b-blogging/\">Tom Critchlow's post Small b blogging</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, 07 Mar 2018 22:59:53 +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: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:79:\"WPTavern: Conceptual Ideas on How the Customizer Could Integrate With Gutenberg\";s:7:\"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:29:\"https://wptavern.com/?p=78232\";s:7:\"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:90:\"https://wptavern.com/conceptual-ideas-on-how-the-customizer-could-integrate-with-gutenberg\";s: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:1598:\"<p>While the initial focus of Gutenberg is the editor, the second focus is the Customization experience in WordPress. <a href=\"https://choycedesign.com/\">Mel Choyce</a>, Product Designer at Automattic, recently spoke at <a href=\"https://loopconf.com/\">LoopConf</a>, on the <a href=\"https://loopconf.com/talk/customizing-the-future/\">past, present, and future</a> of the customizer.</p>\n<p>Choyce begins the presentation by describing when and how the customizer was added to WordPress. Fun fact, the customizer or what was known as the Theme Customizer at the time, was added to <a href=\"https://wordpress.org/news/2012/06/green/\">WordPress 3.4 “Green”</a> in June 2012.</p>\n<p>The session continues with Choyce showcasing new features and enhancements that have been made to the customizer since 2012. Near the 23 minute mark, Choyce shows conceptual images of what the customization experience could be like when implemented with Gutenberg.</p>\n<p>In the experimental images, you can see options to choose page templates or layouts, live previewing changes to blocks, global site styles, and a standard set of user interface patterns. The ideas presented are concepts and likely to change.</p>\n<p>Because the session was recorded with a picture-in-picture, I’m not able to provide high quality screen captures of the conceptual images. To see those items in detail, I recommend viewing the video in full-screen 1080p. You can full all of the LoopConf sessions for free via <a href=\"https://www.youtube.com/channel/UCAwOVsWiMdlz6snWRF2HdSQ\">their YouTube channel</a>.</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:\"Wed, 07 Mar 2018 10:17: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:\"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:30:\"HeroPress: Building A New Life\";s:7:\"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:56:\"https://heropress.com/?post_type=heropress-essays&p=2480\";s:7:\"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:112:\"https://heropress.com/essays/building-a-new-life/#utm_source=rss&utm_medium=rss&utm_campaign=building-a-new-life\";s: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:12981:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/03/030718-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Plan your business around what matters to you/\" /><p>This is the story of how I co-founded Barn2 Media with my husband Andy, and scaled it from a startup to one of the UK’s best known WordPress agencies – all while working part-time.</p>\n<p>I’ll tell you about the challenges I faced in building a WordPress business that is compatible with a good work-life balance. I’ll share what I did each time the growing business started to threaten my lifestyle, and how you can do the same.</p>\n<h2>The Beginning</h2>\n<p>I had a traditional full-time job throughout my 20’s. I enjoyed building my career and earning a regular salary, but didn’t like the lack of flexibility that came with it.</p>\n<p>I didn’t like having to arrive at work by a fixed time, or being unable to choose when I worked. As a hard-working person, it felt counter-productive to be forced to work set hours when I may not be at my best.</p>\n<p>My daily commute was anything from 25-50 minutes (which I realise is less than many people). It felt like a waste of time as I could work just as well from home, not to mention the environmental impact of driving so far just to sit in an office. Day-to-day tasks such as ordering items for home delivery became a big deal, as I wasn’t home during the day.</p>\n<p>As a result, I spent most of my 20’s simultaneously building my career in a traditional job, while dreaming about running my own business and working for myself. Andy felt the same about his own job as a senior software developer.</p>\n<blockquote><p>I think that most people want a better lifestyle, but not many actually do anything about it. I thought I was one of those people.</p></blockquote>\n<p>Andy and I would talk endlessly about different business ideas (most of them terrible!) and even experimented with building a few websites that were never launched. However, we didn’t have the drive to make it happen and launch a business in the real world.</p>\n<h2>Starting a Business</h2>\n<p>In late 2009, Andy had finally had enough of his job and we agreed that it was time for him to quit. We decided to start a web design business together. He would work solely on the new business, while I would support it alongside my main job (which I didn’t hate, even though I didn’t like the lifestyle).</p>\n<p>We started by building WordPress websites for small local businesses. Andy built the websites and I was responsible for copywriting and marketing. We approached local tradespeople who didn’t already have a website – back in 2010, there were still a lot of these! Our first clients were local plumbers, electricians, a washing machine repair shop, etc.</p>\n<p>These early projects were quite low budget. The average hourly rate was quite low because we were still learning and hadn’t perfected our processes yet. We wasted a lot of time on projects where we had under-quoted but were committed to honoring the agreed price.</p>\n<blockquote><p>We made a lot of mistakes, and learned from them all!</p></blockquote>\n<p>By Year 2, the business was making the equivalent of a fairly low salary for one person. However, we had to work a lot for a relatively small income. This encouraged us to work more hours, and it wasn’t bringing the lifestyle benefits I was looking for.</p>\n<h2>Lifestyle Tip #1: Learn to Specialize</h2>\n<p>In late 2010, it occurred to me that we were building all our websites in WordPress but not advertising ourself as a WordPress company. I wondered whether people were actually searching for WordPress experts and whether this could be a good way to advertise. That may seem obvious in 2018 now WordPress is the world’s biggest web platform – but it was a genuine question back in 2010.</p>\n<p>On a whim, I invested $100 in Google AdWords targeting keywords such as ‘WordPress web design’ and ‘WordPress developer’. Amazingly, we were overwhelmed with enquiries and quickly brought in over $4,000 of business – not a bad return on investment! The work came from medium sized companies who had never used our services before, with higher budgets.</p>\n<blockquote><p>Positioning ourselves as WordPress specialists completely changed the profile of our client base, as well as the budgets we were working with.</p></blockquote>\n<p>This vastly increased our average hourly income, so we were making more money without having to work more hours. Finally, it felt like a proper business with a better work-life balance.</p>\n<h2>Lifestyle Tip #2: Build a (virtual) team</h2>\n<p>The business grew quickly under its new identity as a specialist WordPress agency. By mid-2011, we had more work than we could manage ourselves. I also had a baby and increased my hours on the business while on maternity leave – eventually not returning to my old job. We still needed to increase the company’s income, while working towards the lifestyle we wanted.</p>\n<p>We grew the business to the next level by building a virtual team.</p>\n<blockquote><p>I felt quite strongly that I didn’t want to become a traditional employer with a team of staff, all working together in an office. That would bring me back to the lifestyle I started with!</p></blockquote>\n<p>Instead, I decided to recruit a team of freelancers.</p>\n<p>It took time to find the right freelancers, but the good news is that you can try someone out on a single project with no further commitment. If it doesn’t work out, then you don’t have to work with them again. Through trial and error, I built a team of freelancers with different WordPress-related skills. This increased capacity and allowed us to take on more projects without having to work more hours.</p>\n<p>I was still managing all the projects, but could take a step back and wasn’t directly building the websites. Finally, it felt like a proper WordPress agency.</p>\n<h2>Lifestyle Tip #3: Selling WordPress products</h2>\n<p>By building a distributed team, the business became more and more successful. We were taking on more and more projects, and I was managing all of them. By the time we were running 20 projects at once, I had reached the limits of my capacity and was having to work a lot of hours.</p>\n<p>From 2014-15, I experimented with working with freelance project managers, but had to give up because quality was dropping and our clients were less happy. I realised that with the current business model, I could only continue growing the business by working more and more hours. This wasn’t what I had been working towards!</p>\n<p>It was time for Andy and I to pursue our other dream: selling WordPress products. We’d been talking about this since the early days of the business, but the client projects had kept us so busy that we’d never done anything about it.</p>\n<p>In early 2016, Andy stepped out of the client business and started writing WordPress and WooCommerce plugins to sell. I continued managing client projects for the next 6 months, until the plugins were making enough money to stop taking on new projects and I could spend all my time marketing and supporting the plugins.</p>\n<blockquote><p>Selling WordPress plugins has been very successful because we already knew the market inside out from our years of developing WordPress sites.</p></blockquote>\n<p>We knew where the gaps were and what plugin customers want. We knew where other plugin companies get it wrong, and could learn from their mistakes without making the same mistakes ourselves!</p>\n<p>By launching several plugins, we could listen to what our customers were asking for and build even more. In October 2016, we launched our <a href=\"https://barn2.co.uk/wordpress-plugins/woocommerce-product-table/\">WooCommerce Product Table plugin</a> because so many people asked for a way to list products in a table with add to cart buttons. This immediately became our bestselling plugin and has sold more than all our other plugins combined. Since then, the plugin business has gone from strength to strength.</p>\n<blockquote><p>I have found that selling WordPress products brings a much better work-life balance than providing WordPress services.</p></blockquote>\n<p>We receive (many) plugin support requests every day, but each one takes relatively little time and is less pressured than fixing problems for web design clients. The whole business feels much more relaxed, and I don’t feel guilty about taking time off.</p>\n<p>Between the two of us, we spend a couple of hours a day on plugin support. We continue improving the plugins, marketing, adding features and building the business on top of that. However, all of this is optional and can easily be done while working part-time.</p>\n<h2>Snow Day! Putting It Into Practice</h2>\n<p>Before we finish, I’ll tell you about my week. Today is Friday. At 10.30am on Wednesday, I received a text that my daughter’s school had closed for the rest of the week because of the unusual snow here in the UK.</p>\n<p>The parents with traditional jobs panicked and had to quickly arrange childcare or time-off work. Some of them were stuck in cars on snowed-in roads as they tried to return to the village. No one could get to work the next day. A lot of people lost a lot of money.</p>\n<p>Andy and I simply stopped work, put on our snow gear, walked the 10 minutes to the school, and then went sledging. Since then, we’ve been sharing the childcare in between responding to plugin support requests (and writing this article!). We’ve had 37 plugin sales on our website since the school closed, even though we’ve been working less hours than usual. Now, that’s what I’ve been working towards!</p>\n<h2>Conclusion</h2>\n<p>I’ve worked hard and have been extremely committed to building Barn2 Media. However, this has always been on the condition that it wouldn’t sacrifice my lifestyle goals.</p>\n<blockquote><p>For me, the ideal business is measured against a combination of financial success and lifestyle benefits. If the founders are working 70 hours a week to keep the money coming in, then it’s not a successful business!</p></blockquote>\n<p>You can do the same. Design a WordPress business that will give you the lifestyle you want, as well as making money. If you love working with people, build a team and provide WordPress services (WordPress design and development are good for this). If you want to travel, choose work that you can do remotely from different time zones (WordPress products are good for this). Plan your business around what matters to you.</p>\n<p>WordPress is such a huge ecosystem that it comes with many opportunities to build a successful business. With a bit of extra thought and planning, you can build a WordPress business that is successful AND lets you life the lifestyle you’ve always wanted. That is the true measure of success.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Building A New Life\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Building%20A%20New%20Life&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Building A New Life\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-new-life%2F&title=Building+A+New+Life\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Building A New Life\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/building-a-new-life/&media=https://heropress.com/wp-content/uploads/2018/03/030718-150x150.jpg&description=Building A New Life\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Building A New Life\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/building-a-new-life/\" title=\"Building A New Life\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/building-a-new-life/\">Building A New Life</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 07 Mar 2018 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Katie Keith\";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:63:\"WPTavern: WordPress Now Used on 30% of the Top 10 Million Sites\";s:7:\"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:29:\"https://wptavern.com/?p=78214\";s:7:\"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:73:\"https://wptavern.com/wordpress-now-used-on-30-of-the-top-10-million-sites\";s: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:2379:\"<p><a href=\"https://w3techs.com/\">W3Techs</a>, a survey company that monitors usage of various web technologies, <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">is reporting</a> that WordPress has reached 30% usage or 60.2% market share of all the websites whose content management systems it knows about. This represents a 0.6% increase since February 1st and 13.1% over the last seven years.</p>\n<p>Just five days ago, Matt Mullenweg, co-creator of WordPress, brought attention to the approaching milestone.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"und\" dir=\"ltr\">29.9%…</p>\n<p>— Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/969378724305973249?ref_src=twsrc%5Etfw\">March 2, 2018</a></p></blockquote>\n<p></p>\n<p>When it comes to WordPress’ market share numbers, W3Techs is the most cited source. While some say that <a href=\"https://thenextweb.com/dd/2018/03/05/30-of-the-web-now-runs-on-wordpress/\">WordPress now powers 30% of the web</a>, <a href=\"https://w3techs.com/technologies\">technically</a>, it is used by 30% of the top 10 million sites based on traffic according to <a href=\"https://www.alexa.com/\">Alexa</a>. All sub-domains on WordPress.com and WordPress.org count as one site.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">All the subdomains of <a href=\"https://t.co/37ETZ4JMFf\">https://t.co/37ETZ4JMFf</a> and <a href=\"https://t.co/YtO6Msd90U\">https://t.co/YtO6Msd90U</a> do indeed only count as one site. Sites that are hosted by Automattic under their own domain do count if they have significant traffic on that domain. These are 0.4%, 29.5% are hosted somewhere else.</p>\n<p>— W3Techs (@W3Techs) <a href=\"https://twitter.com/W3Techs/status/969523570530451456?ref_src=twsrc%5Etfw\">March 2, 2018</a></p></blockquote>\n<p></p>\n<p>The internet is larger than the top 10 million sites. According to <a href=\"http://www.internetlivestats.com/total-number-of-websites/\">Internet live stats</a>, there are close to 2 billion sites on the internet although a majority of them are inactive.</p>\n<p>W3Techs’ numbers show that WordPress’ use is growing on sites that receive a lot of traffic and shows no signs of slowing down as it makes <a href=\"https://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share\">its way towards 50%</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, 06 Mar 2018 10:22: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: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: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:111:\"WPTavern: New Plugin Makes WordPress Core Updates More Secure by Requiring Cryptographic Signature Verification\";s:7:\"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:29:\"https://wptavern.com/?p=78171\";s:7:\"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:122:\"https://wptavern.com/new-plugin-makes-wordpress-core-updates-more-secure-by-requiring-cryptographic-signature-verification\";s: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:4278:\"<p>In 2016, WordFence <a href=\"https://www.wordfence.com/blog/2016/11/hacking-27-web-via-wordpress-auto-update/\">published their findings</a> of a vulnerability that could have compromised the servers that are used to send out WordPress updates. It turned out to be a complex, obscure vulnerability that ignited a conversation surrounding the security of api.wordpress.org and what could happen if the servers were compromised.</p>\n<p>One idea that was brought forth is to digitally sign WordPress core, theme, and plugin updates. For at least five years, <a href=\"https://core.trac.wordpress.org/ticket/25052\">a trac ticket</a> has laid semi-dormant with this idea in mind.</p>\n<p>Fifteen months ago, Scott Arciszewski, Chief Development Officer for Paragon Initiative Enterprises, who is most widely known for his <a href=\"https://paragonie.com/blog/2017/02/cryptographically-secure-php-development\">cryptography engineering work</a>, <a href=\"https://web.archive.org/web/20170214062414/https://medium.com/@CiPHPerCoder/stopmullware-on-the-security-of-27-of-the-websites-on-the-internet-298a7e5b6871\">published an article</a> that has since been taken down, expressing his strong desire for Matt Mullenweg to make secure cryptographic signatures a priority. Mullenweg responded to his post with <a href=\"https://medium.com/@photomatt/wordpress-and-update-signing-51501213e1\">one of his own</a> stating that although WordPress update signing is important, it’s not a high priority.</p>\n<p>“We will at some point; as said above it’s a good idea — can’t hurt, might help,” Mullenweg responded when asked if WordPress was ever going to do update signing. “There are, however, some more important security issues in front of it, that impact millions of sites in the real world, so we are prioritizing those issues above a nice-to-have, defense in-depth effort.”</p>\n<h2>Eric Mann Launches Secure WordPress Updates Plugin</h2>\n<p>While WordPress does not digitally sign updates, Eric Mann, founder of <a href=\"https://displace.tech/\">Displace Technologies, LLC</a>, has <a href=\"https://ttmm.io/tech/introducing-secure-updates-for-wordpress/\">created and released</a> a new plugin that adds code signing to WordPress core updates. It’s called DGXPCO or <a href=\"https://wordpress.org/plugins/dgxpco/\">Digital Guarantees for eXplicitly Permitted Core Operations</a>. You’ll find it on the plugin directory by searching for DGXPCO.</p>\n<p>When installed and activated, the plugin integrates with the core updater and requires that any core update must have a valid signature before it can be installed. The signature provides a secondary source of truth that confirms the integrity of the files. The signatures are created using a Ed25519 public/private keypair and <a href=\"https://github.com/jedisct1/libsodium\">Libsodium</a> to sign the files’ contents.</p>\n<p>Mann keeps the private key offline and has published the public key online. The public key will not change and if a core update is signed by a different key, it is a red flag and the update should be avoided. In addition, commits made to the <a href=\"https://github.com/DisplaceTech/release-hashes\">release hashes repository</a> on GitHub are signed with <a href=\"https://keybase.io/eamann\">Mann’s PGP key</a> to verify that he is the one who added new code.</p>\n<p>Mann admits that the solution is not fool-proof and is working towards improving it. In future versions, the plugin will only notify the user of a WordPress core update if a digital signature is available. Plugins and themes are on the roadmap as well with the ability to opt-in.</p>\n<p>Although he is the only person allowed to digitally sign packages, the model is not sustainable.</p>\n<p>“As I prove out the update system, I’ll also begin adding sets of public keys that are scoped to specific sets of packages,” Mann said. “This will, for example, allow me to whitelist a small number of trusted developers to also sign core packages. It might also empower plugin developers to sign their own releases (but not anyone else’s).”</p>\n<p>Mann is seeking feedback and is hoping the project provides evidence that something like it can be added to WordPress core.</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, 03 Mar 2018 00:56: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: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:75:\"Post Status: Marketing and positioning WordPress products — Draft podcast\";s:7:\"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://poststatus.com/?p=44157\";s:7:\"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:78:\"https://poststatus.com/marketing-positioning-wordpress-products-draft-podcast/\";s: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:2776:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>This week BK and BR discuss a number of different aspects surrounding marketing and selling WordPress products and services. The conversation flows from selling benefits vs features, to social proof, to marketing and conversion funnels, to understanding and reacting to the problem space, to customer support, and many things in between. Whether you’re already selling products or services, about to sell something, or routinely buy things, there’s likely something for you in this episode.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li>Krogs’ <a href=\"https://wordpress.tv/2015/12/13/brian-krogsgard-how-to-build-a-compelling-wordpress-product-or-service\">WCUS funnel talk</a>: and <a href=\"https://cdn.poststatus.com/wp-content/uploads/2015/12/krogsgard-wc-us-2015-presentation.pdf\">slides</a></li>\n<li><a href=\"https://wpsessions.com/sessions/understand-price-anchoring/\">Price Anchoring session</a> on WPS</li>\n<li><a href=\"https://poststatus.com/marketing-wordpress-products/\">Tips for marketing WordPress products</a></li>\n<li><a href=\"https://poststatus.com/resources/marketing-success-wordpress-case-study-siteground/\">SiteGround’s Publish presentation</a></li>\n<li><a href=\"https://www.ted.com/talks/barry_schwartz_on_the_paradox_of_choice\">TED talk on decision fatigue and the paradox of choice</a> (also good “<a href=\"https://www.ted.com/talks/dan_gilbert_researches_happiness\">Why we make bad decisions</a>”)</li>\n<li><a href=\"https://stripe.com/atlas/guides/saas-pricing\">Stripe Atlas guide to SaaS pricing</a></li>\n</ul>\n<h3>Sponsor: SiteGround</h3>\n<p><a href=\"https://www.siteground.com/wordpress-hosting.htm/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">SiteGround</a> is engineered for speed, built for security, and crafted for WordPress. They offer feature-rich managed WordPress hosting with premium support, and are officially recommended by WordPress.org. Check out <a href=\"https://siteground.com/poststatus/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">SiteGround’s website</a> for a special deal for Post Status listeners, and thanks to SiteGround for being a Post Status partner.</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, 02 Mar 2018 20:24: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:14:\"Katie Richards\";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:77:\"WPTavern: 4,500 Plugins Need Your Help in Determining Gutenberg Compatibility\";s:7:\"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:29:\"https://wptavern.com/?p=78194\";s:7:\"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:\"https://wptavern.com/4500-plugins-need-your-help-in-determining-gutenberg-compatibility\";s: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:2608:\"<p>One of the keys to a successful roll out of Gutenberg is plugin compatibility. Without it, users will experience unnecessary frustration and hamper enthusiasm of the new editor. In an effort to figure out what plugins are already compatible with Gutenberg, Daniel Bachhuber <a href=\"https://make.wordpress.org/core/2018/03/01/introducing-the-gutenberg-plugin-compatibility-database/\">has created</a> a <a href=\"https://plugincompat.danielbachhuber.com/\">Gutenberg Plugin Compatibility Database</a>.</p>\n<img />Gutenberg Plugin Compatibility Database\n<p>The database contains 5,000 plugins that represent more than 90% of the total active install count. Plugins are compatible with Gutenberg if they meet the following two requirements.</p>\n<ul>\n<li>A WordPress user can perform the same functional task with Gutenberg active. For instance, if the plugin includes an ‘Add Media’ button, it’s considered Gutenberg-compatible when it has a block registered for the Gutenberg inserter.</li>\n<li>There are no (obvious) errors when the WordPress plugin is active alongside Gutenberg.</li>\n</ul>\n<p>In order to participate in the testing process, you’ll need to <a href=\"https://plugincompat.danielbachhuber.com/#account-details/\">register an account</a> on the site. Once approved, testers will be able to create a fresh sandboxed WordPress install on the site and test randomly selected plugins. After a manual review is complete, plugins will be marked as <code>is_compatible=yes</code> or <code>is_compatible=no</code>.</p>\n<p>Some plugins are already classified with <code>is_compatible=likely_yes</code> or <code>is_compatible=likely_</code>. As reports are completed, two pie charts that display compatibility results at the bottom of the site update automatically.</p>\n<p>Bachhuber estimates that if each plugin takes about a minute to test, they’ll need roughly 75 person-hours to get through the remaining 4,500 plugins in the database. This project is a great opportunity for individuals and businesses to contribute back to WordPress via the <a href=\"https://ma.tt/2014/09/five-for-the-future/\">Five for The Future initiative</a>.</p>\n<p>Ideal testers are those who can review dozens of plugins, but even reviewing a few will help the project. If you’re interested in contributing, check out the project’s <a href=\"https://github.com/danielbachhuber/gutenberg-plugin-compatibility#gutenberg-plugin-compatibility\">GitHub page</a> to learn what’s involved in the testing process. Alternatively, visitors can watch the following YouTube video.</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:\"Fri, 02 Mar 2018 00:57: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: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:47:\"Dev Blog: The Month in WordPress: February 2018\";s:7:\"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:\"https://wordpress.org/news/?p=5613\";s:7:\"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:72:\"https://wordpress.org/news/2018/03/the-month-in-wordpress-february-2018/\";s: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:5935:\"<p>Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress 4.9.3 & 4.9.4</h2>\n\n<p>Early in the month, <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">version 4.9.3 of WordPress was released</a>, including a number of important bug fixes. Unfortunately it introduced a bug that prevented many sites from automatically updating to future releases. To remedy this issue, <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/\">version 4.9.4 was released</a> the following day requiring many people to manually update their sites.</p>\n\n<p>While this kind of issue is always regrettable, the good thing is that it was fixed quickly, and that not all sites had updated to 4.9.3 yet, which meant they bypassed the bug in that version.</p>\n\n<p>You can find out more technical information about this issue <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">on the Core development blog</a>.</p>\n\n<h2>The WordCamp Incubator is Back</h2>\n\n<p>In 2016, the Global Community Team ran an experimental program to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event. This program was dubbed the WordCamp Incubator, and it was so successful in the three cities where it ran that <a href=\"https://wordpress.org/news/2018/02/wordcamp-incubator-2-0/\">the program is back for 2018</a>.</p>\n\n<p>Right now, the Community Team is looking for cities to be a part of this year’s incubator by <a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application\">taking applications</a>. Additionally, each incubator community will need an experienced WordCamp organizer to assist them as a co-lead organizer for their event — if that sounds interesting to you, then you can <a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-co-lead-application\">fill in the application form for co-leads</a>.</p>\n\n<p>You can find out further information about the WordCamp Incubator <a href=\"https://make.wordpress.org/community/2018/02/19/wordcamp-incubator-program-2018-announcement/\">on the Community Team blog</a>.</p>\n\n<h2>WordPress Meetup Roundtables scheduled for March</h2>\n\n<p>In order to assist local WordPress meetup organizers with running their meetup groups, some members of the Community Team have organized <a href=\"https://make.wordpress.org/community/2018/02/23/wordpress-meetup-roundtables-scheduled-for-march/\">weekly meetup roundtable discussions through the month of March</a>.</p>\n\n<p>These will be run as video chats at 16:00 UTC every Wednesday this month and will be a great place for meetup organizers to come together and help each other out with practical ideas and advice.</p>\n\n<p>If you are not already in the WordPress meetup program and would like to join, you can find out more information in <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the WordPress Meetup Organizer Handbook</a>.</p>\n\n<h2>GDPR Compliance in WordPress Core</h2>\n\n<p>The General Data Protection Regulation (GDPR) is an upcoming regulation that will affect all online services across Europe. In order to prepare for this, a working group has been formed to make sure that WordPress is compliant with the GDPR regulations.</p>\n\n<p>Aside from the fact that this will be a requirement for the project going forward, it will also have an important and significant impact on the privacy and security of WordPress as a whole. The working group has posted <a href=\"https://make.wordpress.org/core/2018/02/19/proposed-roadmap-tools-for-gdpr-compliance/\">their proposed roadmap</a> for this project and it looks very promising.</p>\n\n<p>To get involved in building WordPress Core, jump into the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n <li>WPShout published <a href=\"https://wpshout.com/complete-guide-wordpress-security/\">a thorough guide to WordPress security</a>.</li>\n <li>The Community Team has published interesting statistics from the WordCamp program in <a href=\"https://make.wordpress.org/community/2018/02/27/wordcamps-in-2016/\">2016</a> and <a href=\"https://make.wordpress.org/community/2018/02/28/wordcamps-in-2017/\">2017</a>.</li>\n <li><a href=\"https://make.wordpress.org/community/2018/02/15/potential-addition-of-a-new-onboarding-team/\">An intriguing proposal has been made</a> for a new ‘Onboarding’ team to be started in the WordPress project.</li>\n <li>The new editing experience for WordPress, named Gutenberg, continues to be actively developed with <a href=\"https://make.wordpress.org/core/2018/02/16/whats-new-in-gutenberg-16th-february/\">a feature-packed release</a> this past month.</li>\n <li>The Advanced WordPress Facebook group <a href=\"https://www.youtube.com/watch?v=4vS_jR5-nIo\">held an interview with WordPress co-founder, Matt Mullenweg</a> about the Gutenberg project.</li>\n <li><a href=\"https://make.wordpress.org/meta/2018/02/27/two-factor-authentication-on-wp-org/\">Two factor authentication is on its way to the WordPress.org network</a> — this will be a great improvement to the overall security of the project.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></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, 01 Mar 2018 08:41:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";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:83:\"WPTavern: WPWeekly Episode 306 – AMP, GDPR, and Brewing Beer At The Boss’ House\";s:7:\"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:58:\"https://wptavern.com?p=78185&preview=true&preview_id=78185\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/wpweekly-episode-306-amp-gdpr-and-brewing-beer-at-the-boss-house\";s: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:1707:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> joins me live from Hutchinson, KS, to talk about the news of the week. We started off the show discussing the GDPR and the number of things that need to be considered surrounding the right to be forgotten.</p>\n<p>We also have a lengthy conversation about AMP, the open web, and Automattic’s relationship with Google. Last but not least, we discussed Automattic’s recent hiring of Kinsey Wilson to be president of the company.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/matt-cromwell-hosts-matt-mullenweg-in-qa-gutenberg-interview\">Matt Cromwell Hosts Matt Mullenweg in Q&A Gutenberg Interview</a><br />\n<a href=\"https://wptavern.com/new-team-forms-to-facilitate-gdpr-compliance-in-wordpress-core\">New Team Forms to Facilitate GDPR Compliance in WordPress Core</a><br />\n<a href=\"https://www.poynter.org/news/one-time-npr-and-nyt-digital-chief-new-adventure-wordpress\">For one-time NPR and NYT digital chief, a new adventure: WordPress</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 7th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #306:</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:\"Thu, 01 Mar 2018 02:19: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:\"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:33;a:6:{s:4:\"data\";s:11:\"\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:38:\"HeroPress: Changes Coming To HeroPress\";s:7:\"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:29:\"https://heropress.com/?p=2471\";s:7:\"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:115:\"https://heropress.com/changes-coming-heropress/#utm_source=rss&utm_medium=rss&utm_campaign=changes-coming-heropress\";s: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:4198:\"<p>Over the last few months, I’ve been having some deep talks with my <a href=\"https://twitter.com/mysweetcate\">HeroPress partner</a> about what the future of HeroPress looks like. We came up with some changes that feel deeply satisfying. Changes we think should help HeroPress, help readers, and help us as content producers. So here we go.</p>\n<h3>Financial Changes</h3>\n<p>At various times in the past people have told me that the time I spend on HeroPress is worth compensation. When I first started it as a blog, I had no intention of getting money from it. However, being compensated for my time helped ease the burden on my family.</p>\n<blockquote><p>With that in mind, last fall I test-drove a donation page based on interest from some in the community.</p></blockquote>\n<p>It was a good idea, and I’m thankful for the support I received, but for now it’s not the right path.</p>\n<p>So, I’ve pulled the donation page from the site and am no longer accepting site sponsors. You’ll notice I do have a Sponsorship page, but it lists organizations that have made material contributions like hosting, plugins, etc.</p>\n<h3>Content Changes</h3>\n<p>We’ve been publishing every Wednesday for several years now. Over time, readership has climbed quite a bit. That’s great, but it means that many current readers have never seen the earlier content, which remains quite evergreen.</p>\n<blockquote><p>To address this, we’re going to do new HeroPress essays once a month. The other weeks of the month will be replays of earlier essays.</p></blockquote>\n<p>This allows for some breathing room in gathering new contributors and brings back some really great content that shouldn’t be forgotten.</p>\n<p>It also opens up my time to explore the community more. To see if there are new ways that people, particularly on the fringe, can be helped. Sharing stories is useful, but are there other opportunities and needs we’re missing?</p>\n<h3>The Future</h3>\n<p>So HeroPress will continue. I still love doing it. At various times we’ve discussed making it bigger, doing grand things. But not now. For now we’re going to let it grow organically and continue letting it serve its purpose: to give voice to WordPress stories, to make them known, to inspire.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Changes Coming To HeroPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Changes%20Coming%20To%20HeroPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fchanges-coming-heropress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Changes Coming To HeroPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fchanges-coming-heropress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fchanges-coming-heropress%2F&title=Changes+Coming+To+HeroPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Changes Coming To HeroPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/changes-coming-heropress/&media=https://heropress.com/wp-content/plugins/rtsocial/images/default-pinterest.png&description=Changes Coming To HeroPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Changes Coming To HeroPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/changes-coming-heropress/\" title=\"Changes Coming To HeroPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/changes-coming-heropress/\">Changes Coming To HeroPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 28 Feb 2018 12:00: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:\"\";}}}}}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:72:\"WPTavern: New Team Forms to Facilitate GDPR Compliance in WordPress Core\";s:7:\"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:29:\"https://wptavern.com/?p=78149\";s:7:\"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:83:\"https://wptavern.com/new-team-forms-to-facilitate-gdpr-compliance-in-wordpress-core\";s: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:6200:\"<p>As May 25th, the enforcement date for the <a href=\"https://www.eugdpr.org/\">General Data Protection Regulation</a> (GDPR) draws near, individuals and businesses are scrambling to make sure they’re compliant. I’ve read a number of blog posts throughout the WordPress community explaining the GDPR and what needs to be done for compliance and it’s a tough thing to grasp.</p>\n<p>The EU GDPR was designed to harmonize data privacy laws across Europe, protect and empower European citizens data privacy, and reshape the way organizations across the region approach data privacy. In reading the regulation and various blog posts, the terminology makes it appear that the changes are geared towards large, international businesses that process personal data.</p>\n<p>However, <a href=\"https://www.smashingmagazine.com/2018/02/gdpr-for-web-developers/\">according to Heather Burns</a>, a digital law specialist in Glasgow, Scotland, the GDPR affects sites large and small.</p>\n<blockquote><p>GDPR applies to all businesses, organizations, sectors, situations, and scenarios, regardless of a business’s size, head count, or financial turnover. A small app studio is every bit as beholden to these rules as a large corporation.</p></blockquote>\n<p>Determining if your site needs to be compliant and how to accomplish it can be overwhelming. If you do business in Europe or collect data from European users, you must protect that data in accordance with the GDPR as if you were in Europe. For example, if you operate a blog with a contact form that saves entries to the database from people who live in Europe, you must make your site GDPR compliant.</p>\n<p>There are a lot of aspects to the GDPR and while an excerpt can not fully explain it at a glance, there are a few themes that stick out to me.</p>\n<ul>\n<li>Be upfront and concise about what data is stored, sent, and used on the site or form.</li>\n<li>Give the user a chance to consent without automatically opting them in.</li>\n<li>Collect the least amount of data possible for legitimate business purposes.</li>\n<li>Provide a way for users to download or access their data and remove it.</li>\n</ul>\n<p>Many of these are common sense practices that are not implemented on many sites, WP Tavern included. How often do you visit a <a href=\"https://wptavern.com/contact-me\">site’s contact form</a> and see an explanation as to why those fields are required, where the data is stored, where it goes, and what is done with it? This is something I’ll be working on in the next few weeks.</p>\n<h2>Making WordPress Core GDPR Compliant</h2>\n<p>Earlier <a href=\"https://make.wordpress.org/core/2018/02/13/gdpr-compliance-agenda-february-14/\">this month</a>, a number of volunteers gathered to discuss GDPR compliance in WordPress core. The meeting took place in a newly created channel #gdpr-compliance that’s accessible to anyone with a <a href=\"https://make.wordpress.org/chat/\">SlackHQ account</a>.</p>\n<p>The team created a <a href=\"https://make.wordpress.org/core/2018/02/19/proposed-roadmap-tools-for-gdpr-compliance/\">proposed roadmap</a> to add privacy tools to core. The plan includes the following ideas:</p>\n<ul>\n<li>Add notices for registered users and commenters on what data is collected in core by default and explain why.</li>\n<li>Create guidelines for plugins on how to become GDPR compliant.</li>\n<li>Create and add tools to facilitate compliance and privacy in general.</li>\n<li>Add documentation and help for site owners to learn how to use these tools.</li>\n</ul>\n<p><a href=\"https://wordpress.slack.com/archives/C9695RJBW/p1519227959000760\">Earlier today</a>, <a href=\"https://make.wordpress.org/core/2018/02/27/gdpr-compliance-chat-recap-february-21st/\">the team met</a> and created a <a href=\"https://github.com/gdpr-compliance/info\">GitHub folder</a> that houses the roadmap, knowledge base, trac ticket list, and other items associated with the project. There was also some discussion on whether the interface provided by the <a href=\"https://www.gdprwp.com/\">GDPR for WordPress project</a> is a good foundation for core and plugins to report personal data. The GDPR Compliance Slack channel is also a good place to ask questions and discuss data privacy in general.</p>\n<p>Popular form plugins such as <a href=\"https://docs.gravityforms.com/wordpress-gravity-forms-and-gdpr-compliance/\">GravityForms</a> and <a href=\"https://ninjaforms.com/gdpr-compliance-wordpress-forms/\">NinjaForms</a> have documentation available that explains GDPR compliance and how it applies to their products. For those who use the Contact Form module in Jetpack which <a href=\"https://github.com/Automattic/jetpack/issues/8430\">saves entries to the database by default</a>, you’ll need to wait for further updates. <a href=\"https://woocommerce.com/2017/12/gdpr-compliance-woocommerce/\">WooCommerce</a> and <a href=\"https://en.support.wordpress.com/automattic-gdpr/\">Automattic</a> have announced that they expect their products will be GDPR compliant by the time it goes into effect later this year.</p>\n<h2>GDPR Resources</h2>\n<p>If you’re like me, reading about the GDPR and its policies can make your head spin. It’s important to keep in mind that at the heart of the GDPR are common sense behaviors for handling personal data. If you’d like to learn more about the GDPR, check out the following resources.</p>\n<ul>\n<li><a href=\"https://www.smashingmagazine.com/2018/02/gdpr-for-web-developers/\">How GDPR Will Change The Way You Develop</a></li>\n<li><a href=\"https://wordpress.tv/2016/11/01/heather-burns-get-to-grips-with-gdpr/\">Heather Burns: Get To Grips With GDPR</a></li>\n<li><a href=\"https://webdevlaw.uk/data-protection-gdpr/\">Data protection (GDPR)</a></li>\n<li><a href=\"https://wptavern.com/wpweekly-episode-298-gdpr-user-privacy-and-more-with-heather-burns\">WPWeekly Episode 298 – GDPR, User Privacy, and More With Heather Burns</a></li>\n<li><a href=\"https://www.eugdpr.org/gdpr-faqs.html\">GDPR FAQs</a></li>\n<li><a href=\"https://premium.wpmudev.org/blog/gdpr-compliance/\">Is Your Website GDPR Compliant? How to Get Ready for the General Data Protection Regulations</a></li>\n</ul>\";s: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, 27 Feb 2018 23:20: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: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: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:75:\"WPTavern: Matt Cromwell Hosts Matt Mullenweg in Q&A Gutenberg Interview\";s:7:\"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:29:\"https://wptavern.com/?p=78166\";s:7:\"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:81:\"https://wptavern.com/matt-cromwell-hosts-matt-mullenweg-in-qa-gutenberg-interview\";s: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:2903:\"<p>Matt Cromwell, Head of Support and Community Outreach for <a href=\"https://givewp.com/\">GiveWP</a> and an administrator for the <a href=\"https://www.facebook.com/groups/advancedwp/\">Advanced WordPress Facebook group</a>, hosted a question and answer session about Gutenberg with Matt Mullenweg earlier today. The interview concludes the <a href=\"http://www.advancedwp.org/awp-gutenberg-interview-series/\">Advanced WordPress Gutenberg interview series</a> that includes, <a href=\"https://wordpress.tv/2018/02/06/awp-gutenberg-interview-series-with-joost-de-valk/\">Joost de Valk</a>, <a href=\"https://wordpress.tv/2018/02/18/awp-gutenberg-interview-series-with-ahmad-awais/\">Ahmad Awais</a>, and <a href=\"https://youtu.be/ic_du_lsbLE\">Tammie Lister</a>.</p>\n<p>Mullenweg began the session by explaining why there is a concerted effort to improve the editor. “It’s really almost any user test that you watch,” he said. “Both watching people brand new to WordPress and those with years of experience on how they used the editor. It became obvious that we could make something more accessible to new users, but also, a lot more powerful for developers.”</p>\n<p>With regards to a release date, Mullenweg confirmed that Gutenberg will ship when it’s ready. Later in the interview, Mullenweg was asked if he could provide a more concrete answer.</p>\n<p>“For those who want a concrete date, we will have one or two orders of magnitude more users of Gutenberg in April,” he responded. “That doesn’t mean necessarily a 5.0 release, but it does mean that if you’re planning on aiming for something where a lot of users will be interacting with Gutenberg, aim for April.”</p>\n<p>While the project’s name is Gutenberg, some developers have <a href=\"https://github.com/WordPress/gutenberg/issues/4681\">expressed concerns</a> on how the name will be deprecated if at all once it’s merged into core. There are a number of educational resources, products, and tool kits referencing Gutenberg that could be a source of confusion once it’s merged into core and referred to as the editor.</p>\n<p>Mullenweg was asked if the Gutenberg name will be deprecated. “We’ll see,” he replied. “I don’t think it’s the most important thing to figure out right now. We’re tackling some much bigger issues. If the plugin is useful, we’ll keep it around for beta testing, if not, we’ll have it turn itself off.”</p>\n<p>Mullenweg concluded the interview thanking the <a href=\"https://www.facebook.com/groups/advancedwp/\">Advanced WordPress Facebook</a> group for the passion and discussions shared by members. The group has more than 30K members, is free to join, well maintained, and often filled with interesting topics. You can watch the interview in its entirety below.</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:\"Mon, 26 Feb 2018 23:32: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: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:67:\"Post Status: Observations on a maturing ecosystem — Draft podcast\";s:7:\"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://poststatus.com/?p=43914\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://poststatus.com/observations-maturing-ecosystem-draft-podcast/\";s: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:1743:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, the Brians chat about the steady change that has played out in the WordPress ecosystem throughout the past decade and speculate about what is still to come. One aspect they explore rather deeply is the future trajectory of a website’s purpose and the role WordPress has to play in this transition. Plus, don’t miss their conversation about the new WordPress.com president and Google’s move to hire WordPress talent.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://memos.blog/2018/02/15/kinsey-wilson-named-president-of-wordpress-com/\">New WordPress.com President announcement</a></li>\n<li><a href=\"https://medinathoughts.com/2018/01/29/wordpress-google/\">Google’s WordPress job opportunity</a></li>\n<li><a href=\"https://micro.blog/\">micro.blog</a></li>\n</ul>\n<h3>Sponsor: SearchWP</h3>\n<p>SearchWP makes WordPress search better. Instantly improve your site search without writing a line of code! SearchWP enables custom algorithms, searching custom fields, product data, and much more. Improve your site’s search today with our partner, <a href=\"https://searchwp.com\">SearchWP</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:\"Sun, 25 Feb 2018 12:59: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";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:77:\"WPTavern: WordCamp Orange County Plugin-A-Palooza First Place Prize is $3,000\";s:7:\"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:29:\"https://wptavern.com/?p=78153\";s:7:\"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:86:\"https://wptavern.com/wordcamp-orange-county-plugin-a-palooza-first-place-prize-is-3000\";s: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:2009:\"<p><a href=\"https://2018.oc.wordcamp.org/\">WordCamp Orange County</a>, CA, 2018 will take place June 9-10. In addition to the regular WordCamp format of speakers sharing their knowledge, there is also a mini-event called Plugin-A-Palooza. This year marks the fourth contest where plugin authors will compete for one of three prizes.</p>\n<ul>\n<li>First Place – <strong>$3,000</strong> cash and 1 Sucuri Business (VIP) license</li>\n<li>Second Place – <strong>$1,500</strong> cash and 1 Sucuri Business (VIP) license</li>\n<li>Third Place – <strong>$500</strong> cash</li>\n</ul>\n<p>Teams will be judged live based on the following criteria:</p>\n<ul>\n<li>Originality</li>\n<li>User Experience/User Interface</li>\n<li>Code Quality</li>\n<li>Presentation of the plugin on WordPress.org.</li>\n</ul>\n<p>Teams can have up to three participants, are required to build their own plugin, and upload it to the WordPress plugin directory by May 18th. Teams will present their plugins to the judges and audience on June 10th.</p>\n<p>Previous winners and plugins include:</p>\n<ul>\n<li>2015 Devin Walker- <a href=\"https://wordpress.org/plugins/wp-rollback/\">WP Rollback</a></li>\n<li>2016 Robert Gillmer – <a href=\"https://wordpress.org/plugins/wp-documentor/\">WP Documentor</a></li>\n<li>2017 Natalie MacLees – <a href=\"https://wordpress.org/plugins/simple-event-listing/\">Simple Event Listing</a></li>\n</ul>\n<p>Bridget Willard, WordCamp Orange County organizer, says the event encourages innovation and personal development which are important parts of WordCamps. “The first plugin that won was WPRollback by WordImpress,” she said. “It’s widely used in the community now. We’d love to see other camps doing this.”</p>\n<p>If you’re interested in participating in Plugin-A-Palooza at WordCamp Orange County this year, you’ll need to fill out this <a href=\"https://goo.gl/forms/CpDCsXQRqNI0cil23\">entry form</a>. The deadline for submissions is March 5th.</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, 23 Feb 2018 22: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: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:32:\"Dev Blog: WordCamp Incubator 2.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5577\";s:7:\"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/news/2018/02/wordcamp-incubator-2-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2449:\"<p><a href=\"https://central.wordcamp.org/\">WordCamps</a> are informal, community-organized events that are put together by a team of local WordPress users who have a passion for growing their communities. They are born out of active WordPress meetup groups that meet regularly and are able to host an annual WordCamp event. This has worked very well in many communities, with over 120 WordCamps being hosted around the world in 2017.<br /></p>\n\n<p>Sometimes though, passionate and enthusiastic community members can’t pull together enough people in their community to make a WordCamp happen. To address this, we introduced <a href=\"https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/\">the WordCamp Incubator program</a> in 2016.<br /></p>\n\n<p>The goal of the incubator program is <strong>to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event.</strong> In 2016, members of <a href=\"https://make.wordpress.org/community/\">the global community team</a> worked with volunteers in three cities — Denpasar, Harare and Medellín — giving direct, hands-on assistance in making local WordCamps possible. All three of these WordCamp incubators <a href=\"https://make.wordpress.org/community/2017/06/30/wordcamp-incubator-report/\">were a great success</a>, so we're bringing the incubator program back for 2018.<br /></p>\n\n<p>Where should the next WordCamp incubators be? If you have always wanted a WordCamp in your city but haven’t been able to get a community started, this is a great opportunity. We will be taking applications for the next few weeks, then will get in touch with everyone who applied to discuss the possibilities. We will announce the chosen cities by the end of March.<br /></p>\n\n<p><strong>To apply, </strong><a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application\"><strong>fill in the application</strong></a><strong> by March 15, 2018.</strong> You don’t need to have any specific information handy, it’s just a form to let us know you’re interested. You can apply to nominate your city even if you don’t want to be the main organizer, but for this to work well we will need local liaisons and volunteers, so please only nominate cities where you live or work so that we have at least one local connection to begin.<br /></p>\n\n<p>We're looking forward to hearing from you!<br /></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 Feb 2018 22:53:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";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:48:\"HeroPress: How To Build A Company With 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:56:\"https://heropress.com/?post_type=heropress-essays&p=2465\";s:7:\"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:120:\"https://heropress.com/essays/build-company-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=build-company-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:16947:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/02/022118-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: If you keep showing up, you\'d be surprised what happens.\" />.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }\n<div class=\"embed-container\"></div>\n<p> </p>\n<h4>Full text of the above video</h4>\n<p>Hey, y’all! Thanks for inviting me to come share my story on HeroPress. I’m so excited to be able to talk a little bit to the HeroPress community.</p>\n<p>So, and I’m doing a video blog or vlog because this is what I do; I’m a YouTube person. I create YouTube videos every single Wednesday for what I call WordPress Wednesday to help you improve your online marketing inside of the WordPress world. So I’m used to doing videos, and I asked if I could do my HeroPress story in this format; and they said go for it, so I’m excited to talk to you at least in a face-to-face scenario.</p>\n<p>I’m going to share a little bit of my story and tell you how WordPress basically became my avenue for becoming a millionaire in just five short years.</p>\n<h3>The Beginning</h3>\n<p>So in 1998, I created my very first ever HTML website. My dad was actually doing websites at the time, and I needed a website for my band because that’s what I wanted to be is a rockstar; so I learned how to build a website, kind of, under his training and a little bit of self-taught stuff and had a lot of fun doing it that way in 1998.</p>\n<p>And then in 2005, I started hearing about WordPress; but in 2008, as I was freelancing around, a client asked me to build him a website. And they said, “hey, Kori, can you, can you build me a website, but we absolutely have to have it on WordPress?” I was like, sure, no problem; straight to Google, “how do you build a WordPress website”, you know. And over the weekend I pretty much taught myself how to build out a WordPress website, and I loved it.</p>\n<p>My mind was absolutely blown when I saw the drag and drop options inside of menus to create dropdowns, and a form builder; I was just blown away. So those of you who have struggled in the HTML CSS world, you know the magic or the majesty, if you will even, of WordPress and those environments and how easy it makes it. So when I saw that, I really just thought, oh my goodness, this is a full-circle moment for me.</p>\n<blockquote><p>I really want to use WordPress now from here on forward.</p></blockquote>\n<p>So I reached back out to my dad and said, “hey, dad, you know, this is a tool that our customers, all of our clients, have been asking us for”. They’ve been wanting access to their websites, and we’ve not been able to give it to them because, in the past, they had to download Dreamweaver, you know, Photoshop and an FTP program; and that was just too much nerd code for them. So we wanted to be able to give them something like this, and WordPress definitely was that solution.</p>\n<p>So he and I worked back and forth for a few years learning, really truly learning, WordPress; and then in 2012, we decided to launch together, my mom, my dad and I, decided to launch WebTegrity in San Antonio, Texas. And it was a very small concept initially; you know, we just me, literally, the three of us, and me and my folks. And then we hired on a subcontractor who is a great graphic designer here in town to try to help us with the creative side of things, and we started to grow our team.</p>\n<h3>Going Big Time</h3>\n<p>So how did we, in five years, build it up in such a way that we were able to sell it for a deal of a million dollars’ worth of shares, which ultimately is a $20 million value deal? How did we do that? I’m going to give you a little bit of insight on how we were able to accomplish that in such a short time.</p>\n<p>So the very first thing I want you to realize is we did this in a saturated industry in San Antonio, Texas. When I did a search for web developer or web design firms back in 2012, I had over 700 results of different either freelancers or agencies or ad agencies or some solution out there that was either in the general area, or in the nearby area, that provided that service. So how did we, in six years, end up becoming number six in the entire city? We ranked in the top 10; how did we do that?</p>\n<blockquote><p>One of the very first things we did, was we niched ourselves; and, thankfully, WordPress was that solution.</p></blockquote>\n<p>In 2012, there was not an agency directly in San Antonio that was trying to be the go-to place for WordPress; and we purposely started stepping up and saying we are WordPress only, WordPress only, WordPress only. So if you were looking for a different type of CMS solution, we were not the right fit for you. And very, very quickly, we also started teaching it in the city; so we would teach other agencies. We provided on-site training; we provided weekend workshops. All for a price tag, of course; but that was one of our revenue streams. And, again, it set us as the authority in the city for WordPress; so really important that you understand how to niche yourselves and not try to be all things to all people.</p>\n<blockquote><p>The second thing we tried to do was really build a culture.</p></blockquote>\n<p>And you can see, I don’t work around boring walls. Everything that I do has to have creative juices flowing around me, right. We just want to create a great culture, a great environment. So we had to hire the right people. So that’s my next tip to you is be very, very careful on who you allow into your culture of your business, who you hire on, and certainly who you bring on as a leader in your culture in your community. So one of the things that we did right away was realize that we can’t teach passion, so you gotta find people that have a passion to nerd out on stuff like this.</p>\n<p>And you have to find people who have great integrity to just do their best at all times, and you have to find people who love to be creative and love to solve problems for clients, right, who aren’t just salespeople, right? So if you can find those things, you can teach nerd code all day long; so be sure to just find people with the right hearts to join your community and then train them up the right way, be sure that you just grow and grow and grow your culture in a healthy way, right.</p>\n<blockquote><p>And another thing that we did, so this is another tip, was understand how to really build a revenue stream that was going to be sustainable.</p></blockquote>\n<p>All right, so wrap your heads around this one because this one’s key. Very early on in our model as we were selling WordPress websites, part of my pitch was, oh, it’s just five grand and no more after that. It’s a one-time fee and you’re done. That’s a horrible business strategy. We learned very early on, inside of WordPress world, that you have rain or shine, right; so there’s a lot of clients coming or there are no clients.</p>\n<p>You’re either slammed working from home even in the evening trying to catch up, or you’re out on the golf course wondering if you’re going to get a paycheck next week. It’s really rain or shine. So how do you create a sustainable model in your business, in your small agency, in your startup; how do you do that, so that when those slow seasons come, you can still pay your team members, you can still keep your lights on?</p>\n<p>Well, we were sitting at a WordCamp; and Jason Cohen from WP Engine was keynoting; and one of the things he said right away is, if you don’t understand how to create a reoccurring revenue stream in your small agency, you will turn your sign to closed in the next year or two. And he was so right; and it was such a light bulb moment for me that I went back straightaway from that weekend WordCamp up in Austin and I started writing out, okay, how can we create a reoccurring revenue stream? What would that look like inside of our industry?</p>\n<p>And, of course, it was support packages. We didn’t call them maintenance plans. We certainly didn’t use retainer, which can have a sense of a negative connotation, right, because of lawyers; sorry! But, still, we didn’t want to use those words because we’re already almost creating a, uh, I don’t think I want to sign up for that type of attitude.</p>\n<p>What we did is we called it support, and very easily, clients were signing up saying, oh, goodness, yes, I need that ongoing support. So use that phrasing, create a model structure where it’s required, at least for the first 12 months out of the gate as they launch that you are charging them something even as small as $99 a month. And don’t shortchange yourself on that; put together a great package that you give them that type of value.</p>\n<p>If you were to check out WebTegrity.com, you would see our support plans and what they consist of and the pricing. We’re very transparent with that. That’s the way our revenue stream almost doubled our sales in one year and allowed us to keep our lights on when June and July roll around and nobody cares about their websites because they’re on the beach.</p>\n<blockquote><p>All right, reputation was another huge part of it.</p></blockquote>\n<p>That’s one of the reasons why we named ourselves WebTegrity, but reputation, understanding that that every client that signs up, whether they’re a $5,000 website or a $50,000 website gets the same type of boutique-style, white glove, handholding relationship, right? Every single project that you launch, you want to produce the absolute, absolute best. You’re not shortchanging them; you’re not, you’re not wiring something that you hand off to the client and hope to God it doesn’t break. You really are trying to find the absolute best solution.</p>\n<p>One of the things that also kept us in high standing with our reputation, of course, was offering that training because what we don’t want to do is keep the veil covered where nobody can see what we’re doing, right. We really want to be transparent and train our clients the nerd lingo, train the clients what SEO is and what expectations should be. Having that type of open communication really just started to build together a relationship with our clients that they trusted us; and we met their expectation, right. So be sure to hold strongly to your core values for your reputation. Be sure that you’re asking people to give you great reviews because that’ll make a difference.</p>\n<blockquote><p>And the last thing I want to talk about is give back.</p></blockquote>\n<p>So at one of the WordCamp US’s that I went to, Matt himself said, listen, if you’re making a living with WordPress, you really need to try to figure out how to give back 5% of your time, just 5% of your time a week. How can you do that to give back to the community? Can you start a meet-up group, teach a meetup group; can you facilitate a meetup group where maybe you’re just the organizer and you never have to speak because you’re not a fan of speaking?</p>\n<p>Can you organize a WordCamp, volunteer at a WordCamp? Can you write a tutorial and tell people how to do things? Can you teach a workshop; can you make a video?</p>\n<p>And, again, I had a light bulb moment. Of course, I can make videos. So my giveback to the WordPress community is my YouTube channel; every single Wednesday, I’m creating a video and putting it out there for free to the WordPress world of how to improve your online marketing. That’s made a huge impact not only, thankfully, inside the WordPress community, but also in my own business model.</p>\n<p>I actually go into WordCamps around the US and people are like, hey, aren’t you that WordPress girl; don’t you do videos? It’s a really cool feeling to be able to give back to the community because I’ve made my living using WordPress.</p>\n<h3>Understanding</h3>\n<p>So ultimately how did I turn five years into a multi-million dollar buyout? Because we have just recently sold; how did we do that? Ultimately, it was understanding that you have to be able to grow something of value. So as soon as you start your business, you should also be thinking about your exit strategy, right, even in how you name your company.</p>\n<p>If I were to name this Ashton Agency, do you think that I could’ve just walked away and handed the keys to somebody else named Johnson; it wouldn’t have worked. Think even about your name; will it stand alone? Can that become a brand that you can hand off and sell as a holistic entity?</p>\n<p>You also want to think about that revenue stream, right, and watch those sales margins. Be sure that your margins are healthy. Don’t hire until it hurts, until it absolutely hurts. Be sure that you’re structuring your offerings in such a way that you’re actually recouping your value. What does that mean? Just understand business better; watch Shark Tank, read more tutorials like this, watch more videos.</p>\n<p>Get a hold of the WordPress community, the core leaders, the speakers that travel around to all the WordCamps. Start following them on Twitter and trying to understand what it is that they’re training and teaching. There’s a lot of resources out there for you to gain some ideas from, but ultimately it was me stepping out in the San Antonio community because it was a larger firm here in San Antonio who purchased us.</p>\n<p>So we just kept hammering on the fact that we were the go-to place here in San Antonio for WordPress. We kept training; we kept doing free opportunities, going out and speaking at different events; and people kept seeing us. We kept showing up, so you’d be surprised what happens. If you keep giving back and you keep showing up to places, you keep establishing yourself as the authority, you keep learning and training and growing your own skill set and growing your team, before you know it, it can happen for you.</p>\n<p>I hope this has been helpful. If you have questions about some of this though, if you’re trying to grow up your startup, or if you’re trying to learn how to improve your revenue margins, I’m always open to a quick twitter conversation or send me an email. I’d love to connect with you.</p>\n<p>Thanks again for the opportunity to share this on HeroPress.</p>\n<p>Bye, y’all; catch me over on YouTube. Bye!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How To Build A Company With WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20To%20Build%20A%20Company%20With%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuild-company-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How To Build A Company With WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuild-company-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuild-company-wordpress%2F&title=How+To+Build+A+Company+With+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How To Build A Company With WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/build-company-wordpress/&media=https://heropress.com/wp-content/uploads/2018/02/022118-150x150.jpg&description=How To Build A Company With WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How To Build A Company With WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/build-company-wordpress/\" title=\"How To Build A Company With WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/build-company-wordpress/\">How To Build A Company With WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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 Feb 2018 14:00: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:11:\"Kori Ashton\";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:26:\"Matt: Commuting Time Saved\";s:7:\"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:22:\"https://ma.tt/?p=47970\";s:7:\"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://ma.tt/2018/02/commuting-time-saved/\";s: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:344:\"<p>On <a href=\"https://automattic.com/\">Automattic's</a> internal <a href=\"https://buddypress.org/\">BuddyPress</a>-powered company directory, we allow people to fill out a field saying how far their previous daily commute was. 509 people have filled that out so far, and they are saving 12,324 kilometers of travel every work day. Wow!</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 Feb 2018 18:14: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: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:71:\"Akismet: Version 4.0.3 of the Akismet WordPress Plugin Is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1985\";s:7:\"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:99:\"https://blog.akismet.com/2018/02/19/version-4-0-3-of-the-akismet-wordpress-plugin-is-now-available/\";s: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:867:\"<p>Version 4.0.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>4.0.3 contains a few helpful changes:</p>\n<ul>\n<li>Adds a new scheduled task to clear out old Akismet entries in the <code>wp_commentmeta</code> table that no longer have corresponding comments in <code>wp_comments</code>. This should help reduce Akismet’s database usage for some users.</li>\n<li>Adds a new <code>akismet_batch_delete_count</code> action so developers can optionally take action when Akismet comment data is cleaned up.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</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, 19 Feb 2018 15:58: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:10:\"Josh 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:\"\";}}}}}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:68:\"Mark Jaquith: Handling old WordPress and PHP versions in your 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:40:\"http://markjaquith.wordpress.com/?p=5544\";s:7:\"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:\"https://markjaquith.wordpress.com/2018/02/19/handling-old-wordpress-and-php-versions-in-your-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:3563:\"<p>New versions of WordPress are released about three times a year, and WordPress itself supports PHP versions all the way back to 5.2.4.</p>\n<p>What does this mean for you as a plugin developer?</p>\n<p>Honestly, many plugin developers spend too much time supporting old versions of WordPress and <strong>really</strong> old versions of PHP.</p>\n<p>It doesn’t have to be this way. You don’t need to support every version of WordPress, and you don’t have to support every version of PHP. Feel free to do this for seemingly selfish reasons. Supporting old versions is hard. You have to “unlearn” new WordPress and PHP features and use their older equivalents, or even have code branches that do version/feature checks. It increases your development and testing time. It increases your support burden.</p>\n<p>Economics might force your hand here… a bit. You can’t very well, even in 2018, require that everyone be running PHP 7.1 and the latest version of WordPress. But consider the following:</p>\n<p>97% of WordPress installs are running PHP 5.3 or higher. This gives you namespaces, late static binding, closures, Nowdoc, <strong>__DIR</strong><strong>__</strong>, and more.</p>\n<p>88% of WordPress installs are running PHP 5.4 or higher. This gives you short array syntax, traits, function-array dereferencing, guaranteed <strong><?=</strong> echo syntax availability, <strong>$this</strong> access in closures, and more.</p>\n<p>You get even more things with PHP 5.5 and 5.6 (64% of installs are running 5.6 or higher), but a lot of the syntactic goodness came in 5.3 and 5.4, with very few people running versions less than 5.4. So stop typing <strong>array()</strong>, stop writing named function handlers for simple <strong>array_map()</strong> uses, and start using namespaces to organize and simplify your code.</p>\n<p>Okay, so… how?</p>\n<p>I recommend that your main plugin file just be a simple bootstrapper, where you define your autoloader, do a few checks, and then call a method that initializes your plugin code. I also recommend that this main plugin file be PHP 5.2 compatible. This should be easy to do (just be careful not to use <strong>__DIR__</strong>).</p>\n<p>In this file, you should check the minimum PHP and WordPress versions that you are going to support. And if the minimums are not reached, have the plugin:</p>\n<ol>\n<li>Not initialize (you don’t want syntax errors).</li>\n<li>Display an admin notice saying which minimum version was not met.</li>\n<li>Deactivate itself (optional).</li>\n</ol>\n<p>Do not <strong>die()</strong> or <strong>wp_die()</strong>. That’s “rude”, and a bad user experience. Your goal here is for them to update WordPress or ask their host to move them off an ancient version of PHP, so be kind.</p>\n<p>Here is what I use:</p>\n<p><a href=\"https://gist.github.com/markjaquith/a08623974b37c2cf0207ee2b120b54da\">View code on GitHub</a></p>\n<p></p>\n<p><a href=\"https://twitter.com/markjaquith/status/965605448408813569\">Reach out on Twitter</a> and let me know what methods you use to manage PHP and WordPress versions in your plugin!</p>\n<hr />\n<p><b>Do you need <a href=\"https://coveredwebservices.com/\">WordPress services?</a></b></p>\n<p>Mark runs <a href=\"https://coveredwebservices.com/\">Covered Web Services</a> which specializes in custom WordPress solutions with focuses on security, speed optimization, plugin development and customization, and complex migrations.</p>\n<p>Please reach out to start a conversation!</p>\n[contact-form]\";s: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 Feb 2018 15:14: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:12:\"Mark Jaquith\";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:85:\"Post Status: How WebDevStudios is serving different market segments — Draft podcast\";s:7:\"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://poststatus.com/?p=43724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://poststatus.com/webdevstudios-serving-different-market-segments-draft-podcast/\";s: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:2637:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Lisa Sabin-Wilson shares about the entangled history of WebDevStudios and eWebscapes and how she and team are targeting every level of the market. WebDevStudios focuses heavily on the upper and enterprise market segments, providing a high degree of attention and support to those clients.</p>\n<p>Sometime in 2017 Lisa did the math on all the lower-end projects that they were referring away and realized that WDS had a prime opportunity to re-introduce her former web studio, eWebscapes, as a way to serve these smaller-scope projects. This rebirth, so to speak, has positioned them to better target local communities, provide staff with more variety of work, and bring simplified processes alongside those they use for larger projects.</p>\n<p></p>\n<h3></h3>\n<h3>Key take-aways</h3>\n<ul>\n<li>Lisa observed a market opportunity and did the math first</li>\n<li>Relaunching started with a solid content strategy</li>\n<li>Simplified processes for managing a project</li>\n<li>Utilized talent already on staff</li>\n<li>Lots of opportunity to target local communities</li>\n<li>Evaluating the success of this strategy after 6 months</li>\n</ul>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://webdevstudios.com/\">WebDevStudios</a></li>\n<li><a href=\"https://ewebscapes.com/\">eWebscapes</a></li>\n<li><a href=\"https://jenniferbourn.com/profitable-project-plan/\">Profitable Project Plan</a></li>\n<li><a href=\"https://twitter.com/@lisasabinwilson\">Lisa Sabin-Wilson on Twitter</a></li>\n</ul>\n<p><a href=\"https://webdevstudios.com/about/\"><em>Photo Credit</em></a></p>\n<h3>Sponsor: Prospress</h3>\n<p><a href=\"https://prospress.com/\">Prospress</a> makes the WooCommerce Subscriptions plugin, that enables you to turn your online business into a recurring revenue business. Whether you want to ship a box or setup digital subscriptions like I have on Post Status, Prospress has you covered. Check out <a href=\"https://prospress.com/\">Prospress.com</a> for more, and thanks to Prospress for being a Post Status partner.</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 Feb 2018 22:38: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";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:25:\"Matt: No Office Workstyle\";s:7:\"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:22:\"https://ma.tt/?p=47949\";s:7:\"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://ma.tt/2018/02/no-office-workstyle/\";s: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:3938:\"<p>Reed Albergotti has a great article titled <a href=\"https://www.theinformation.com/articles/latest-amenity-for-startups-no-office\">Latest Amenity for Startups: No Office</a>. You can put in your email to read I believe but it's behind a paywall otherwise. <a href=\"https://www.theinformation.com/\">The Information</a> is a pretty excellent site that alongside (former Automattician) <a href=\"https://stratechery.com/\">Ben Thompson's Stratechery</a> I recommend subscribing to. Here are some quotes from the parts of the article that quote me or talk about <a href=\"https://automattic.com/\">Automattic</a>:</p>\n\n<blockquote class=\"wp-block-quote\">\n <p>So it’s no coincidence that one of the first companies to operate with a distributed workforce has roots in the open source movement. Automattic, the company behind open source software tools like WordPress, was founded in 2005 and has always allowed its employees to work from anywhere. The company’s 680 employees are based in 63 countries and speak 79 languages. Last year, it closed its San Francisco office, a converted warehouse — because so few employees were using it. It still has a few coworking spaces scattered around the globe.</p>\n <p>Matt Mullenweg, Automattic’s founder and CEO, said that when the company first started, its employees communicated via IRC, an early form of instant messaging. Now it uses a whole host of software that’s tailor-made for remote work, and as the technology evolves, Automattic adopts what they need.</p>\n <p>Mr. Mullenweg said Automattic only started having regular meetings, for instance, after it started using Zoom, a video conferencing tool that works even on slow internet connections.</p>\n <p>He’s become a proponent of office-less companies and shares what he’s learned with other founders who are attempting it. Mr. Mullenweg said he believes the distributed approach has led to employees who are even more loyal to the company and that his employees especially appreciate that they don’t need to spend a chunk of their day on a commute.</p>\n <p>“Our retention is off the charts,” he said.</p>\n</blockquote>\n\n<p>And:</p>\n\n<blockquote class=\"wp-block-quote\">\n <p>“Where it goes wrong is if they don’t have a strong network outside of work—they can become isolated and fall into bad habits,” Mr. Mullenweg said. He said he encourages employees to join groups, play sports and have friends outside of work. That kind of thing wouldn’t be a risk at big tech companies, where employees are encouraged to socialize and spend a lot of time with colleagues.</p>\n <p>But for those who ask him about the negatives, Mr. Mullenweg offers anecdotal proof of a workaround.</p>\n <p>For example, he said he has 14 employees in Seattle who wanted to beat the isolation by meeting up for work once a week. So they found a local bar that didn’t open until 5 p.m., pooled together the $250 per month co-working stipends that Automattic provides and convinced the bar’s owner to let them rent out the place every Friday.</p>\n</blockquote>\n\n<p>They didn't need to pool all their co-working allowance to get the bar, I recall it was pretty cheap! Finally:</p>\n\n<blockquote class=\"wp-block-quote\">\n <p>For Automattic, flying 700 employees to places like Whistler, British Columbia or Orlando, Florida, has turned into a seven-figure expense.</p>\n <p>“I used to joke that we save it on office space and blow it on travel. But the reality is that in-person is really important. That’s a worthwhile investment,” Mr. Mullenweg said.It might take a while, but some people are convinced that a distributed workforce is the way of the future.</p>\n <p>“Facebook is never going to work like this. Google is never going to work like this. But whatever replaces them will look more like a distributed company than a centralized one,” Mr. Mullenweg said.</p>\n</blockquote>\";s: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 Feb 2018 18:44: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: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: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:29:\"Matt: Kinsey Joins Automattic\";s:7:\"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:22:\"https://ma.tt/?p=47931\";s:7:\"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://ma.tt/2018/02/kinsey-joins-automattic/\";s: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:229:\"<p>Kinsey Wilson is joining Automattic to run WordPress.com. <a href=\"https://www.poynter.org/news/one-time-npr-and-nyt-digital-chief-new-adventure-wordpress\">Poynter covers the news and has a great interview with Kinsey.</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 Feb 2018 18:56:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:93:\"WPTavern: WPWeekly Episode 305 – 10up, JavaScript for WordPress Conference, and Jetpack 5.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=78136&preview=true&preview_id=78136\";s:7:\"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:98:\"https://wptavern.com/wpweekly-episode-305-10up-javascript-for-wordpress-conference-and-jetpack-5-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1599:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss the news of the week. We also chat about the Winter Olympics, crypto mining in order to access content on the web, and the joys of taking care of a puppy. Last but not least, we talk about Elasticsearch in Jetpack 5.8 and whether or not improving WordPress’ native search functionality through a service is the way to go.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/jetpack-5-8-adds-lazy-loading-for-images-module\">Jetpack 5.8 Adds Lazy Loading for Images Module</a><br />\n<a href=\"https://wptavern.com/free-virtual-wordpress-for-javascript-conference-june-29th\">Free Virtual WordPress for JavaScript Conference June 29th</a><br />\n<a href=\"https://wptavern.com/10up-turns-seven\">10up Turns Seven</a><br />\n<a href=\"https://make.wordpress.org/plugins/2018/02/13/not-updated-in-warning/\">“Not Updated In …” Warning</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 21st 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #305:</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:\"Thu, 15 Feb 2018 02:14:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:26:\"WPTavern: 10up Turns Seven\";s:7:\"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:29:\"https://wptavern.com/?p=78132\";s:7:\"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:\"https://wptavern.com/10up-turns-seven\";s: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:2986:\"<p><a href=\"https://10up.com/\">10up</a>, a web development agency founded by Jake Goldman in 2011, has turned seven years old. In a <a href=\"https://10up.com/blog/2018/10up-seven-year-anniversary/\">blog post celebrating the occasion</a>, Goldman reviews the previous year and highlights some notable events for the company.</p>\n<p>“We welcomed more than 30 new clients to our portfolio in another record sales year,” Goldman said. “We launched new websites along with web and mobile apps for major brands across verticals as diverse as finance, healthcare, academia, high-tech, big media, consumer packaged goods, food and beverage, and fitness… to name a few.”</p>\n<p>He also highlighted the company’s commitment to open source and giving back to WordPress. Throughout the past year, the company has released a number of WordPress plugins and developer tools including, <a href=\"https://10up.com/blog/2017/distributor-plugin/\">Distributor</a>, <a href=\"https://10up.com/blog/2017/wp-snapshots-share-wordpress-setup/\">WP Snapshots</a>, <a href=\"https://10up.com/blog/2017/wp-docker/\">WP Local Docker</a>, <a href=\"https://10up.com/blog/2018/improving-wordpress-transients/\">Async Transients</a>, and more.</p>\n<p>Goldman describes three trends he’s noticed in the past few years.</p>\n<ol>\n<li>Integrations with innovation happening in other projects and platforms has become increasingly important as the web matures. You see it in React.js and Vue.js emerging as popular front end standards, in the rise of Elasticsearch and NoSQL platforms, with two factor authentication and Google single sign on, with the rise of modern Asset Management Systems.</li>\n<li>For publishers, it’s increasingly becoming about distribution to multiple platforms, more so than<em> just</em> building a website. Google AMP, Facebook Articles, Apple News, Alexa, YouTube channels to name a few.</li>\n<li>If you need any more evidence of WordPress dominance, look no further than how highly in demand top-tier engineering talent is. It’s probably – literally – around a factor of 1.5x – 2x what great engineers were earning 3-4 years ago.</li>\n</ol>\n<p>With seven years of experience under his belt, Goldman offers the following advice for those who are in their first or second year of running an agency or in a leadership position.</p>\n<ol>\n<li> Don’t be quite so hard on yourself – when you run a business – when you’re a lease – there will always be highs and lows – don’t dwell on the lows.</li>\n<li>Put more emphasis on building systems, routines, and check-ins that offer a better pulse on the collective and individual fulfillment, engagement, and health of the team, rather than relying on transparent upwards communication.</li>\n</ol>\n<p>Congrats to 10up on seven years in business. To learn more about the company and employment opportunities, visit their <a href=\"https://10up.com/\">official site</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, 14 Feb 2018 19:16: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: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: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:37:\"HeroPress: My WordPress Anniversaries\";s:7:\"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:56:\"https://heropress.com/?post_type=heropress-essays&p=2452\";s:7:\"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:126:\"https://heropress.com/essays/my-wordpress-anniversaries/#utm_source=rss&utm_medium=rss&utm_campaign=my-wordpress-anniversaries\";s: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:13247:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/02/021418-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I feel that I am responsible to be on stage for all the women who haven’t found the courage yet to share their stories.\" /><p>I never remember dates. I know the birthday of more or less five people. I insist on saying that my son was born on May 11. Incorrect, I was born on May 11, he on May 17. But for some reason, my WordPress dates are permanently etched into my brain. I think it’s because meeting the global WordPress community and helping restart the Italian community are very meaningful moments in my adult life. Please join me in a walk down memory lane <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f642.png\" alt=\"????\" class=\"wp-smiley\" /></p>\n<h3>May 15, 2015</h3>\n<p>I started building websites with WordPress in 2010: my first website was my own blog, whose only purpose was to publish photos of my son so all the grandparents could enjoy seeing him grow. I enjoyed tinkering around with it, and to my surprise someone wrote asking me to build something similar for them. And they wanted to pay me for it!</p>\n<p>For a few years I worked as an administrative manager during the day and as a web designer at night until I decided to make the jump and become a freelancer.</p>\n<p>I never thought about contributing to WordPress because I wasn’t a back end developer and I didn’t think the project needed people that were not code wizards. Heck, I didn’t even know how WordPress was made or how open source worked exactly!</p>\n<blockquote><p>And then I went to a Freelancers conference in Italy and on May 15 I gave my first talk ever.</p></blockquote>\n<p>Up until that moment I taught small classes, but I never talked in front of more than ten people. I was terrified: in the audience there were more than a hundred people. Some of my friends, but also a lot of seasoned professionals that I respected and admired, and here I was talking about how they should and shouldn’t build a website. I was so nervous, when I grabbed the mic I did such a wide gesture with my arms that the bracelet I was wearing flew through the air to the other side of the room.</p>\n<p>After my talk a guy came to compliment my talk, and I realised that he was one of those people that I respected and admired from afar: <a href=\"https://twitter.com/lucasartoni\">Luca Sartoni</a>, an Automattician whose blog I have been following for a while.</p>\n<p>For the three days of the event we kept chatting about websites, WordPress, entrepreneurship, open source until he convinced me to start a WordPress meetup in my hometown of Torino, Italy. He put me in contact with other people that he knew wanted to do something similar and in less than a month from that conversation we started a meetup. The group now has more than one thousand members, and in March we will celebrate thirty events.</p>\n<h3>November 7, 2015</h3>\n<p>Luca didn’t stop his proselytism in Torino <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f642.png\" alt=\"????\" class=\"wp-smiley\" /> That same year, WordCamp Europe was held in Seville and at the Polyglots table a revolution was started. A small group of Italians, used to travelling abroad to attend WordCamps, met there and decided that it was time to organise the Italian community.</p>\n<p>The first step was to revive the blog on the Italian WordPress website: it was dormant for seven years and the first thing we did was publish the dates of meetups that were slowly but surely appearing in the whole country. At the beginning of 2015 there were two meetups in Italy, by August there were eight and their number kept growing.</p>\n<p>Now, if you have met Italians, you know we talk a lot. The two Francescos from Apulia, <a href=\"https://twitter.com/franzvitulli\">Franz Vitulli</a> and <a href=\"https://twitter.com/fra83\">Francesco Di Candia</a>, took the second initiative that was crucial to bringing us together: they opened a Slack workspace for the Italians, modeled after the UK workspace. For the whole summer we chatted every single day: about WordPress, about how to grow and manage the community that was forming in front of our eyes, how to communicate, how to contribute.</p>\n<p>And then chatting wasn’t enough, we wanted to meet in person. We wanted to put a face and a voice to the avatars. With the help of <a href=\"https://twitter.com/rosso\">Sara Rosso</a> and <a href=\"https://twitter.com/miss_jwo\">Jenny Wong</a> we carried out a bizarre plan, almost unheard of: a <a href=\"https://wordpress.tv/2017/12/10/francesca-marano-standalone-contributor-days-help-make-wordpress-with-your-community/\">stand alone WordPress Contributor Day</a>. We would meet in Milano for a day to get to know each other and to learn how to Contribute to WordPress.</p>\n<blockquote><p>I like to think that November 7 2015 is the day we became a community: we were not an abstract idea anymore, we were people, meeting in person to make WordPress in Italy.</p></blockquote>\n<p> </p>\n<h3>April 10, 2016</h3>\n<p>The next few months went by in a blur of activities: the meetup organisers in Torino applied to host the first WordCamp in Italy in three years and I lead the organising team, I applied to attend the Community Summit in Philadelphia and I got accepted, I attended the first WordCamp US, my first WordCamp, and volunteered at it. I met a lot of people that helped me become more active and more focused: as a new contributor it’s easy to get overwhelmed by the abundance of amazing projects and tasks you can be part of, but it’s important to keep your focus to be more effective.</p>\n<blockquote><p>After meeting people from all over the world and sharing our experiences I realised the story of the Italian community could be inspiring for other communities and it was worth telling it to a wider audience, so I got completely out of my comfort zone and submitted a talk to WordCamp London.</p></blockquote>\n<p>On April 10th 2016 I gave <a href=\"https://wordpress.tv/2016/05/30/francesca-marano-rebirth-italian-community/\">my first talk at a WordCamp</a> and my first talk in English. I think I didn’t sleep for days before and after the event. It was nerve wracking, but I did it without throwing any bracelet in the air this time.</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2018/02/WCEU2016.jpg\"><img class=\"wp-image-2457 size-large\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/02/WCEU2016-1024x684.jpg\" alt=\"\" width=\"960\" height=\"641\" /></a>I gave the same talk at WordCamp Europe in 2016 and realised the story was relatable to many communities. Photographer unknown, sorry <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f641.png\" alt=\"????\" class=\"wp-smiley\" />\n<h3>September 17, 2017</h3>\n<p>Over the following year I kept contributing to WordPress, mostly in the Community team. I participated in the Polyglots activities for a while but then I had to pick and focus my attention. The more I interacted with people from all over the world as a hobby, the more I wanted that to become my job. Although my business as a web designer in Italy was doing good, I felt I wanted to be able to reach more people and find a way to be more involved with the community.<br />\nSo I started looking for a job. I was hesitant at first: all the insecurities I had about myself came back to haunt me. The voice in my head was telling me: you are too old, you don’t have enough technical expertise, you have been contributing for a very short time, English is not your native language, you are a single mom from Italy for crying out loud, who would want to employ you?</p>\n<blockquote><p>Well, it turns out that if you actually look for a job instead of just telling yourself that you really would like a job, chances are you might get one.</p></blockquote>\n<p>Last September I started a new chapter in my career as the <a href=\"https://www.siteground.com/blog/francesca-marano/\">WordPress Community Manager</a> at SiteGround and I couldn’t be happier.</p>\n<p>The past 33 months have completely changed my life, personally and professionally: along the way I learned a number of lessons that I know will stay with me forever.</p>\n<h3>Step Up</h3>\n<p>If you want to achieve something, start today. Just start. Start a meetup, leave a comment to encourage someone else, volunteer to take notes of a meeting, participate in the discussion, bring your own ideas to the table. Be a fire starter, for yourself and for the people around you.</p>\n<h3>Step Back</h3>\n<p>None of the above is about you: the community is bigger than you, you are here to build a path for the future. Once you started something, don’t become too attached, let it go and let other people step up and shine. Mentor them, if they ask and if you can.</p>\n<h3>If you want to go faster go alone, if you want to go further go together</h3>\n<p>I am not a huge fan of motivational quotes, but this one is very dear to my heart and it’s one I have to remind myself quite often. I am a perfectionist and a quick learner: this is ok when you start your own business (and it’s ok only at the beginning, but this is a topic for another article!), but when you are part of a team, you are part of something bigger. It might move slower, but its impact is immensely more powerful than anything you’ll be able to achieve on your own.</p>\n<h3>Representation matters</h3>\n<p>I dislike speaking in public. When I say this people tend to laugh it off because I am good on stage. It doesn’t mean that I like it. I am much more at ease when I am behind the scenes, making things happen.</p>\n<p><img class=\"aligncenter wp-image-2454 size-full\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/02/slack-imgs.jpg\" alt=\"Four women seated on a low wall at a WordPress meetup.\" width=\"600\" height=\"400\" /></p>\n<blockquote><p>But representation matters: I feel that I am responsible to be on stage for all the women who haven’t found the courage yet to share their stories.</p></blockquote>\n<p>I am responsible for the young ones, so they can see that it’s possible to create a life when you can be both a good, albeit a bit absent mom, and a kick ass professional. I am responsible for the older ones, so they can see that we are represented, that this industry accepts us and recognizes our contributions. I am responsible to show my eleven year old son that women can do whatever they set out to do.</p>\n<h3>Make it better, give it back</h3>\n<p>I wish I came up with this, because it’s an incredibly powerful sentence. <a href=\"https://heropress.com/essays/make-better-give-back/\">John did</a> and I am grateful every day that I get to share my life with him and his wisdom.</p>\n<p>Contributing to open source can be very frustrating: things go slow, sometimes things don’t go at all (there are numerous tickets in the WordPress bug tracker that are five or more years old), sometimes you might disagree with that will be decided, sometimes you might work alongside people that you dislike.</p>\n<p>When this happens, remind yourself that you are working on a brilliant piece of software that is helping the lives and the businesses of millions of people.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: My WordPress Anniversaries\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=My%20WordPress%20Anniversaries&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: My WordPress Anniversaries\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fmy-wordpress-anniversaries%2F&title=My+WordPress+Anniversaries\" rel=\"nofollow\" target=\"_blank\" title=\"Share: My WordPress Anniversaries\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/my-wordpress-anniversaries/&media=https://heropress.com/wp-content/uploads/2018/02/021418-150x150.jpg&description=My WordPress Anniversaries\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: My WordPress Anniversaries\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/my-wordpress-anniversaries/\" title=\"My WordPress Anniversaries\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/my-wordpress-anniversaries/\">My WordPress Anniversaries</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 14 Feb 2018 07:00: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:16:\"Francesca Marano\";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:68:\"WPTavern: Free Virtual WordPress for JavaScript Conference June 29th\";s:7:\"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:29:\"https://wptavern.com/?p=78116\";s:7:\"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:\"https://wptavern.com/free-virtual-wordpress-for-javascript-conference-june-29th\";s: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:1714:\"<p>Zac Gordon, who <a href=\"https://wptavern.com/zac-gordon-launches-gutenberg-development-course-includes-more-than-30-videos\">launched his Gutenberg development course</a> earlier this year, is organizing a virtual conference called <a href=\"https://javascriptforwp.com/conference/\">JavaScript for WordPress.</a> The conference will take place June 29th and is free to watch.</p>\n<p>“Making the event free and online was really important for me so we could have as few barriers to entry for folks wanting to learn,” Gordon said. “I have a feeling a lot of folks who can’t tune live will still appreciate having all the talks available on YouTube for free.”</p>\n<p>So far, 15 speakers have been confirmed with more to be announced soon. The speakers include WordPress core developers, theme and plugin developers, agency owners, and educators. Some of the talks will be from designers allowing user experience and usability to be part of the conversation.</p>\n<p>Gordon says he’s been wanting to an in-person event for a while but considering the challenges involved, a virtual conference was the next best thing.</p>\n<p>“I used to run in-person workshops in the Washington DC area, which I miss, and have wanted to do an event for a while,” he said. “But doing in-person events is so difficult, so the online format seemed like the best option to go with. I got some good advice from Human Made and WP Campus, who both have experience doing online events, so hopefully everything will go smooth.”</p>\n<p>To reserve a seat and receive updates, visit the <a href=\"https://javascriptforwp.com/conference/\">JavaScript for WordPress conference site</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 Feb 2018 01:30: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: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:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 02 Apr 2018 14:21:42 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 02 Apr 2018 14:00:27 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}','no'),(133,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1522722103','no'),(134,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1522678903','no'),(135,'_transient_timeout_dash_v2_5438fb5baf31c513fff2b9a1067656a6','1522722103','no'),(136,'_transient_dash_v2_5438fb5baf31c513fff2b9a1067656a6','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://cn.wordpress.org/2018/02/08/wordpress-4-9-4/\'>WordPress 4.9.4维护更新</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/04/the-month-in-wordpress-march-2018/\'>Dev Blog: The Month in WordPress: March 2018</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-310-community-management-php-and-hello-dolly\'>WPTavern: WPWeekly Episode 310 – Community Management, PHP, and Hello Dolly</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/my-gutenberg-experience-thus-far\'>WPTavern: My Gutenberg Experience Thus Far</a></li></ul></div>','no'),(137,'_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:64:\"http://downloads.wordpress.org/release/zh_CN/wordpress-4.9.4.zip\";s:6:\"locale\";s:5:\"zh_CN\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:64:\"http://downloads.wordpress.org/release/zh_CN/wordpress-4.9.4.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.4\";s:7:\"version\";s:5:\"4.9.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:58:\"http://downloads.wordpress.org/release/wordpress-4.9.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:58:\"http://downloads.wordpress.org/release/wordpress-4.9.4.zip\";s:10:\"no_content\";s:69:\"http://downloads.wordpress.org/release/wordpress-4.9.4-no-content.zip\";s:11:\"new_bundled\";s:70:\"http://downloads.wordpress.org/release/wordpress-4.9.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.4\";s:7:\"version\";s:5:\"4.9.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1522679081;s:15:\"version_checked\";s:5:\"4.9.4\";s:12:\"translations\";a:0:{}}','no'),(138,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1522679081;s:7:\"checked\";a:3:{s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(139,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1522679160;s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:5:\"4.0.2\";s:9:\"hello.php\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:55:\"http://downloads.wordpress.org/plugin/akismet.4.0.3.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:7:\"default\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";s:7:\"default\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";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:57:\"http://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:7:\"default\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";s:7:\"default\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(141,'_site_transient_timeout_available_translations','1522689889','no'),(142,'_site_transient_available_translations','a:113:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-06 13:56:09\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-24 19:38:49\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-01-25 21:29:53\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.4/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-22 13:41:14\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.5/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-22 03:44:52\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-09 20:33:12\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-26 06:39:57\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-11 09:40:36\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-19 17:34:31\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-12 10:10:36\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-30 10:09:04\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.9.4/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-22 15:43:53\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.9.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-30 16:57:45\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-25 10:10:04\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-17 05:20:05\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-29 16:28:34\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-15 09:54:30\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-09 08:59:25\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-15 20:17:27\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-18 17:06:15\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-23 18:34:33\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-15 23:17:08\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-15 15:03:42\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-27 05:22:44\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2017-07-31 15:12:02\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.5/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-10-01 17:54:52\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-26 19:32:51\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-19 14:11:29\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-12-09 21:12:23\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-30 07:44:25\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-12 17:00:17\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-21 22:04:16\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-01-31 11:16:06\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-26 14:06:52\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.5/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-10 18:19:59\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-14 06:16:04\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-04-01 05:40:49\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-31 18:09:34\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-26 21:01:10\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-04-02 12:51:15\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-28 10:17:26\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-04-13 13:55:54\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-29 06:31:41\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-16 18:46:39\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-24 13:53:29\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-08 06:01:48\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-22 22:24:38\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.4/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-12 08:08:32\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-15 02:27:09\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-15 19:40:23\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.8.5\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.5/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-28 10:55:13\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-02 11:50:29\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-27 10:30:26\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-26 08:04:00\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.9.4/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-23 10:18:52\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-23 12:42:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-22 09:27:50\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.3/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-30 07:37:06\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-09 09:30:48\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/4.9.4/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-09 09:37:35\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-22 18:30:41\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-04-02 11:15:15\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-22 15:56:45\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-22 08:50:10\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-25 10:30:04\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-25 20:12:50\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-09 12:42:33\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-02 17:08:41\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-14 15:26:30\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-05 09:23:39\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-01-28 22:32:11\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-13 08:24:25\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-09 10:37:43\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-26 04:16:06\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.4/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-02-13 02:41:15\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-11-17 22:20:52\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.9.4\";s:7:\"updated\";s:19:\"2018-03-31 05:48:14\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.4/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(143,'_transient_timeout_plugin_slugs','1522765601','no'),(144,'_transient_plugin_slugs','a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}','no'),(145,'recently_activated','a:0:{}','yes'),(147,'category_children','a:0:{}','yes'),(148,'_transient_is_multi_author','0','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,2,'_edit_lock','1522679286:1'),(3,1,'_edit_lock','1522679603:1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci 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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2018-04-02 22:21:11','2018-04-02 14:21:11','欢迎使用WordPress。这是您的第一篇文章。编辑或删除它,然后开始写作吧!','世界,您好!','','publish','open','open','','hello-world','','','2018-04-02 22:21:11','2018-04-02 14:21:11','',0,'http://localhost:8888/?p=1',0,'post','',1),(2,1,'2018-04-02 22:21:11','2018-04-02 14:21:11','这是示范页面。页面和博客文章不同,它的位置是固定的,通常会在站点导航栏显示。很多用户都创建一个“关于”页面,向访客介绍自己。例如:\n\n<blockquote>欢迎!我白天是个邮递员,晚上就是个有抱负的演员。这是我的博客。我住在天朝的帝都,有条叫做Jack的狗。</blockquote>\n\n……或这个:\n\n<blockquote>XYZ Doohickey公司成立于1971年,自从建立以来,我们一直向社会贡献着优秀doohickies。我们的公司总部位于天朝魔都,有着超过两千名员工,对魔都政府税收有着巨大贡献。</blockquote>\n\n而您,作为一个WordPress用户,我们建议您访问<a href=\"http://localhost:8888/wp-admin/\">控制板</a>,删除本页面,然后添加您自己的页面。祝您使用愉快!','示例页面','','publish','closed','open','','sample-page','','','2018-04-02 22:21:11','2018-04-02 14:21:11','',0,'http://localhost:8888/?page_id=2',0,'page','',0),(3,1,'2018-04-02 22:21:31','0000-00-00 00:00:00','','自动草稿','','auto-draft','open','open','','','','','2018-04-02 22:21:31','0000-00-00 00:00:00','',0,'http://localhost:8888/?p=3',0,'post','',0),(4,1,'2018-04-02 22:35:41','0000-00-00 00:00:00','','自动草稿','','auto-draft','open','open','','','','','2018-04-02 22:35:41','0000-00-00 00:00:00','',0,'http://localhost:8888/?p=4',0,'post','',0),(5,1,'2018-04-02 22:52:18','0000-00-00 00:00:00','','自动草稿','','auto-draft','closed','closed','','','','','2018-04-02 22:52:18','0000-00-00 00:00:00','',0,'http://localhost:8888/?page_id=5',0,'page','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'未分类','uncategorized',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','Adam'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description','再努力一些,生活就会好一些'),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','true'),(8,1,'admin_color','blue'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale','site-default'),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(17,1,'wp_dashboard_quick_press_last_post_id','3'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:2:\"::\";}'),(19,1,'closedpostboxes_page','a:0:{}'),(20,1,'metaboxhidden_page','a:5:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(21,1,'wp_user-settings','editor=tinymce'),(22,1,'wp_user-settings-time','1522679360'),(25,1,'session_tokens','a:13:{s:32:\"5ab3abfc19a6495fbaf1ae8b78d3695e\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553517552531;s:2:\"ua\";s:119:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/605.1.15 (khtml, like gecko) version/12.0.3 safari/605.1.15\";s:5:\"login\";d:1553510352531;}s:32:\"1825b181ee4f49c4b566ad584adb88ad\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553524802186;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553517602186;}s:32:\"0fc850c011424132b334d2480dc24218\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553524926852;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553517726852;}s:32:\"c0cbb71a444f45e6bfa9de255bad310d\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553525033771;s:2:\"ua\";s:119:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/605.1.15 (khtml, like gecko) version/12.0.3 safari/605.1.15\";s:5:\"login\";d:1553517833771;}s:32:\"f5c116ba70144ae6a4819ee087ec2d70\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553525252575;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553518052575;}s:32:\"9898db6f1fc848059176b631a61eaf04\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553525381317;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553518181317;}s:32:\"a81b03adf2b7407184a0ec2d60bd2bbb\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553525595112;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553518395112;}s:32:\"6656cea98e4d4b058696d070e175dc92\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553525720909;s:2:\"ua\";s:119:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/605.1.15 (khtml, like gecko) version/12.0.3 safari/605.1.15\";s:5:\"login\";d:1553518520909;}s:32:\"b6b461f283a64de8afbf48f927df6376\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553527301596;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553520101596;}s:32:\"7473282311404bd79b534333a7f0e912\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553528580706;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553521380706;}s:32:\"655a3fcacd914d8e8dccf3d0dcae8502\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553532779523;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553525579523;}s:32:\"cc486af2a6b94d64892a8ba087b04234\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553534956955;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553527756955;}s:32:\"079053a1e4f04fa091127b425a39c407\";a:4:{s:2:\"ip\";s:15:\"0:0:0:0:0:0:0:1\";s:10:\"expiration\";d:1553538975798;s:2:\"ua\";s:121:\"mozilla/5.0 (macintosh; intel mac os x 10_14_3) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.121 safari/537.36\";s:5:\"login\";d:1553531775798;}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'Adam','$P$BYRCYNY8J0jtr1DJcWxOTklfBQR03I0','Adam','adam@tbynet.com','','2018-04-02 14:21:11','',0,'Adam');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2019-03-26 0:38:15
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )