-- MySQL dump 10.13  Distrib 5.5.32, for Linux (x86_64)
--
-- Host: localhost    Database: marcusjewelry_db
-- ------------------------------------------------------
-- Server version	5.5.32-cll

/*!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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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 NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!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,'Mr WordPress','','http://wordpress.org/','','2013-03-23 18:09:13','2013-03-23 18:09:13','Hi, this is a comment.\nTo delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.',0,'1','','',0,0),(2,1,'seo backlink','james.kirks@hotmail.com','http://explode-your-site-traffic.com','5.248.84.136','2013-04-15 19:47:05','2013-04-15 19:47:05','hello there soapseoclientmockup.com owner found your website via yahoo but it was hard to find and I see you could have more visitors because there are not so many comments yet. I have found website which offer to dramatically increase traffic to your blog http://explode-your-site-traffic.com they claim they managed to get close to 4000 visitors/day using their services you could also get lot more targeted traffic from search engines as you have now. I used their services and got significantly more visitors to my site. Hope this helps :) They offer most cost effective services to increase website traffic at this website http://explode-your-site-traffic.com \r\nTo your success your friend \r\nJames',0,'0','Mozilla/5.0 (Windows NT 5.1; rv:7.0) Gecko/20100101 Firefox/7.0','',0,0),(3,1,'mma odds','thefightbettingblogg@hotmail.com','http://thefightbetting.com','37.59.151.193','2013-06-04 11:27:22','2013-06-04 11:27:22','Hello , you are good writer, i love www.marcusjewelryny.com',0,'0','Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.28) Gecko/20120306 Firefox/3.6.28 sputnik 2.5.2.8','',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) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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(64) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=1636 DEFAULT CHARSET=utf8;
/*!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://www.marcusjewelryny.com/','yes'),(2,'blogname','Marcus Jeweler','yes'),(3,'blogdescription','Just another WordPress site','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','william.rsw@gmail.com','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','0','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(21,'posts_per_page','10','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(25,'links_recently_updated_prepend','<em>','yes'),(26,'links_recently_updated_append','</em>','yes'),(27,'links_recently_updated_time','120','yes'),(28,'comment_moderation','0','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','','yes'),(31,'gzipcompression','0','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:1:{i:0;s:45:\"add-link-to-facebook/add-link-to-facebook.php\";}','yes'),(36,'home','http://www.marcusjewelryny.com/','yes'),(37,'category_base','','yes'),(38,'ping_sites','http://rpc.pingomatic.com/','yes'),(39,'advanced_edit','0','yes'),(40,'comment_max_links','2','yes'),(41,'gmt_offset','0','yes'),(42,'default_email_category','1','yes'),(43,'recently_edited','a:5:{i:0;s:77:\"/var/www/vhosts/marcusjewelryny.com/httpdocs/wp-content/themes/Nova/style.css\";i:1;s:89:\"/var/www/vhosts/marcusjewelryny.com/httpdocs/wp-content/themes/Nova/includes/featured.php\";i:3;s:84:\"/var/www/vhosts/marcusjewelryny.com/httpdocs/wp-content/themes/Nova/page-gallery.php\";i:4;s:91:\"/var/www/vhosts/marcusjewelryny.com/httpdocs/wp-content/themes/Nova/epanel/options_nova.php\";i:5;s:81:\"/var/www/vhosts/marcusjewelryny.com/httpdocs/wp-content/themes/Nova/page-full.php\";}','no'),(44,'template','Nova','yes'),(45,'stylesheet','Nova','yes'),(46,'comment_whitelist','1','yes'),(47,'blacklist_keys','','no'),(48,'comment_registration','0','yes'),(49,'html_type','text/html','yes'),(50,'use_trackback','0','yes'),(51,'default_role','subscriber','yes'),(52,'db_version','22441','yes'),(53,'uploads_use_yearmonth_folders','1','yes'),(54,'upload_path','','yes'),(55,'blog_public','1','yes'),(56,'default_link_category','2','yes'),(57,'show_on_front','posts','yes'),(58,'tag_base','','yes'),(59,'show_avatars','1','yes'),(60,'avatar_rating','G','yes'),(61,'upload_url_path','','yes'),(62,'thumbnail_size_w','150','yes'),(63,'thumbnail_size_h','150','yes'),(64,'thumbnail_crop','1','yes'),(65,'medium_size_w','300','yes'),(66,'medium_size_h','300','yes'),(67,'avatar_default','mystery','yes'),(68,'large_size_w','1024','yes'),(69,'large_size_h','1024','yes'),(70,'image_default_link_type','file','yes'),(71,'image_default_size','','yes'),(72,'image_default_align','','yes'),(73,'close_comments_for_old_posts','0','yes'),(74,'close_comments_days_old','14','yes'),(75,'thread_comments','1','yes'),(76,'thread_comments_depth','5','yes'),(77,'page_comments','0','yes'),(78,'comments_per_page','50','yes'),(79,'default_comments_page','newest','yes'),(80,'comment_order','asc','yes'),(81,'sticky_posts','a:0:{}','yes'),(82,'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'),(83,'widget_text','a:0:{}','yes'),(84,'widget_rss','a:0:{}','yes'),(85,'uninstall_plugins','a:0:{}','no'),(86,'timezone_string','','yes'),(87,'page_for_posts','0','yes'),(88,'page_on_front','0','yes'),(89,'default_post_format','0','yes'),(90,'link_manager_enabled','0','yes'),(91,'initial_db_version','22441','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'widget_search','a:2:{i:3;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'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'),(95,'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'),(96,'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'),(97,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:8:\"search-3\";}s:9:\"sidebar-2\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(99,'cron','a:4:{i:1374991759;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:1375045781;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1375048281;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'),(101,'_transient_random_seed','e370450e0be8ff3153f357dd53ffc462','yes'),(102,'auth_key','hX+L1K<rs~EQ4J8:VV830fy_MIR]C1by0E]x!_Zt[I*[T?HWrjtGKei`rj7[~}Fw','yes'),(103,'auth_salt','IVx3E-7>-%7/j.%y2jWv+S/Q8O79.x{9}kc0wPy$Z@$e;T%$^8{EVm%B5JYx4Nc?','yes'),(104,'logged_in_key','7n^lFLkdfs^x2g=UiRk8[!nTJS[I(18udf:5SPn0e;,XlpMJ.heWG+3z17&i.bi?','yes'),(105,'logged_in_salt','K4lf}]MOi0~ekV3.tdvx #fn]e?63LSw q7HIsB&JgWE53WLVe;vFd%5`$PpWPgo','yes'),(106,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:40:\"http://wordpress.org/wordpress-3.5.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":4:{s:4:\"full\";s:40:\"http://wordpress.org/wordpress-3.5.2.zip\";s:10:\"no_content\";s:51:\"http://wordpress.org/wordpress-3.5.2-no-content.zip\";s:11:\"new_bundled\";s:52:\"http://wordpress.org/wordpress-3.5.2-new-bundled.zip\";s:7:\"partial\";s:50:\"http://wordpress.org/wordpress-3.5.2-partial-1.zip\";}s:7:\"current\";s:5:\"3.5.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.5\";s:15:\"partial_version\";s:5:\"3.5.1\";}}s:12:\"last_checked\";i:1374949285;s:15:\"version_checked\";s:5:\"3.5.1\";}','yes'),(1633,'_site_transient_timeout_theme_roots','1374951085','yes'),(1634,'_site_transient_theme_roots','a:3:{s:4:\"Nova\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','yes'),(150,'_site_transient_update_themes','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1374949286;s:7:\"checked\";a:3:{s:4:\"Nova\";s:3:\"3.4\";s:12:\"twentyeleven\";s:3:\"1.5\";s:12:\"twentytwelve\";s:3:\"1.1\";}s:8:\"response\";a:1:{s:4:\"Nova\";a:2:{s:11:\"new_version\";s:3:\"3.7\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/nova.txt\";}}}','yes'),(111,'_site_transient_timeout_browser_7525991292230ded02f335bd9024d439','1364677794','yes'),(112,'_site_transient_browser_7525991292230ded02f335bd9024d439','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"19.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(113,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:30:\"http://www.marcusjewelryny.com\";s:4:\"link\";s:106:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://www.marcusjewelryny.com/\";s:3:\"url\";s:139:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://www.marcusjewelryny.com/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(114,'nonce_key','e 1iSvhX=s{3)b)g9s9>PVnJpTlH3T4Pi{Q|*b_KPW[-{UOk.Hu&ZI]N.[-c2|Bz','yes'),(115,'nonce_salt','oY}-~2n8yxyHDx>;R2,DbJw:D [ 9#)9{SF-*>8Sa?&d:+6@/;Gb!M$e[vCdTF~i','yes'),(310,'_transient_timeout_feed_1d1b07a74296b4e920bc08b76e919848','1364378948','no'),(311,'_transient_feed_1d1b07a74296b4e920bc08b76e919848','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\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:33:\"\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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"link:http://www.marcusjewelryny.com// - Google Blog Search\";s:7:\"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:106:\"http://www.google.com/search?ie=utf-8&q=link:http://www.marcusjewelryny.com//&tbm=blg&tbs=sbd: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"Your search - <b>link:http://www.marcusjewelryny.com//</b> - did not match any documents.\";s: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://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";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:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Tue, 26 Mar 2013 22:09:08 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=691c729478ee9a76:FF=0:TM=1364335748:LM=1364335748:S=VwuhyQg2LjirBjer; expires=Thu, 26-Mar-2015 22:09:08 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=oBtFRyLBf7SOpInL2iBOUveKUPlADfsEPa-2EX20R-DUsB17PtNrTKEzls_p9ss3MTZlXiW_7R4PUkE_BAWO7Mm_cXBMiPBB8Jwi9EHiGEiPBv9DeY3-jNTodAPJbtYM; expires=Wed, 25-Sep-2013 22:09:08 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20130323175547\";}','no'),(128,'can_compress_scripts','1','yes'),(312,'_transient_timeout_feed_mod_1d1b07a74296b4e920bc08b76e919848','1364378948','no'),(313,'_transient_feed_mod_1d1b07a74296b4e920bc08b76e919848','1364335748','no'),(1021,'_site_transient_timeout_browser_565227154b38f621af459c69ec380d03','1370361753','yes'),(1022,'_site_transient_browser_565227154b38f621af459c69ec380d03','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:3:\"6.0\";s:10:\"update_url\";s:51:\"http://www.microsoft.com/windows/internet-explorer/\";s:7:\"img_src\";s:45:\"http://s.wordpress.org/images/browsers/ie.png\";s:11:\"img_src_ssl\";s:44:\"https://wordpress.org/images/browsers/ie.png\";s:15:\"current_version\";s:1:\"9\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:1;}','yes'),(1148,'_site_transient_browser_4155da8a3756e08080a06133476ef1fd','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"19.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(1616,'_site_transient_timeout_browser_1cba7d39a7293c7e1de4e3333c3242f4','1375368008','yes'),(1169,'_site_transient_timeout_browser_f569f3a78056ffd66dc34231f272ada7','1371209587','yes'),(1170,'_site_transient_browser_f569f3a78056ffd66dc34231f272ada7','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"27.0.1453.110\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(1222,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1370728544','no'),(1223,'_transient_feed_867bd5c64f85878d03a060509cd2f92c','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:53:\"WPTavern: Pretty WordPress Template Hierarchy Diagram\";s:7:\"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://www.wptavern.com/?p=7248\";s:7:\"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:105:\"http://feedproxy.google.com/~r/WordpressTavern/~3/S8mjpUAuI8M/pretty-wordpress-template-hierarchy-diagram\";s: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:2171:\"<p>If there has been one graphical element that has seen some changes over the years, it&#8217;s the template hierarchy diagram. The <a title=\"http://codex.wordpress.org/Template_Hierarchy\" href=\"http://codex.wordpress.org/Template_Hierarchy\">original diagram</a> is located on the Codex and while it provides a graphical representation as to how Templates work within WordPress, it&#8217;s not pretty. I remember in 2008 when Michael Castilla took the original concept and simply <a title=\"http://wpcandy.com/teaches/wordpress-template-hierarchy-diagram/\" href=\"http://wpcandy.com/teaches/wordpress-template-hierarchy-diagram/\">added some style</a> to it. A few years later, Chip Bennett <a title=\"http://www.chipbennett.net/themes/template-hierarchy/wordpresstemplatehierarchy-rev-8/\" href=\"http://www.chipbennett.net/themes/template-hierarchy/wordpresstemplatehierarchy-rev-8/\">added detailed information</a> to the diagram. Just last month, <a title=\"http://wpdaily.co/wp-template-hierarchy-chart/\" href=\"http://wpdaily.co/wp-template-hierarchy-chart/\">Michelle created</a> a colorful version of the diagram.</p>\n<p>That brings us to the current day where Rami Abraham has taken Michelle&#8217;s colorful design and has not only been given its <a title=\"http://wphierarchy.com/\" href=\"http://wphierarchy.com/\">own domain name</a>, but has also made it interactive.</p>\n<p><a href=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/06/PrettyTemplateHierarchy.jpg\" rel=\"thumbnail\"><img class=\"aligncenter size-large wp-image-7249\" alt=\"WordPress Template Hierarchy\" src=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/06/PrettyTemplateHierarchy.jpg?resize=500%2C218\" /></a></p>\n<p>The core information remains the same but now if you click on any one of the various parts of the diagram, it will take you to the appropriate Codex page. Between the various diagrams and the Codex, there is no way of <strong>not</strong> knowing what goes on within the WordPress template process.</p>\n<p>Which template hierarchy resource do you find the most useful?</p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/S8mjpUAuI8M\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jun 2013 15:34: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:6:\"Jeffro\";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:57:\"WPTavern: How To Adopt A Plugin Or Put It Up For Adoption\";s:7:\"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://www.wptavern.com/?p=7244\";s:7:\"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:\"http://feedproxy.google.com/~r/WordpressTavern/~3/GXyv4sYRk-s/how-to-adopt-a-plugin-or-put-it-up-for-adoption\";s: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:5272:\"<p>The other day, I was performing a plugin search for something to help me remove all the Post Revisions I had accumulated over the past few months as part of my clean-up process. Unfortunately, the plugin I used in the past was no longer available but it&#8217;s how I found that out that was the interesting thing. While the plugin was listed, the description said the plugin was empty and no long available. Just for giggles, I tried to install the plugin and nothing happened. Upon looking at the <a href=\"http://plugins.trac.wordpress.org/changeset/431935/delete-post-revisions\" title=\"http://plugins.trac.wordpress.org/changeset/431935/delete-post-revisions\">Trac changes for the plugin</a>, the last thing the plugin author did was delete all the files. After getting in touch with Otto about the plugin showing up in search results, he removed it but told me it wasn&#8217;t the proper way to go about closing a plugin down. So what is the proper way?</p>\n<h2>How To Orphan A Plugin:</h2>\n<p>Plugin authors have the ability to not only add other authors to the commit team but also hand over the entire plugin to someone else. Removing all the code related to the plugin is frowned upon because someone else could use that code either as a fork or the foundation for a similar type of plugin. But if you really want to have your plugin removed from the repository, sending an email to plugins@wordpress.org with your request should do the trick. If a plugin author decides to orphan a plugin that I&#8217;m using, I would really appreciate it if in the last update, somewhere within the readme or change log it stated that it would be the last version released and that it would no longer be supported. This would give ample opportunity for me to look at alternative plugins. </p>\n<h2>Adopting A Plugin:</h2>\n<p>There currently is no official way to adopt someone&#8217;s plugin. There has been some discussion in the past about creating an orphaned plugin program but those ideas never materialized. One of the reasons why the program never saw the light of day is because there were so few people wanting to adopt a plugin. Otto recommends trying to contact the author, and if that fails, email the plugins team plugins@wordpress.org. Show that you have code changes already made, as a good will thing, because what we don&#8217;t want is somebody taking over a plugin and making just superficial changes while putting their own name on it, sort of thing. So the plugins team verifies the code, tries to contact the original author, wait a reasonable time, etc. </p>\n<h2>WP Recycle:</h2>\n<p>There used to be a third party site that dealt exclusively with abandoned plugins called <a href=\"http://www.noupe.com/wordpress/wp-recycle-fresh-perpectives-for-starving-wordpress-plugins-73451.html\" title=\"http://www.noupe.com/wordpress/wp-recycle-fresh-perpectives-for-starving-wordpress-plugins-73451.html\">WPRecycle</a>. It was an offshoot of Pluginchief.com but it looks like the website has since gone offline. I&#8217;m going to try to get in touch with those behind WPRecycle to figure out why the program failed or why the site has gone offline. </p>\n<p>While researching for this post, I came across <a href=\"http://digwp.com/2012/10/abandoned-plugin-adoption-program/\" title=\"http://digwp.com/2012/10/abandoned-plugin-adoption-program/\">an article</a> published by Matt Jones on the Digwp website. Even though it was a pitch for the WPRecycle program, he <a href=\"http://digwp.com/wp-content/uploads/2012/10/infographic-abandoned-wp-plugins.jpg\" title=\"http://digwp.com/wp-content/uploads/2012/10/infographic-abandoned-wp-plugins.jpg\">came up with a stat that</a> showed 1/3 of the plugin repository at that time had the 2 year update warning. I wonder what those numbers are like today with 25,369 plugins in the repository.</p>\n<p>It&#8217;s worth noting that a plugin update can occur with no code changes taking place. If only a readme file of a plugin was changed this would count as an update and would reset the 2 year warning. </p>\n<h2>Just What Is Abandonment?</h2>\n<p>It&#8217;s hard to talk about plugin abandonment because there are no hard set rules that dictate when a plugin is officially abandoned. This was one of the biggest problems the core team faced when they discussed the requirements needed for a plugin to reach this status. A plugin with good code that doesn&#8217;t need to be updated for extended periods of time could be considered abandoned even though it wouldn&#8217;t be. </p>\n<p>Do you think orphaned plugins is a growing concern or is there a natural process in place that prevents this from ever becoming a serious problem? I would only consider it a serious problem if we reach a statistic where 50% or more of the plugins in the repository are abandoned. However, what if the total amount of plugins in the repository is 50,000 and 50% of those are dead? That still leaves us with 25,000 active plugins. What would the numbers have to be for a tipping point of users not finding the extensibility that has helped make WordPress as popular as it is today?</p>\n<p>Let&#8217;s continue this conversation in the comments. </p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/GXyv4sYRk-s\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jun 2013 13:26: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:6:\"Jeffro\";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:51:\"WordPress.tv: David Jenyns: WordPress and Video SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.tv/2013/06/07/david-jenyns-wordpress-and-video-seo/\";s: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:652:\"<div id=\"v-Bwuk5oEB-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19568/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19568/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19568&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/07/david-jenyns-wordpress-and-video-seo/\"><img alt=\"David Jenyns: WordPress and Video SEO\" src=\"http://videos.videopress.com/Bwuk5oEB/video-e4875b0ed4_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 07 Jun 2013 11:46: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:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress.tv: Warren Denley: WordPress 101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.tv/2013/06/07/warren-denley-wordpress-101/\";s: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:634:\"<div id=\"v-vrBc5nsT-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19562/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19562/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19562&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/07/warren-denley-wordpress-101/\"><img alt=\"Warren Denley: WordPress 101\" src=\"http://videos.videopress.com/vrBc5nsT/video-ce94ba4e3b_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 07 Jun 2013 11:07: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:12:\"WordPress.tv\";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:65:\"Lorelle on WP: Help Spread the Word – Writing for the Web Class\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://lorelle.wordpress.com/?p=8785\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://lorelle.wordpress.com/2013/06/06/help-spread-the-word-writing-for-the-web-class/\";s: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:506:\"There is still room available in my Writing for the Web course at Clark College Corporate and Continuing Education in Vancouver, Washington, just across the river from Portland, Oregon. This professional development course runs from June 11 &#8211; 27, 2013 on Tuesdays and Thursdays from 9AM &#8211; Noon. The class size is limited so there [&#8230;]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=8785&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Jun 2013 20:32:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";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:57:\"WPTavern: Where Are They Now? – Len Kutchma Of WPCanada\";s:7:\"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://www.wptavern.com/?p=7234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://feedproxy.google.com/~r/WordpressTavern/~3/oPB4PctF8rc/where-are-they-now-len-kutchma-of-wpcanada\";s: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:8524:\"<p>Since launching WPTavern.com, I&#8217;ve had the distinct pleasure to watch people become a part of this community with very little WordPress knowledge and within a few years, either work for themselves or for an established WordPress centric company. This new series will highlight folks that have been a part of the WPTavern community since the beginning to find out what they&#8217;re up to and what role, if any, WPTavern played in their success.  </p>\n<h2>The Interview:</h2>\n<p><strong>First off Len, can you tell us a little bit about yourself and what you&#8217;re up to these days?</strong></p>\n<p>I was born in Winnipeg back in &#8217;64 (yes, I&#8217;m that old) and moved to a small town in my late teens. I returned to Winnipeg about 30 years later, which is where I am now. I&#8217;ve worked in various fields including being self-employed for 13 years.</p>\n<p>I&#8217;ve been online in some form since 1999-2000. I started out by building my own static HTML sites. Like so many others I soon moved on to GeoCities and Tripod etc eventually settling on Blogger when it was still owned by Pyra Labs.</p>\n<p>I think it was 2006 when I quite accidentally discovered WordPress while surfing the web. I believe it was v2.0.4 and I was hooked! I immediately bought a hosting package, set up WordPress and haven&#8217;t looked back since.</p>\n<p>I was always on the search for new WordPress-centric sites and would pursue the Codex everyday in my search for knowledge. Before I knew it I started to help out in the WordPress support forums.</p>\n<p>These days I&#8217;m employed in the roofing/construction field although I would really like to move on to something else, what that is I have no idea. I still blog although not as often as I would like. Life keeps getting in the way.</p>\n<p><strong>Why did you decide to join the WPTavern forum in 2009?</strong></p>\n<p><a href=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/06/LenKutchmaJoinDate.jpg\" rel=\"thumbnail\"><img src=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/06/LenKutchmaJoinDate.jpg?resize=243%2C137\" alt=\"Len Kutchma Join Date\" class=\"aligncenter size-full wp-image-7236\" /></a></p>\n<p>I decided to join WPTavern back in 2009 for 2 reasons: a) I was eager to learn as much about WordPress as I could and b) I could see that the Tavern was going to become a thriving community and a rich source of information.</p>\n<p><strong>How did the WPTavern community help you progress with WordPress in the past 4 years?</strong></p>\n<p>This ties into my previous answer. When you&#8217;re passionate about something be it software or whatever else you can learn so much more by rubbing elbows and hanging out with others who share your passion. The Tavern forum quickly grew into a huge database of knowledge as I knew it would. Because of the social aspect of forums you just learn so much by reading various threads and by participating in discussions. More importantly the atmosphere was laid back and fun as opposed to a support forum. When you&#8217;re having fun you learn much more quickly.</p>\n<p><strong>What was your involvement with WeblogToolsCollection.com? </strong></p>\n<p><a href=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/06/LenKutchmaWeblogToolsCollection.jpg\" rel=\"thumbnail\"><img src=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/06/LenKutchmaWeblogToolsCollection.jpg?resize=500%2C124\" alt=\"Len Helping Out On Weblogtoolscollection\" class=\"aligncenter size-large wp-image-7237\" /></a></p>\n<p>My involvement with <a title=\"http://weblogtoolscollection.com/\" href=\"http://weblogtoolscollection.com/\">WeblogToolsCollection.com</a>. As I said earlier, I stumbled upon WordPress back in 2006 and started to search for WordPress-centric sites. That search led me to WeblogToolsCollection.com which at that time was the première WordPress-centric site. I visited the site every day including the forum. I soon gained an interest in WordPress themes. I started to help out in the WLTC forums by meticulously inspecting the various theme submissions. Mark Ghosh noticed my efforts and eventually made me an administrator in the forum. Prior to a new theme release being published on the main site it had to first pass my inspection in the forum where it was initially submitted. Of course I had help, there were a few others doing what I did, I was not alone.</p>\n<p>After some time I began to fill in as an author on the main site here and there when the regulars were on vacation etc.</p>\n<p>After a few years my involvement with the site began to wane, not because I lost interest, but because real life began to take over. My increasingly busy schedule in the real world left little to no time for the virtual one.</p>\n<p><strong>You have your own WordPress centric site now called WPCanada.ca is the site still active and what are your plans with it?</strong></p>\n<p><a href=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/06/LenKutchmaWPCanada.jpg\" rel=\"thumbnail\"><img src=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/06/LenKutchmaWPCanada.jpg?resize=321%2C112\" alt=\"WPCanada Logo\" class=\"aligncenter size-full wp-image-7238\" /></a></p>\n<p>I have my own WordPress-centric site at <a title=\"http://WPCanada.ca\" href=\"http://WPCanada.ca\">WPCanada.ca</a> as well as a personal blog at <a title=\"http://lenkutchma.com/\" href=\"http://lenkutchma.com/\">LenKutchma.com</a>. Additionally I use WordPress multisite to showcase the various child themes I&#8217;ve built for the Genesis framework by StudioPress.&nbsp; <a href=\"http://demo.wpcanada.ca/\">http://demo.wpcanada.ca/</a></p>\n<p>The site is still active although I haven&#8217;t done much blogging lately. It&#8217;s been some time since I released a new Genesis child theme as well. The reason for this is, as I have stated above, is my busy schedule. When I get home at 8pm after putting in a 12 hour day it&#8217;s already 9pm by the time I have a shower and eat dinner. By then I&#8217;m exhausted and blogging or building a theme is the furthest thing from my mind.</p>\n<p>I plan to keep on blogging and building themes because I enjoy it. However I can only do so as time allows. It&#8217;s that darn &#8220;real life getting in the way&#8221; thing again.</p>\n<p><strong>Have you had a chance to attend a Canadian WordCamp? What&#8217;s the enthusiasm like up there for WordPress?</strong></p>\n<p><a href=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/06/WordCampWinnipegLogo2013.jpg\" rel=\"thumbnail\"><img src=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/06/WordCampWinnipegLogo2013.jpg?resize=500%2C118\" alt=\"WordCamp Winnipeg2013 Logo\" class=\"aligncenter size-large wp-image-7239\" /></a></p>\n<p>I&#8217;ve never been to a WordCamp. Ironically we had a WordCamp up here in my hometown of Winnipeg this past weekend. It was the first time Winnipeg has played host to a WordCamp. Unfortunately I was out of town for a few days in Ontario and could not make it. It was organized by Automattician and fellow Winnipegger Ian Stewart and from what I understand he did a fabulous job!</p>\n<p>There is a large and active WordPress community up here as evidenced by the regular local WordPress Meetups. The first time I attended a local meetup I was surprised by how many people shared my passion for WordPress.</p>\n<p><strong>Is there anything you&#8217;d like to say to the general WordPress Community?</strong></p>\n<p>What would I like to say to the General WordPress Community? I suppose this is where I say something deep and profound but alas that is not the case. Although I think the software is great I think the community that has developed around it is greater. I&#8217;ve had the chance to meet some wonderful people and make some cool friends. It is the community that makes WordPress what it is. You can develop the greatest product or service known to man but if no one notices or is interested it is destined to fail. In the WordPress Community I see people going out of their way to help others. In the end that is what life is about.</p>\n<p>Whether you are a theme author, plugin developer, doc writer, core contributor, forum helper, WordPress news publisher etc, the contributions are what make WordPress what it is. And it is these people who make the WordPress Community the most awesome community I&#8217;ve ever been involved with. To everyone I say thank you!</p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/oPB4PctF8rc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Jun 2013 18:25:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:23:\"Alex King: Social 2.9.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=17083\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://alexking.org/blog/2013/06/06/social-2-9-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1853:\".threads-post-notice {\n	background: #e8e8e8;\n	padding: 10px;\n}\n.threads-post-notice a {\n	font-weight: bold;\n}\n\n<p>We&#8217;ve released version 2.9.1 of <a href=\"http://wordpress.org/plugins/social\">Social</a>; a WordPress plugin from <a href=\"http://mailchimp.com\">MailChimp</a> that gives you these great features:</p>\n<ol>\n<li>broadcasting your posts to Facebook and Twitter</li>\n<li>allows commenters on your site to log in with Facebook or Twitter</li>\n<li>allows comments on your site to be broadcast to Facebook or Twitter</li>\n<li>pulls in reactions from Facebook and Twitter as comments on your blog posts</li>\n</ol>\n<p>The thing I love most about Social is the way it allows me to post on my site (and own my data), but still interact with my friends on Facebook and Twitter.</p>\n<p>All of these features are optional and can be enabled/disabled as necessary. Set-up is nice and easy &#8211; there is no need to log in as a developer and create a Facebook or Twitter app; you just log in and go.</p>\n<p>Version 2.9.1 brings the following changes:</p>\n<ul>\n<li>Support for threaded comments on Facebook pages</li>\n<li>New setting for which post types Social&#8217;s broadcasting should be enabled for</li>\n<li>Likes and RTs are no longer auto-approved (can be re-enabled if desired, see the <a href=\"http://wordpress.org/plugins/social/faq/\">FAQ</a>)</li>\n<li>Load avatars from Facebook and Twitter via https</li>\n<li>Address issues with high byte characters</li>\n<li>Work around a bug in the Local Avatars plugin</li>\n<li>Add a few language localizations</li>\n</ul>\n<p>It&#8217;s a great update, give it a try. Enjoy!</p>\n<p class=\"threads-post-notice\">This post is part of the thread: <a href=\"http://alexking.org/blog/thread/social\">Social</a> &#8211; an ongoing story on this site. View the thread timeline for more context on this post.</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, 06 Jun 2013 15:14: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:4:\"Alex\";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:53:\"WordPress.tv: Travis Hensgen: Introducing MasterPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19227\";s:7:\"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:70:\"http://wordpress.tv/2013/06/06/travis-hensgen-introducing-masterpress/\";s: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:662:\"<div id=\"v-tj9fBObc-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19227/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19227/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19227&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/06/travis-hensgen-introducing-masterpress/\"><img alt=\"Travis Hensgen: Introducing MasterPress\" src=\"http://videos.videopress.com/tj9fBObc/video-4fb1c645b8_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 06 Jun 2013 14:37: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:12:\"WordPress.tv\";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:62:\"WordPress.tv: Vlad Lasky: Beating Spam on your Blog or Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19559\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2013/06/06/vlad-lasky-beating-spam-on-your-blog-or-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:674:\"<div id=\"v-Vf0Zxz7R-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19559/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19559/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19559&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/06/vlad-lasky-beating-spam-on-your-blog-or-website/\"><img alt=\"Vlad Lasky: Beating SPAM on your Blog or Website\" src=\"http://videos.videopress.com/Vf0Zxz7R/video-a7f72f34f5_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 06 Jun 2013 10:38:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:59:\"WordPress.tv: Kathy Alice Brown: Demystifying WordPress SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19386\";s:7:\"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:76:\"http://wordpress.tv/2013/06/05/kathy-alice-brown-demystifying-wordpress-seo/\";s: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:668:\"<div id=\"v-vFk1jfkw-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19386/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19386/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19386&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/05/kathy-alice-brown-demystifying-wordpress-seo/\"><img alt=\"Kathy Alice Brown: Demystifying WordPress SEO\" src=\"http://videos.videopress.com/vFk1jfkw/video-db8a577aca_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 06 Jun 2013 03:55: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:12:\"WordPress.tv\";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:52:\"WordPress.tv: Dylan Kuhn: Mad Mashups 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:28:\"http://wordpress.tv/?p=19394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.tv/2013/06/05/dylan-kuhn-mad-mashups-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:654:\"<div id=\"v-QBT0cX3o-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19394/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19394/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19394&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/05/dylan-kuhn-mad-mashups-with-wordpress/\"><img alt=\"Dylan Kuhn: Mad Mashups with WordPress\" src=\"http://videos.videopress.com/QBT0cX3o/video-db63f2ad8f_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 06 Jun 2013 02:48:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: Plugin Developers – Use Uninstall.php Please\";s:7:\"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://www.wptavern.com/?p=7227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://feedproxy.google.com/~r/WordpressTavern/~3/0EGMgxgR6eU/plugin-developers-use-uninstall-php-please\";s: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:9610:\"<h2>A Bit Of History First:</h2>\n<p>On January 7th, 2008 I <a title=\"http://weblogtoolscollection.com/archives/2008/01/07/uninstall-is-there-such-a-thing/\" href=\"http://weblogtoolscollection.com/archives/2008/01/07/uninstall-is-there-such-a-thing/\">published an article</a> that brought up a subject not many in the community at the time knew about. At the time, I had only used WordPress for a little over 7 months. I decided to venture into the database WordPress was installed in and discovered several discrepancies such as information from plugins I had recently deactivated and deleted from my installation were still inside the database. It turned out that some plugins were leaving their data, settings, or tables behind. This was a big deal at the time because it was occurring without users ever being aware of the problem. The post generated a great discussion on how this problem could be solved and <a title=\"http://weblogtoolscollection.com/archives/2008/01/12/uninstalling-conundrum-part-2/\" href=\"http://weblogtoolscollection.com/archives/2008/01/12/uninstalling-conundrum-part-2/\">I highlighted some of the best responses</a> in a follow-up post.</p>\n<p>At least some plugin authors were already ahead of the game by providing uninstallation features that would remove every trace of the plugin upon deactivation but that created yet another issue. We decided that there should be a clear distinction between <strong>deactivation</strong> and <strong>uninstallation</strong>. Deactivating would leave all settings and data in tact while uninstallation would remove everything. We as a community proposed the idea of an uninstall function being created to keep the separation between the two actions. I had also proposed that guidelines on the WordPress plugin repository be tightened up to the point where plugins were required to have an uninstall option but that idea was shot down because of the proposal of more restrictions. The following idea was <a title=\"http://weblogtoolscollection.com/archives/2008/01/12/uninstalling-conundrum-part-2/#comment-1208816\" href=\"http://weblogtoolscollection.com/archives/2008/01/12/uninstalling-conundrum-part-2/#comment-1208816\">first proposed</a> by Alex:</p>\n<blockquote><p>The WP core should have an API hook for uninstalling a plugin. A plugin can register a certain function to this hook, if that function is called, the plugin will uninstall all its customizations. Then, if a plugin registered an uninstall function, add a link on the plugins page for the plugin to be uninstalled, e.g. right underneath “Deactive”. (Of course, uninstalling implies deactivitating.) Additionally, a plugin must have the ability to return if it was successful, and if it wasn’t, it must have a defined possibility to issue a message (e.g. steps to be performed manually).</p></blockquote>\n<p>Otto <a title=\"http://weblogtoolscollection.com/archives/2008/01/12/uninstalling-conundrum-part-2/#comment-1209547\" href=\"http://weblogtoolscollection.com/archives/2008/01/12/uninstalling-conundrum-part-2/#comment-1209547\">agreed with Alex</a>.</p>\n<blockquote><p>Just like there are register_activation_hook and register_deactivation_hook functions, there needs to be a register_uninstall_hook function.</p>\n<p>Having such a registered hook would allow the plugin page to create an uninstall link for that plugin. This link would only be available if the plugin was already inactive. This leads to a natural two step process: deactivate then remove. We don’t want an implied deactivation, since this forces plugin authors to consider two different approaches to deactivation and uninstallation. Keep it simple.</p>\n<p>The uninstall button will call the uninstall hook for the plugin, which would take appropriate action to remove its options and tables and such.</p>\n<p>Seems like the best solution and keeps the interface clean and easy.</p></blockquote>\n<h2>The Implementation:</h2>\n<p>That discussion took place at the beginning of 2008. At the end of 2008, <a title=\"http://wordpress.org/news/2008/12/coltrane/\" href=\"http://wordpress.org/news/2008/12/coltrane/\">WordPress 2.7 &#8220;Coltrane&#8221;</a> was released to the world. The two biggest changes in WordPress 2.7 was the user interface redesign and the addition of auto-upgrades. But there was one more important addition in 2.7 that didn&#8217;t garner very much attention, <a title=\"http://codex.wordpress.org/Function_Reference/register_uninstall_hook\" href=\"http://codex.wordpress.org/Function_Reference/register_uninstall_hook\">register uninstall hook</a>. This hook as well as uninstall.php allowed the deactivation and uninstallation of plugins to be separate processes.</p>\n<p>Despite the presence of the uninstall hook, the <strong>emphasis is put on using the uninstall.php method</strong>. Not knowing why, I reached out to a guy that has over 50 plugins tied to his name, <a title=\"http://profiles.wordpress.org/coffee2code\" href=\"http://profiles.wordpress.org/coffee2code\" target=\"_blank\">Scott Reilly</a>. The following is our conversation which provides a clearer understanding of why one method is better than the other.</p>\n<p><em><strong>Jeff</strong> &#8211; Can you please explain why the uninstall.php method is the preferred method of uninstalling a plugin and its data versus using the uninstall hook?</em></p>\n<p><em><strong>Scott</strong> &#8211; It prevents the main plugin file from being run during uninstall, which can be problematic if the plugin runs code in the global space. It&#8217;s also better in that the uninstall code is centralized.</em></p>\n<p><em><strong>Jeff</strong> &#8211; Ok. Uninstall.php contains the uninstallation process while the hook can cause trouble. So as a plugin author, I would have control over and know exactly what is going to happen when using uninstall.php but if I were to rely on the hook, I wouldn&#8217;t exactly know what will happen, until the process occurs? Is my thinking correct?</em></p>\n<p><em><strong>Scott</strong> &#8211; Yes. If uninstall.php is present, that will be run when the plugin is uninstalled. If not present, then the main plugin file is run to check for the hook usage. depending on how the plugin is coded, it can cause problems if code is run in the global space (i.e. evaluated when the file is executed rather than properly wrapped into functions/classes that are called as needed). If you know what you&#8217;re doing, the hook can be used without ill effect. It&#8217;s safer to use uninstall.php, and a simpler recommendation to give most people.</em></p>\n<p>Plugin authors will need to first verify that <strong>register_uninstall_hook</strong> function exists because it didn&#8217;t prior to WordPress 2.7. Next, you&#8217;ll call your custom uninstall function to properly uninstall your plugin options. <strong>If you add uninstall functionality to your plugin, please add a warning of some type so that users will know that all data will be lost once the uninstallation process finishes.</strong></p>\n<h2>Still A Problem:</h2>\n<p>While cleaning up my database trying to figure out my <a title=\"http://www.wptavern.com/my-performance-woes\" href=\"http://www.wptavern.com/my-performance-woes\" target=\"_blank\">performance problems</a>, I noticed that there were a few tables created by plugins I had deleted a few years ago. Some of the tables contained a number of entries while others were just empty, but their unneeded presence annoyed me. This tells me that five years after the necessary functions were added to WordPress to uninstall plugins, plugin authors are still not utilizing them.</p>\n<p>This is my polite as can be request for authors of plugins that create, add or manipulate the database in any way to give end users the opportunity to restore their WordPress installation back to the way it was before they installed your plugin. To this day, users don&#8217;t have any idea about what is really going on in their database without actually going inside via phpMyAdmin which is always risky. I place this responsibility solely on the backs of plugin authors.</p>\n<h2>Further Reading:</h2>\n<p>Jacob Santos <a title=\"http://jacobsantos.com/blog/2008/general/wordpress-27-plugin-uninstall-methods\" href=\"http://jacobsantos.com/blog/2008/general/wordpress-27-plugin-uninstall-methods\" target=\"_blank\">published a detailed post</a> explaining the different plugin uninstallation methods.</p>\n<p><a title=\"http://lists.automattic.com/pipermail/wp-hackers/2010-May/031811.html\" href=\"http://lists.automattic.com/pipermail/wp-hackers/2010-May/031811.html\" target=\"_blank\">WordPress Hackers discussion in 2010</a> that discussed both options for uninstalling plugins. Be warned though, not every post maybe relevant to the original topic.</p>\n<p>Last but not least, check out the <a title=\"http://wordpress.org/plugins/wpdbspringclean/\" href=\"http://wordpress.org/plugins/wpdbspringclean/\" target=\"_blank\">WPDB SpringClean plugin</a>. This plugin will identify unoptimized tables and will allow you to optimize them by deleting the allocated unused space within a particular table. The plugin also optionally allows you to specify search criteria such as the minimum amount of overhead per table and minimum unused space for a table. (Anytime you perform work that involves the database, you should <strong>ALWAYS</strong> back up before moving forward.) Hat tip to <a href=\"http://profiles.wordpress.org/williamsba1\" title=\"http://profiles.wordpress.org/williamsba1\">Brad Williams</a>.</p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/0EGMgxgR6eU\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jun 2013 18:28:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:100:\"WordPress.tv: Mike Little, Simon Dickson: WordPress Co-founder Mike Little on The Birth of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19773\";s:7:\"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:116:\"http://wordpress.tv/2013/06/04/mike-little-simon-dickson-wordpress-co-founder-mike-little-on-the-birth-of-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:749:\"<div id=\"v-evtysVF6-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19773/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19773/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19773&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/04/mike-little-simon-dickson-wordpress-co-founder-mike-little-on-the-birth-of-wordpress/\"><img alt=\"Mike Little, Simon Dickson: WordPress Co-founder Mike Little on The Birth of WordPress\" src=\"http://videos.videopress.com/evtysVF6/video-e6d3b09eb7_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 04 Jun 2013 21:02: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:12:\"WordPress.tv\";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:65:\"WordPress.tv: Bret Simmons: Social Business and Personal Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wordpress.tv/2013/06/04/bret-simmons-social-business-and-personal-branding/\";s: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:680:\"<div id=\"v-qCr5gCVp-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19406/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19406/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19406&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/04/bret-simmons-social-business-and-personal-branding/\"><img alt=\"Bret Simmons: Social Business and Personal Branding\" src=\"http://videos.videopress.com/qCr5gCVp/video-ce6c59afec_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 04 Jun 2013 20:27: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:12:\"WordPress.tv\";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:29:\"WPTavern: My Performance Woes\";s:7:\"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://www.wptavern.com/?p=7223\";s:7:\"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:\"http://feedproxy.google.com/~r/WordpressTavern/~3/BwFliL6tmuI/my-performance-woes\";s: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:6373:\"<p>For some unknown reason, the performance of this website over the past 2-3 weeks has been terrible. While writing posts, I would routinely see a warning that said I was disconnected from the server while taking forever to reconnect. Navigating the back-end of the site was a major pain as each page seemed to take forever to load. I also saw Internal 500 Server errors as well as MySQL database timeouts. While trying to diagnose what the problem was, I used the <a title=\"http://developer.yahoo.com/yslow/\" href=\"http://developer.yahoo.com/yslow/\">YSlow FireFox Extension</a> with Firebug and saw GET requests taking 3-20 seconds to load.</p>\n<p><a href=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/06/longgetrequests.jpg\" rel=\"thumbnail\"><img class=\"aligncenter size-large wp-image-7224\" alt=\"Long Get Requests\" src=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/06/longgetrequests.jpg?resize=500%2C137\" /></a></p>\n<p>Fed up with the performance, I created a trouble ticket with HostGator. I&#8217;ve never had a problem with this company in the two years I&#8217;ve used them and the support has been stellar. You can read their response to me in its <a title=\"http://pastebin.com/155jWya3\" href=\"http://pastebin.com/155jWya3\">entirety here</a> but the gist of their response was that certain plugins were creating such a load on the server that they were the source of my problems. They specifically mentioned these plugins:</p>\n<ul>\n<li>All related posts plugins (WordPress Related Posts, YARPP) can cause significantly high load in most cases.</li>\n<li>WPRobot3 and other auto-posters can also cause high load issues, and should be disabled if they are causing issues</li>\n<li>StatPress and other wordpress statistics software should also be disabled, as these too can consume too much CPU in certain cases. Use Google Analytics instead for statistics as well as Awstats which already comes by default on your account.</li>\n<li>WP Post Views is also a plugin that you&#8217;ll want to avoid as it causes significant resource usage.</li>\n<li>All In One SEO Pack has also been found to cause issues in many cases and we generally recommend using Greg&#8217;s High Performance SEO Pack in its place.</li>\n<li>Any other plugins that are not vital to your WordPress should be disabled.</li>\n</ul>\n<p>I knew at some point, YARPP was going to give me problems because of the resources it uses to create the relationships between posts. The weird thing is that my WordPress install has performed fine for a several weeks without a problem. All of the issues occurred suddenly. I wonder if YARPP reached the point where it was hitting the performance limits. Another plugin I&#8217;ve had problems with over the years is W3 Total Cache. Caching plugins have caused me so many problems that I&#8217;ve finally decided not to use them. In my opinion, using various techniques and optimizations, this site doesn&#8217;t need to use either to be fast. I only used one or the other because of the majority of WordPress literature that says you have to. </p>\n<p>So while I didn&#8217;t put a lot of thought and credibility into their response, I decided to go through my list of installed plugins and make the hard call on whether I needed them or not. It turns out I was able to axe about 6 plugins from my install. Those 6 did include W3 Total Cache and YARPP. I also took this opportunity to go inside of the database to drop and empty tables that were no longer necessary. While performing these tasks, I came across a few tables from plugins I had uninstalled about two years ago. <em>This will be a subject for another post.</em> After completing the spring cleanup, I&#8217;m happy to report that the site both on the front and back-ends is much more responsive. I&#8217;ve yet to run into a timeout or MySQL error. I can&#8217;t figure out which part of the clean-up process offered me the most benefit but I&#8217;d put money on the removal of both W3 and YARPP. </p>\n<p>After <a href=\"https://twitter.com/wptavern/status/341903935969320960\" title=\"https://twitter.com/wptavern/status/341903935969320960\">announcing the results on Twitter</a>, most people weren&#8217;t surprised to hear about YARPP possibly causing issues. It&#8217;s a shame because using Woopra to watch website traffic in real-time, I was able to see a bunch of people clicking on related posts through the YARPP widget. I&#8217;m now on the hunt for a service that can provide the horsepower to display related posts similar to <a href=\"http://www.wptavern.com/review-swiftype-search-plugin\" title=\"http://www.wptavern.com/review-swiftype-search-plugin\">how I use Swiftype</a> for search. The first service I&#8217;m going to try is called <a href=\"http://nrelate.com/\" title=\"http://nrelate.com/\">nRelate</a>. Look for a review in the near future. </p>\n<h2>Just Switch Hosts:</h2>\n<p>Why is it that at the first sign of trouble with a webhost, the first thing people tell you to do is move away to a different one? Have they not experienced what it&#8217;s like to move between webhosting companies? It&#8217;s not fun, at all. I use it as the nuclear option because the experience is so painful. This is a good time to reference an article I wrote in 2010, <a href=\"http://www.wptavern.com/14-things-to-consider-when-choosing-a-webhost-for-your-wordpress-powered-site\" title=\"http://www.wptavern.com/14-things-to-consider-when-choosing-a-webhost-for-your-wordpress-powered-site\">14 Things To Consider When Choosing A Webhost For Your WordPress Powered Site</a>. While there is a lot of great information in that post, the biggest take away is this:</p>\n<blockquote><p>Always type into Google “Name Of Webhosting Company Sucks” to get a grasp on the issues that have been reported with that particular webhost. When webhosting companies screw up, people are very vocal about it and will stop at nothing to complain to all who will listen. Unfortunately, the side effect to this research is that you’ll find out every webhosting company in existence, sucks. </p></blockquote>\n<p>It doesn&#8217;t matter which webhosting company I choose, someone out there will tell me how terrible they are and to switch to a different host. Talk about the ultimate feedback loop. </p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/BwFliL6tmuI\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Jun 2013 20:23: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:6:\"Jeffro\";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:50:\"WordPress.tv: Stephen Cronin: Actionable Analytics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19484\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.tv/2013/06/04/stephen-cronin-actionable-analytics/\";s: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:650:\"<div id=\"v-Lxp0c32u-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19484/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19484/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19484&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/04/stephen-cronin-actionable-analytics/\"><img alt=\"Stephen Cronin: Actionable Analytics\" src=\"http://videos.videopress.com/Lxp0c32u/video-2a97c3c593_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 04 Jun 2013 19: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:12:\"WordPress.tv\";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:62:\"WordPress.tv: Vikki Maver: How to Write for an Online Audience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19487\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2013/06/03/vikki-maver-how-to-write-for-an-online-audience/\";s: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:674:\"<div id=\"v-2NE7gIuV-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19487/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19487/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19487&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/03/vikki-maver-how-to-write-for-an-online-audience/\"><img alt=\"Vikki Maver: How to Write for an Online Audience\" src=\"http://videos.videopress.com/2NE7gIuV/video-c5da61b155_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 03 Jun 2013 19:01: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:12:\"WordPress.tv\";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:49:\"WPTavern: Matt Mullenweg Interviewed By CNN Money\";s:7:\"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://www.wptavern.com/?p=7203\";s:7:\"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:91:\"http://feedproxy.google.com/~r/WordpressTavern/~3/9b8WI5yoA8o/matt-interviewed-by-cnn-money\";s: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:2103:\"<p>Matt Mullenweg was <a href=\"http://money.cnn.com/video/technology/2013/05/30/tech-co-wordpress-ceo-matt-mullenweg.cnnmoney\" title=\"http://money.cnn.com/video/technology/2013/05/30/tech-co-wordpress-ceo-matt-mullenweg.cnnmoney\">recently interviewed by CNN Money</a>. He had a couple of interesting answers for some of the questions asked. For example, when asked about being acquired, he responded that the only time he would consider being acquired is if he could run the company acquiring him. When asked about what they would be talking about 10 years from now, Matt said within the next 5 years, he believes the majority of WordPress usage will be from touch-driven devices. Last but not least, when he mentions failures, he believes that they didn&#8217;t embrace mobile soon enough because the open source community doesn&#8217;t like those closed platforms, but he still doesn&#8217;t feel like the mobile apps are really where they should be at. </p>\n<div class=\"aligncenter\"></div>\n<p>I find his comments on mobile apps especially interesting. I&#8217;ve used the WordPress for iOS app for some time now and while it&#8217;s definitely gotten better, some of the faults are not with the app itself, but with the device. I use an iPhone 4 and I&#8217;ve tried multiple times to write a blog post but each time I&#8217;ve given up in frustration. The auto-correct on the iPhone does more harm than good and the process for copying links from somewhere else to put inside the post just sucks. However, the app shines in comment notifications, post editing, and comment moderation. These three things are what makes the WordPress for iOS app the most useful to me. So what perplexes me is just how easy can the WordPress app make it to compose a post on the iPhone 4 before the device itself prevents any more improvements from happening? </p>\n<p>I want to hear from you on how you&#8217;re mobile experience has been with WordPress whether it&#8217;s with Blackberry, iPhone or Windows Phone 7?</p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/9b8WI5yoA8o\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jun 2013 19:00: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:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WordPress.tv: John McKenna &amp; Yan Zhang: How WordPress is Empowering Diversity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19481\";s:7:\"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:92:\"http://wordpress.tv/2013/06/03/john-mckenna-yan-zhang-how-wordpress-is-empowering-diversity/\";s: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:702:\"<div id=\"v-0WL7RbDa-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19481/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19481/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19481&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/03/john-mckenna-yan-zhang-how-wordpress-is-empowering-diversity/\"><img alt=\"John McKenna & Yan Zhang: How WordPress is Empowering Diversity\" src=\"http://videos.videopress.com/0WL7RbDa/video-bae9c50b7a_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 03 Jun 2013 18:11:55 +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:\"WordPress.tv\";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:43:\"WPTavern: WordPress.com Makes Me Hulk Smash\";s:7:\"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://www.wptavern.com/?p=7208\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://feedproxy.google.com/~r/WordpressTavern/~3/52a8pPE_y38/wordpress-com-makes-me-hulk-smash\";s: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:3159:\"<p>Every now and then I&#8217;ll have a reason to visit <a href=\"http://www.wordpress.com\" title=\"http://www.wordpress.com\">WordPress.com</a>. I don&#8217;t visit the site often so occasionally, I&#8217;ll see redesigns that have occurred that throw me for a loop. This is one of those times. 99% of the time when I visit, it&#8217;s to login to the dashboard of my .com blog. The old design contained a series of Freshly Pressed posts, a navigation menu at the top and bottom of the website and was generally easy to navigate. However, when I log into WordPress.com in its current state, I&#8217;m greeted with a giant road block. This is when I begin the process of looking around the site to figure out where the link is to go straight to the dashboard of my website. The first place I look is the top area of the right-hand sidebar, clicking on links that I think will take me to where I need to go. </p>\n<p><a href=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/06/WPdotComRightSidebar.jpg\" rel=\"thumbnail\"><img src=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/06/WPdotComRightSidebar.jpg?resize=297%2C260\" alt=\"WordPress.com Right Hand Sidebar\" class=\"aligncenter size-full wp-image-7210\" /></a></p>\n<p>Nope, not there. I scroll down the website to find the footer with the links I need and nope, not there either. At this point, I&#8217;m frustrated, wanting the old WP.com design back. I start thinking that I&#8217;m on the wrong page. I find a way to logout, type WordPress.com into my address bar thinking I&#8217;m not on the correct site and once again, a blue page loads. After clicking on every other link on this page, I finally discover that the top menu has a link called My Blogs that has the dashboard login link I was looking for. What angers me about this experience is that I don&#8217;t use WordPress.com reader at all yet it&#8217;s the default active tab when I login. Most of my frustrations would disappear if instead, the My Blogs tab was activated by default. </p>\n<p><a href=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/06/ReaderTab.jpg\" rel=\"thumbnail\"><img src=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/06/ReaderTab.jpg?resize=300%2C172\" alt=\"WordPress.com Reader Tab\" class=\"aligncenter size-medium wp-image-7211\" /></a></p>\n<p>It&#8217;s equally as frustrating trying to find the official WordPress.com blog. So many wasted clicks trying to find that one stupid link which should be at the footer of the site on every page. I&#8217;ve given up looking for it on the site. Instead, I end up going to Google to find it that way. I don&#8217;t know who&#8217;s idea it was to create some sort of gateway page that is completely separate from the original WordPress.com but it&#8217;s like a giant blue obstacle course. The original WordPress.com design was at least consistent. </p>\n<p>I want to know if I&#8217;m the only one with this type of routine experience with WordPress.com? One things for sure, WordPress.com does a great job at making me feel like an idiot. </p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/52a8pPE_y38\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jun 2013 16:50: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:41:\"WPTavern: More In-Depth WordPress History\";s:7:\"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://www.wptavern.com/?p=7199\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://feedproxy.google.com/~r/WordpressTavern/~3/NJ_4aTHoc3E/more-in-depth-wordpress-history\";s: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:1276:\"<p>Over the week-end, I had a chance to read <a title=\"http://wordpress.org/about/history/\" href=\"http://wordpress.org/about/history/\">chapter 3</a> of the WordPress history book which is an ongoing project by Siobhan McKeown. This is a fantastic project and one that I&#8217;m eagerly anticipating to read cover to cover. Chapter 3 is 37 pages long and covers the creation of WordPress from b2, b2++ into WordPress MU, how some of the earliest WordPress contributors became involved with the project, and perhaps most importantly, some of the core values that were developed early on that WordPress still tries to maintain to this day. Some of those values are:</p>\n<ul>\n<li>HTML Semantics and Web Standards Compliance</li>\n<li>Creating the lowest barrier to entry as possible</li>\n<li>Simplicity</li>\n<li>Unmatched User Experience</li>\n</ul>\n<p>In order to gauge where WordPress is going in the next 10 years, it&#8217;s important that we know what happened during the first 10. At one time, I thought I&#8217;d be the one writing the book on Matt and the history of WordPress but after reading Siobhan&#8217;s work, it&#8217;s clear that she is the right one for the job. </p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/NJ_4aTHoc3E\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jun 2013 15:15: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:6:\"Jeffro\";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:66:\"WordPress.tv: Narelle Hanratty: Recognizing the Cycles of 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:28:\"http://wordpress.tv/?p=19478\";s:7:\"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:\"http://wordpress.tv/2013/06/02/narelle-hanratty-recognizing-the-cycles-of-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:682:\"<div id=\"v-rdKCeqE2-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19478/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19478/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19478&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/02/narelle-hanratty-recognizing-the-cycles-of-blogging/\"><img alt=\"Narelle Hanratty: Recognizing the Cycles of Blogging\" src=\"http://videos.videopress.com/rdKCeqE2/video-87650b4e1b_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 02 Jun 2013 18:10:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:88:\"WordPress.tv: Phil Steinke: 9 1/2 Free WordPress Plugins to Keep You Sane While 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:28:\"http://wordpress.tv/?p=19471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wordpress.tv/2013/06/02/phil-steinke-9-12-free-wordpress-plugins-to-keep-you-sane-while-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:725:\"<div id=\"v-Orni3R7B-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19471/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19471/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19471&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/02/phil-steinke-9-12-free-wordpress-plugins-to-keep-you-sane-while-blogging/\"><img alt=\"Phil Steinke: 9 1/2 Free WordPress Plugins to Keep You Sane While Blogging\" src=\"http://videos.videopress.com/Orni3R7B/video-ac811a2795_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 02 Jun 2013 16:58: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:12:\"WordPress.tv\";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:62:\"WordPress.tv: Anthony Hortin: Getting Started with WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19444\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2013/06/01/anthony-hortin-getting-started-with-woocommerce/\";s: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:674:\"<div id=\"v-h3zx5hVT-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19444/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19444&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/01/anthony-hortin-getting-started-with-woocommerce/\"><img alt=\"Anthony Hortin: Getting Started with WooCommerce\" src=\"http://videos.videopress.com/h3zx5hVT/video-9a314f4748_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 01 Jun 2013 15:05: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:12:\"WordPress.tv\";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:59:\"WordPress.tv: Gary Pendergast: WordPress Performance Tuning\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19441\";s:7:\"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:76:\"http://wordpress.tv/2013/06/01/gary-pendergast-wordpress-performance-tuning/\";s: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:674:\"<div id=\"v-JPGj1tkZ-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19441/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19441/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19441&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/06/01/gary-pendergast-wordpress-performance-tuning/\"><img alt=\"Gary Pendergast: WordPress Performance Tuning\" src=\"http://videos.videopress.com/JPGj1tkZ/video-dc59114bc7_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 01 Jun 2013 13: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:12:\"WordPress.tv\";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:50:\"WPTavern: PSA: Don’t Give Your Money To The WPUA\";s:7:\"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://www.wptavern.com/?p=7182\";s:7:\"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:\"http://feedproxy.google.com/~r/WordpressTavern/~3/Bx4fwX6ndUc/psa-dont-give-your-money-to-the-wpua\";s: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:6810:\"<p><a href=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WPUAlogo.jpg\" rel=\"thumbnail\"><img class=\"alignright size-full wp-image-7183\" alt=\"WPUA Logo\" src=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WPUAlogo.jpg?resize=215%2C67\" /></a>The <a title=\"http://wpua.org\" href=\"http://wpua.org\">WordPress Users Association</a> was launched in December of 2010 with the goal of providing a central place for WordPress users to swap war stories, learn how to get the most out of WordPress, and take part in getting special discounts on themes and plugins. Fast forward three years later and the idea appears to have been a bust, despite the look and feel of their website. <em>*Note: This organization has no association to WordPress.org, the WordPress Foundation, or any official aspect of the WordPress project.</em></p>\n<p>Curious about what happened as well as whether they were still accepting payments or not, I reached out to a couple of their corporate sponsors as well as a few of their earlier members to get their accounts of what it was like to be a part of the WPUA. I also signed up for a monthly membership to see if the website was still processing payments and indeed they are. Thankfully Clickbank, their payment processor has a 60 day money back guarantee which I&#8217;ll be utilizing very soon.</p>\n<p>Two of the four platinum level sponsors I contacted, responded. I wanted to know what their experience was like and if they were still currently sponsoring the website. I did reach out to founder John Pozadzides through his personal site OneMansBlog and Twitter a few days ago but at the time of being published, have yet to receive a response. </p>\n<p><strong>Vsellis:</strong> <em>I don&#8217;t think the site has been active for quite a while. I ended my sponsorship a long time ago and see my logo is still up there but I don&#8217;t think there is any activity.</em></p>\n<p><strong>Synthesis Managed WordPress Hosting By Copyblogger Media:</strong> <em>JohnP gave me an account and we simply participated in the forums. We are no longer active though will support anything John is doing.</em></p>\n<p>Then I got in touch with Matthew McGarity, one of the first members to join the WPUA where he shared his experience with the site:</p>\n<p><em>Even after launching, the site wasn&#8217;t terribly active. I suspect that it&#8217;s dead now, considering the front page has remained virtually unchanged since I first registered in September 2010. Also, its Twitter feed appears to be on auto-pilot like the French radio station on &#8220;Lost.&#8221;</em></p>\n<p><em>The site forum&#8217;s design made it difficult to participate in conversations, and it ended up being more work than I cared for. The forums had no RSS feeds, and their email digests were limited to the day&#8217;s top-10 conversations. Something that notified me of new subjects and/or replies to conversations I was a part of would have helped me participate. But remembering to log into the site on a regular basis wasn&#8217;t worth it. I made suggestions on improving this experience; the site owner Wesley Williams took them under serious consideration, but I don&#8217;t think they were ever enabled.</em></p>\n<p><em>John P. and Cali promoted the site at its launch, and friends of mine advertised there. But I don&#8217;t know if they&#8217;re involved now.</em></p>\n<p><em>At one time, I think they were considering the design of some WordPress certifications (developer, etc.) and the related curriculum/criteria for each, but that didn&#8217;t go anywhere, probably due to lack of value and potential acceptance (e.g. anyone can get certified for anything by anyone).</em></p>\n<p><em>I had a free membership, which limited my access on the site to value propositions that might change my desire to use the site. I&#8217;m savvy and keyed into the open source community enough that I am able to extract the benefits/help I need without having to pay for membership on a site like this. But that is just me.</em></p>\n<h2>Free Themes:</h2>\n<p>While browsing through the four pages of themes offered to paying members only, I noticed most of them didn&#8217;t impress me very much. But more importantly, they are all 2-3 years out of date. Instead of linking themes directly to a repository, the themes were manually uploaded to WPUA. Using outdated themes is a big no no as some of the ones on this site could still contain the <a href=\"http://www.wptavern.com/the-aftermath-of-the-timthumb-vulnerability\" title=\"http://www.wptavern.com/the-aftermath-of-the-timthumb-vulnerability\">TimThumb vulnerability</a>. </p>\n<p><a href=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WPUAthemes.jpg\" rel=\"thumbnail\"><img src=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WPUAthemes.jpg?resize=500%2C211\" alt=\"Outdated Themes\" class=\"aligncenter size-large wp-image-7184\" /></a></p>\n<h2>Plugins:</h2>\n<p>Their plugins leave a lot to be desired. The plugins that are offered are tailored for internet marketers and are certainly not worth the price of admission. Just seeing one named PopupDomination gives me a bad feeling.</p>\n<p><a href=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WPUAPlugins.jpg\" rel=\"thumbnail\"><img src=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WPUAPlugins.jpg?resize=182%2C167\" alt=\"WPUA Plugins\" class=\"aligncenter size-full wp-image-7189\" /></a></p>\n<h2>Video Training:</h2>\n<p>Although there are a bunch of training videos on WPUA.org, none of them work. Instead, when you try to view them, the following error message pops up. Head to <a href=\"http://wordpress.tv/\" title=\"http://wordpress.tv/\">WordPress.TV</a> instead.</p>\n<p><a href=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WPUAOutDatedPlugin.jpg\" rel=\"thumbnail\"><img src=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WPUAOutDatedPlugin.jpg?resize=500%2C285\" alt=\"Stream Not Available\" class=\"aligncenter size-large wp-image-7186\" /></a></p>\n<h2>Conclusion:</h2>\n<p>Despite their front-page, numerous claims and somewhat active forums (free accounts mostly), this is not a website you want to be giving your money to. The purpose of this post is to inform anyone who may have come across the WordPress Users Association either by way of a Google search or a link and is interested in becoming a paid member. <strong>Don&#8217;t</strong>. Despite the money back guarantee, there is nothing on this website worth paying for. </p>\n<p><strong>*Update 6/04/2013*</strong><br />\nI have successfully completed the refund process. While it was not easy or as straightforward as it could be, I did get my money back. </p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/Bx4fwX6ndUc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 31 May 2013 21:45: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:6:\"Jeffro\";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:24:\"Dev Blog: Ten Good 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:33:\"http://wordpress.org/news/?p=2606\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2013/05/ten-good-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:9851:\"<p><img class=\"alignright\" alt=\"\" align=\"right\" src=\"http://wpdotorg.files.wordpress.com/2013/05/wp10.jpg\" width=\"316\" height=\"164\" />It&#8217;s been ten years since we started this thing, and what a long way we&#8217;ve come. From a discussion between myself and <a href=\"http://mikelittle.org/\">Mike Little</a> about <a href=\"http://ma.tt/2003/01/the-blogging-software-dilemma/\">forking our favorite blogging software</a>, to powering 18% of the web. It&#8217;s been a crazy, exciting, journey, and one that won&#8217;t stop any time soon.</p>\n<p>At ten years, it&#8217;s fun to reflect on our beginnings. We launched WordPress on 27th May 2003, but that wasn&#8217;t inception. Go back far enough, and you can <a href=\"http://zengun.org/weblog/archives/2001/06/post1958/\">read a post by Michel Valdrighi</a> who, frustrated by the self-hosted blogging platforms available, decided to write his own software; &#8220;b2, a PHP+MySQL alternative to Blogger and GreyMatter.&#8221; b2 was easy to install, easy to configure, and easy for developers to extend. Of all the blogging platforms out there, <a href=\"http://cafelog.com\">b2</a> was the right one for me: I could write my content and get it on the web quickly and painlessly.</p>\n<p>Sometimes, however, life gets in the way. In 2002, Michel stopped maintaining b2. Over time, security flaws became apparent and updates were needed and, while the b2 community could write patches and fixes, no one was driving the software forward. We were lucky that Michel decided to release b2 under the GPL; the software may have been abandoned, but we weren&#8217;t without options. A fork was always a possibility. That was where it stood in January 2003, when <a href=\"http://ma.tt/2003/01/the-blogging-software-dilemma/\">I posted about forking b2</a> and <a href=\"http://ma.tt/2003/01/the-blogging-software-dilemma/#comment-445\">Mike responded</a>. The rest, as they say, is history.</p>\n<p>From the very beginning to the present day, I&#8217;ve been impressed by the thought, care, and dedication that WordPress&#8217; developers have demonstrated. Each one has brought his or her unique perspective, each individual has strengthened the whole. It would be impossible to thank each of them here individually, but their achievements speak for themselves. In WordPress 1.2 the new Plugin API made it easy for developers to extend WordPress. In the same release <code>gettext()</code> internationalization opened WordPress up to every language (hat tip: <a href=\"http://ryan.boren.me/\">Ryan Boren</a> for spending hours wrapping strings with gettext). In WordPress 1.5 our Theme system made it possible for WordPress users to quickly change their site&#8217;s design: there was huge resistance to the theme system from the wider community at the time, but can you imagine WordPress without it? Versions 2.7, 2.8, and 2.9 saw improvements that let users install and update their plugins and themes with one click. WordPress has seen a redesign by <a href=\"http://v2.happycog.com/create/wordpress/?p=design/wordpress/\">happycog</a> (2.3) and gone under extensive user testing and redesign (<a href=\"http://www.slideshare.net/edanzico/riding-the-crazyhorse-future-generation-wordpress-presentation\">Crazyhorse</a>, Liz Danzico and Jen Mylo, WordPress 2.5). In WordPress 3.0 we merged WordPress MU with WordPress &#8212; a huge job but 100% worth it. And in WordPress 3.5 we revamped the media uploader to make it easier for people to get their images, video, and media online.</p>\n<p>In sticking to our commitment to user experience, we&#8217;ve done a few things that have made us unpopular. The <a href=\"http://tech.gaeatimes.com/index.php/archive/wordpress-wysiwyg-editor-is-a-disaster/\">WYSIWYG editor</a> was hated by many, especially those who felt that if you have a blog you should know HTML. Some developers hated that we stuck with our code, refusing to rewrite, but it&#8217;s always been the users that matter: better a developer lose sleep than a site break for a user. Our code isn&#8217;t always beautiful, after all, when WordPress was created most of us were still learning PHP, but we try to make a flawless experience for users.</p>\n<p>It&#8217;s not all about developers. WordPress&#8217; strength lies in the diversity of its community. From the start, we wanted a low barrier to entry and we came up with our &#8220;famous 5 minute install&#8221;. This brought on board users from varied technical background: people who didn&#8217;t write code wanted to help make WordPress better. If you couldn&#8217;t write code, it didn&#8217;t matter: you could answer a question in the support forums, write documentation, translate WordPress, or build your friends and family a WordPress website. There is <a href=\"https://make.wordpress.org/\">space in the community</a> for anyone with a passion for WordPress.</p>\n<p>It&#8217;s been wonderful to see all of the people who have used WordPress to build their home on the internet. Early on <a href=\"http://wordpress.org/news/2004/04/switchers/\">we got excited</a> by <a href=\"http://wordpress.org/news/2004/04/more-switchers/\">switchers</a>. From a community of tinkerers we grew, as writers such as <a href=\"http://ma.tt/2004/05/om-malik/\">Om Malik</a>, <a href=\"http://dougal.gunters.org/blog/2004/05/15/mark-pilgrim-switches/\">Mark Pilgrim</a>, and <a href=\"http://ma.tt/2004/07/mollycom-switches/\">Molly Holzschlag</a> made the switch to WordPress. Our commitment to effortless publishing quickly paid off and has continued to do so: <strong>the WordPress 1.2 release saw 822 downloads per day, our latest release, WordPress 3.5, has seen 145,692 per day.</strong></p>\n<p>I&#8217;m continually amazed by what people have built with WordPress. I&#8217;ve seen <a href=\"http://justintimberlake.com/main/\">musicians</a> and <a href=\"http://ma.tt/2013/01/neil-leifer-on-wordpress/\">photographers</a>, magazines such as <a href=\"http://life.time.com/\">Life</a>, <a href=\"http://boingboing.net/\">BoingBoing</a>, and the <a href=\"http://observer.com/\">New York Observer</a>, <a href=\"http://www.compliance.gov/\">government websites</a>, a <a href=\"http://josephscott.org/archives/2011/05/pressfs-a-wordpress-filesystem/\">filesystem</a>, <a href=\"http://www.ymcanyc.org/association/pages/y-mvp\"> mobile applications</a>, and even <a href=\"http://www.viper007bond.com/2010/06/12/so-apparently-wordpress-can-guide-missiles/\">seen WordPress guide missiles</a>.</p>\n<p>As the web evolves, WordPress evolves. Factors outside of our control will always influence WordPress&#8217; development: today it&#8217;s mobile devices and retina display, tomorrow it could be Google Glass or technology not yet conceived. A lot can happen in ten years! As technology changes and advances, WordPress has to change with it while remaining true to its core values: making publishing online easy for everyone. How we rise to these challenges will be what defines WordPress over the coming ten years.</p>\n<p><strong>To celebrate ten years of WordPress, we&#8217;re working on a book about our history.</strong> We&#8217;re carrying out interviews with people who have involved with the community from the very beginning, those who are still around, and those who have left. It&#8217;s a huge project, but we wanted to have something to share with you on the 10th anniversary. To learn about the very early days of WordPress, just after Mike and I forked b2 <a href=\"http://wordpress.org/about/history/\">you can download Chapter 3 right here</a>. We&#8217;ll be releasing the rest of the book serially, so watch out as the story of the last ten years emerges.</p>\n<p>In the meantime, <a href=\"http://ma.tt/2013/05/dear-wordpress/\"> I penned my own letter to WordPress</a> and other community members have been sharing their thoughts:</p>\n<ul>\n<li><a href=\"http://zed1.com/journalized/archives/2013/01/25/wordpress-a-10-year-journey/\">Mike Little on our Ten Year Journey</a>.</li>\n<li>Core contributor Helen Hou-Sandi <a href=\"http://helen.wordpress.com/2013/05/27/happy-10th-wordpress-and-thanks-from-my-little-family/\">wishes WordPress happy birthday</a>.</li>\n<li>Peter Westwood on <a href=\"http://blog.ftwr.co.uk/archives/2013/05/27/a-decade-gone-more-to-come/\">a decade gone</a>.</li>\n<li>Support rep Mika Epstein <a href=\"http://ipstenu.org/2013/you-me-and-wp/\">on her WordPress journey</a>.</li>\n<li>Dougal Campbell <a href=\"http://dougal.gunters.org/blog/2013/05/27/instagram-my-wife-suzecampbell-and-i-celebrating-the-wordpress-10th-anniversary-with-bbq-in-our-wordpress-shirts-wp10/\">celebrating with his wife, Suze</a>.</li>\n<li>Otto on <a href=\"http://ottodestruct.com/blog/2013/how-wp-affected-me/\">how WordPress affected him</a>.</li>\n</ul>\n<p>You can see how WordPress&#8217; 10th Anniversary was celebrated all over the world <a href=\"http://wp10.wordpress.net/\">by visiting the wp10 website</a>, according to Meetup we had 4,999 celebrators.</p>\n<p>To finish, I just want to say thank you to everyone: to the developers who write the code, to the designers who make WordPress sing, to the worldwide community translating WordPress into so many languages, to volunteers who answer support questions, to those who make WordPress accessible, to the systems team and the plugin and theme reviewers, to documentation writers, event organisers, evangelists, detractors, supporters and friends. Thanks to the jazzers whose music inspired us and whose names are at the heart of WordPress. Thanks to everyone who uses WordPress to power their blog or website, and to everyone who will in the future. Thanks to WordPress and its community that I&#8217;m proud to be part of.</p>\n<p>Thank you. I can&#8217;t wait to see what the next ten years bring.</p>\n<p><em>Final thanks to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for help with this post.</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:\"Fri, 31 May 2013 17:54:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:44:\"WPTavern: iThemes On The Future Of 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:31:\"http://www.wptavern.com/?p=7178\";s:7:\"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:96:\"http://feedproxy.google.com/~r/WordpressTavern/~3/YFjljnCJuSU/ithemes-on-the-future-of-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:1639:\"<p><a href=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2009/08/ithemeslogo.png\" rel=\"thumbnail\"><img src=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2009/08/ithemeslogo.png?resize=255%2C69\" alt=\"iThemes Logo\" class=\"alignright size-full wp-image-2310\" /></a>It&#8217;s hard to disagree with anything Cory Miller says in his <a href=\"http://ithemes.com/2013/05/28/the-future-of-wordpress-6-keys/\" title=\"http://ithemes.com/2013/05/28/the-future-of-wordpress-6-keys/\">6 Keys To The Future Of WordPress Post</a>. One of his keys is Blogging. He&#8217;s right in that blogging is the history and heritage of the WordPress software but over the past few years, so much has been done to try to rid the stigma of WordPress being just for blogging. That seems like a trend that will continue so the challenge is, how do we maintain that heritage without it dissolving?</p>\n<p>The first key correlates with another in Identity. To this day, if you ask 10 people what is WordPress, you&#8217;re likely to get at least 7 different answers ranging anywhere from blogging system, publishing platform, to content management system and to top it off, all the answers are correct. The questions Cory asks are very important: <strong>What is WordPress? What is it supposed to do for people? And how do we preserve and protect that while innovating and adapting?</strong> Each feature, each enhancement, everything that goes into WordPress should be focused around the answers to those questions.</p>\n<p>Overall, I think Cory nailed it.</p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/YFjljnCJuSU\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 31 May 2013 17:39: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:6:\"Jeffro\";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:62:\"WPTavern: 10th Anniversary Interview With WordPress Co-Founder\";s:7:\"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://www.wptavern.com/?p=7169\";s:7:\"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:114:\"http://feedproxy.google.com/~r/WordpressTavern/~3/A_0z7n20F44/10th-anniversary-interview-with-wordpress-co-founder\";s: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:2731:\"<p>WordPress developer Simon Dickson had the chance to sit down with WordPress co-founder Mike Little for about a half hour during their WordPress 10th anniversary party. This is one of the longest interviews with Mike that I&#8217;ve seen and it covers his history of using computers, programming, the beginnings of WordPress and several other topics. One of the biggest takeaways I&#8217;ve had from watching all the interviews with Mike Little is that he is just as humble if not more so than Matt Mullenweg. </p>\n<div class=\"aligncenter\"></div>\n<p>When you listen to the story of how WordPress began from Mike&#8217;s perspective, you begin to realize how the planets must have been aligned in order for those two to meet. There are a couple of different time points in the early days of WordPress that could have changed everything. For example, the lead developer for b2 disappeared without a trace for several months. Because of the disappearance and the presence of major bugs as well as the domain coming up for renewal, Matt published his <a href=\"http://ma.tt/2003/01/the-blogging-software-dilemma/\">Software Dilemma post</a> where Mike Little volunteered to help out with the forking of b2. If the lead developer didn&#8217;t disappear, would we be using WordPress today? Then there&#8217;s the mass exodus from MoveableType in 2004 after they announced MT3 would have a $70.00 fee attached to it. Considering MT was one of the leading platforms at the time, had MT continued to be free, how would that have affected WordPress as we know it? Last but not least, TextPattern appeared to be everything Matt wanted in a publishing platform but because of its license, decided not to work with it. If TextPattern would have been licensed under the GPL at the time, would WordPress have been created? Ironically, TextPattern is now licensed under the GPL version 2, the same license as WordPress. </p>\n<p>A couple of other tidbits to take away from this interview:</p>\n<ul>\n<li>Mike Little was responsible for the Links Manager in b2 which ended up as a part of WordPress.</li>\n<li>All of the settings pages, Mike wrote the original options code for those</li>\n<li>He is also responsible for the WP-Configsample.php file to prevent people from overwriting settings</li>\n<li>WordCamp UK Birmingham changed Mikes life because of the amount of people he saw raise their hand when asked how many people make most or all of their living from WordPress.</li>\n</ul>\n<p>Mike was around during the mass exodus from MoveableType in 2004. I&#8217;d like to know if he noticed it, or had any thoughts on that part of WordPress history.</p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/A_0z7n20F44\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 31 May 2013 15:06: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:6:\"Jeffro\";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:99:\"WordPress.tv: Gene Hammett: Designers &amp; Developers: Creating New Revenue Streams 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:28:\"http://wordpress.tv/?p=19428\";s:7:\"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:\"http://wordpress.tv/2013/05/31/gene-hammett-designers-developers-creating-new-revenue-streams-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:737:\"<div id=\"v-0qiNzDDW-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19428/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19428/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19428&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/31/gene-hammett-designers-developers-creating-new-revenue-streams-with-wordpress/\"><img alt=\"Gene Hammett: Designers & Developers: Creating New Revenue Streams with WordPress\" src=\"http://videos.videopress.com/0qiNzDDW/video-894a3dabff_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 31 May 2013 13:49:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:71:\"WordPress.tv: Nicole Rose Dion: Integrating Social Media into WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19418\";s:7:\"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:\"http://wordpress.tv/2013/05/31/nicole-rose-dion-integrating-social-media-into-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:692:\"<div id=\"v-P93FfuY0-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19418/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19418/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19418&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/31/nicole-rose-dion-integrating-social-media-into-wordpress/\"><img alt=\"Nicole Rose Dion: Integrating Social Media into WordPress\" src=\"http://videos.videopress.com/P93FfuY0/video-9882729fdc_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 31 May 2013 12:39: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:12:\"WordPress.tv\";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:27:\"Matt: A Contrarian Futurist\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42442\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2013/05/a-contrarian-futurist/\";s: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:174:\"<p>David Cowan writes as <a href=\"http://allthingsd.com/20130528/a-contrarian-futurist/\">A Contrarian Futurist</a>, with thoughts on wearable computing and cyber warfare.</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, 30 May 2013 21:47: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: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: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:73:\"WPTavern: New eBook On How To Become A WordPress Development Professional\";s:7:\"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://www.wptavern.com/?p=7163\";s:7:\"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:125:\"http://feedproxy.google.com/~r/WordpressTavern/~3/7IMi52ow5Yc/new-ebook-on-how-to-become-a-wordpress-development-professional\";s: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:5389:\"<p><a href=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WordPressDevelopmentProfessional.jpg\" rel=\"thumbnail\"><img src=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/05/WordPressDevelopmentProfessional.jpg?resize=245%2C75\" alt=\"WordPress Development Professional  Logo\" class=\"alignright size-full wp-image-7164\" /></a>Always on the lookout for new resources to share with others to help learn WordPress related topics, I came across an <a href=\"http://wpthemetutorial.com/downloads/wordpress-development-professional/\" title=\"http://wpthemetutorial.com/downloads/wordpress-development-professional/\">eBook published</a> ($29.99-$39.99) by long time WordPress developer <a href=\"http://profiles.wordpress.org/curtismchale\" title=\"http://profiles.wordpress.org/curtismchale\">Curtis McHale</a>. I got in touch with Curtis to ask him a few questions concerning his book, including whether or not he plans on contributing to the WordPress handbook project.</p>\n<p><strong>What was the inspiration for writing the book?</strong></p>\n<p>I wanted to write the book after dealing with so much code from beginning developers. Yes it was bad, but they just didn&#8217;t know any better so what else could you expect? My hope was that by reading the book a beginning developer, or developer not familiar with WordPress, would have a great set of road signs as they built stuff.</p>\n<p>No it doesn&#8217;t cover every part of WordPress, but it&#8217;s a great overview so that the reader is left with a way to evaluate all the random tutorials you come across online. There are a lot of bad ones, and when you don&#8217;t have any framework to judge them you just use the bad ones with the good..</p>\n<p><strong>Have you seen a good response to the book since its release?</strong></p>\n<p>I&#8217;d say it depends on how you want to measure it. Am I sitting back in a pool of money not doing client work? Nope. Book sales were pretty good at the beginning but they have tapered off quite a bit.</p>\n<p>Out of the few review copies I sent out anyone that has provided any feedback has said that the content is good and does hit it&#8217;s goal.</p>\n<p>Ultimately it&#8217;s still super awesome to wake up and see a book sale, or make a sale on the weekend. I&#8217;m pretty happy with getting it out there and I&#8217;d do another one. So yes I am happy with the response.</p>\n<p><strong>What do you hope readers will gain after reading your book?</strong></p>\n<p>As I said above, a way to judge all the information on WordPress out there. The problem is not finding what you want, it&#8217;s finding something <strong>good</strong>.</p>\n<p>This book is not for experienced developers. You may pick up a few tips/hints but it won&#8217;t be revolutionary at all.</p>\n<p><strong>What will readers find in WordPress Development Professional that they wouldn&#8217;t be able to find in the Codex?</strong></p>\n<p>First, it&#8217;s all in one spot. You don&#8217;t have to dive between 50 different pages to find best practices on Themes, plugins…</p>\n<p>Outside of that, you get a good insight in to how I develop projects. It&#8217;s always interesting to see what someone else does different from you. It at least can make you evaluate the way you do things to see if you&#8217;re right and I&#8217;m wrong.</p>\n<p><strong>Have you thought about contributing to any of the Handbook projects such as Developing WordPress Themes (in adherence to the theme review guidelines) or Developing Plugins for the repository?</strong></p>\n<p>Yes and I was in on a few meetings for the handbooks at the beginning, but I&#8217;m terrible at keeping up with all the IRC meetings. Technically I&#8217;m a Theme Reviewer (haven&#8217;t done much in a while) and I&#8217;ve done a bunch of documentation for 3.5 on specific functions.</p>\n<p>If you really tracked my contributions you&#8217;d find a flurry of activity in one spot (like documentation) then I go dark for a while. With the 3.5 documentation I just got on the blog post about things that were needed and knocked off 10 functions in an afternoon. Did a bit of clean up and then I haven&#8217;t done much with docs since. I had about the same thing going with Theme Review, did a bunch then a few here and there, then I haven&#8217;t done much.</p>\n<p>I always think that I should be doing more to assist, but then it&#8217;s a matter of finding time.</p>\n<p><strong>Are there any plans for a second edition?</strong></p>\n<p>Yes there are plans for a second Edition. I&#8217;ve got a bunch of notes going on things I should check up on, some spelling mistakes have been submitted. I&#8217;d like to add screencasts for some portions as well.</p>\n<p>It&#8217;s more likely that I&#8217;ll release a few other &#8216;micro courses&#8217;. I&#8217;ve got outlines for Transients, Roles and Caps, and post meta. They&#8217;d have a book, screencasts blog content and access to a general help/discussion forum. Costs will probably be between $10 &#8211; $20 and to keep access to the support forum after a year there will be some fee. At least that&#8217;s my pricing thoughts today. Once I get the outlines done I&#8217;ll put them out to my email list (you know the proven customers) for some voting to see which one goes first.</p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/7IMi52ow5Yc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 May 2013 20:56:15 +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:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WordPress.tv: Michael Earley: Using Woo Commerce for Online Stores\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19514\";s:7:\"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:\"http://wordpress.tv/2013/05/30/michael-earley-using-woo-commerce-for-online-stores/\";s: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:688:\"<div id=\"v-Lbvpb3IC-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19514/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19514/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19514&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/30/michael-earley-using-woo-commerce-for-online-stores/\"><img alt=\"Michael Earley: Using Woo Commerce for Online Stores\" src=\"http://videos.videopress.com/Lbvpb3IC/video-707e55bb18_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 30 May 2013 18:45: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:12:\"WordPress.tv\";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:39:\"WPTavern: Easy Commerce With ShopLocket\";s:7:\"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://www.wptavern.com/?p=7148\";s:7:\"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:91:\"http://feedproxy.google.com/~r/WordpressTavern/~3/ilP86x3hDsM/easy-commerce-with-shoplocket\";s: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:6906:\"<p><a href=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/shoplocketlogo.jpg\" rel=\"thumbnail\"><img class=\"alignleft size-full wp-image-7150\" alt=\"ShopLocket Logo\" src=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/shoplocketlogo.jpg?resize=151%2C39\" /></a>E-Commerce is hard, for both developers and end users. That&#8217;s why I was happy to see something like <a title=\"http://wordpress.org/plugins/shoplocket/\" href=\"http://wordpress.org/plugins/shoplocket/\">ShopLocket</a> come across my inbox. <a href=\"https://www.shoplocket.com/\" title=\"https://www.shoplocket.com/\">ShopLocket</a> is perfect for those who have one, or just a few products to sell on their website. Instead of going through the process of installing an entire e-commerce system like WooCommerce, Shopp, or WP E-Commerce, you can use ShopLocket to create a product widget, embed it on a page and start selling.</p>\n<h2>Getting Started:</h2>\n<p>Connecting the plugin to the ShopLocket website was an easy process. In fact, unlike most other plugins, I didn&#8217;t have to enter an API key. I only had to authorize ShopLocket access to my website via a token. Once the two are connected, two things happen. A new button is added to the post/page writing panel called <strong>Add Product</strong> and a new <strong>ShopLocket widget</strong> is added to the list of available widgets. The add product button will add a shortcode within the post that will link to the product you choose.</p>\n<p><a href=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/05/shoplocketAddProductButton.jpg\" rel=\"thumbnail\"><img class=\"aligncenter size-full wp-image-7153\" alt=\"ShopLocket Add Product Button\" src=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/05/shoplocketAddProductButton.jpg?resize=389%2C72\" /></a></p>\n<p>All of the product creation steps occur on the ShopLocket website. You start off by naming your product, giving it a price, providing a short description and then adding up to four product images. You can then select whether your product will be a digital file for download or if it will ship to customers. Then, if you would like to customize the product even more, there are the advanced options that enable you to add different variants of options such as Size, Color, etc. You can also charge a set tax, track the number of stock, shipping, expiration date, comparison price (in case it&#8217;s on sale) provide a custom landing page URL or accept pre-orders.</p>\n<p><a href=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/05/ShopLocketProductEditing.jpg\" rel=\"thumbnail\"><img class=\"aligncenter size-large wp-image-7154\" alt=\"ShopLocket Product Editing\" src=\"http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/05/ShopLocketProductEditing.jpg?resize=339%2C500\" /></a></p>\n<p>Once all the product information is complete, the next step is to style the widget. Because this is a hosted service out of your control, you don&#8217;t have the ability to perfectly match up the widget to an existing design. However, between the six different styles, there should be one that fits. It would be nice if we could at least change the background colors or the button colors but it&#8217;s not a deal breaker. After you&#8217;ve chosen a design of your liking, the next step is to publish the product.</p>\n<div id=\"attachment_7155\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/ShopLocketWidgetStyles.jpg\" rel=\"thumbnail\"><img class=\"size-large wp-image-7155\" alt=\"ShopLocket Widget Styles\" src=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/ShopLocketWidgetStyles.jpg?resize=308%2C500\" /></a><p class=\"wp-caption-text\">All 6 Styles</p></div>\n<p>After the product has been published, you&#8217;ll be provided an embed code to place the product anywhere on your site. Alternatively, you can <a title=\"https://www.shoplocket.com/products/7MZ9a-tavern-mug\" href=\"https://www.shoplocket.com/products/7MZ9a-tavern-mug\">link directly</a> to the product page on ShopLocket.com. The marketing wizard is composed of a sidebar with links to Facebook, Twitter, and Pinterest.</p>\n<div id=\"attachment_7157\" class=\"wp-caption aligncenter\"><a href=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/05/ShopLocketMarketingWizard.jpg\" rel=\"thumbnail\"><img class=\"size-medium wp-image-7157\" alt=\"ShopLocket Marketing Wizard\" src=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/05/ShopLocketMarketingWizard.jpg?resize=192%2C300\" /></a><p class=\"wp-caption-text\">Marketing Wizard</p></div>\n<p>After the product is published, you&#8217;re ready to start taking orders. In order to process payments, ShopLocket supports Paypal and Stripe. If you don&#8217;t have either, you&#8217;ll be given an allotment of type to set up each account. Since ShopLocket is doing most of the hard work, they get paid 2.5% on any transaction you make. This is in addition to any Paypal or Stripe fees.</p>\n<p>One of the best aspects of ShopLocket is that buyers won&#8217;t have to add an item to a shopping cart and then go to a separate website to check-out. This keeps the buyer engaged and more likely to go through the entire check-out process.</p>\n<h2>Conclusion:</h2>\n<p>Overall, my experience of creating and sharing products with ShopLocket was great. I think something like this is a huge deal for people who have a select amount of items to sell, without needing a catalog. Sure, you could go through the process of configuring a Paypal button specifically for a product but going through ShopLocket seems so much easier. Setting up an entire e-commerce system for just a few products doesn&#8217;t make a lot of sense to me when something like this exist. Another reason ShopLocket is a big deal is because of WordPress.com. WordPress.com has a strict assortment of widgets and to the best of my knowledge, there has never been a way to do anything involving e-commerce on WordPress.com websites.</p>\n<p>Back on March 28th of this year, <a title=\"http://techcrunch.com/2013/03/28/shoplocket-blog-commerce/\" href=\"http://techcrunch.com/2013/03/28/shoplocket-blog-commerce/\">it was announced</a> WordPress VIP and Enterprise customers would be the first to get access to ShopLocket integration. At some point down the road, this service will be available to the regular WP.com customer base but it&#8217;s not clear whether it will be a paid upgrade or if it will be allowed for free across all sites. I&#8217;d be very surprised if WordPress.com didn&#8217;t charge for this as an upgrade. But considering how many talented people there is writing on WordPress.com, something like this could provide many with the ability to make some cash through physical or digital goods instead of having to rely on ads.</p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/ilP86x3hDsM\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 May 2013 16:01:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:76:\"WordPress.tv: Russell Aaron: Build Your Website Before You Install WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19360\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wordpress.tv/2013/05/30/russell-aaron-build-your-website-before-you-install-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:708:\"<div id=\"v-Y2AgR1a4-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19360/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19360/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19360&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/30/russell-aaron-build-your-website-before-you-install-wordpress/\"><img alt=\"Russell Aaron: Build Your Website Before You Install WordPress\" src=\"http://videos.videopress.com/Y2AgR1a4/video-a4dad7628b_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 30 May 2013 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:64:\"WP iPhone: Version 3.6 is here: redesigned first time experience\";s:7:\"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:38:\"https://wpiphone.wordpress.com/?p=1406\";s:7:\"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:89:\"http://ios.wordpress.org/2013/05/30/version-3-6-is-here-redesigned-first-time-experience/\";s: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:3618:\"<p><img class=\"alignright size-medium wp-image-1424\" alt=\"wpios-3-6-nux\" src=\"http://wpiphone.files.wordpress.com/2013/05/wpios-3-6-nux-ribbon1.jpg?w=240&h=517\" width=\"240\" height=\"517\" />Hey there! We’ve been busy since our last update and we’re excited to announce WordPress for iOS 3.6 is now available in the <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?ls=1&mt=8\">App Store</a>. The main focus of this release was creating a great first time user experience, but we’ve included many other improvements as well. Read on for the details!</p>\n<h3>Redesigned setup</h3>\n<p>Previously, if you’d never before used the app, or if you were new to WordPress in general, the app might not have felt very welcoming when first getting started. With this update we change all that. Now, when you launch the app for the first time we showcase what’s possible.</p>\n<p>If you don’t have a site yet, now it’s easier than ever to create a new WordPress.com site straight from the app, and if you already have a WordPress site, just enter your username, password, and site address and you’ll be ready to go. If you have Jetpack installed, you’ll be prompted for your WordPress.com credentials to get access to Stats and notifications.</p>\n<h3>New post shortcuts</h3>\n<p>Chances are, if you are going to the posts list you probably want to create a new post, and the same goes for pages. Now you&#8217;ll find a + symbol on the sidebar that&#8217;ll take you straight to the editor, ready to compose a new post or page in no time.</p>\n<p>Thanks to maxday for his first contribution</p>\n<h3>Other improvements</h3>\n<p>Other things improved in 3.6:</p>\n<ul>\n<li>Faster notifications: we noticed a few redundant things that were making notifications slower than they needed to be, so we optimized that.</li>\n<li>Emoticons! Notifications now show Emoji for all the known <a href=\"http://codex.wordpress.org/Using_Smilies\">WordPress emoticons</a>.</li>\n<li>More translations: the app is now fully translated to 12 languages, and we welcome Danish, Korean, and Russian to the list. Let us know if you want to help with translation.</li>\n</ul>\n<h3>What&#8217;s next?</h3>\n<p>Coming up soon, we are finishing up yet another release with an improved Reader, and a better system to store your passwords.</p>\n<p>Want to keep up with the latest happenings in the WordPress mobile world? Head over to <a href=\"http://make.wordpress.org/mobile\">http://make.wordpress.org/mobile</a>.</p>\n<p>A huge thanks to the contributors that worked on this release: <a href=\"http://profiles.wordpress.org/aerych\">aerych</a>, <a href=\"http://profiles.wordpress.org/mrroundhill\">mrroundhill</a>, <a href=\"http://profiles.wordpress.org/daniloercoli\">daniloercoli</a>, <a href=\"http://profiles.wordpress.org/isaackeyet/\">isaackeyet</a>, <a href=\"http://profiles.wordpress.org/koke\">koke</a>, <a href=\"http://profiles.wordpress.org/sendhil\">sendhil</a>, maxday, tonny xu, <a href=\"http://profiles.wordpress.org/hugobaeta\">hugobaeta</a>, and <a href=\"http://profiles.wordpress.org/karmatosed\">karmatosed</a></p>\n<p>If you have any feedback about the app, please leave a comment below or follow us <a href=\"http://twitter.com/wordpressios\">@WordPressiOS</a>.</p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wpiphone.wordpress.com/1406/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wpiphone.wordpress.com/1406/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=ios.wordpress.org&blog=3882653&post=1406&subd=wpiphone&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 May 2013 10:25: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:4:\"Koke\";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:52:\"WPTavern: Post Formats UI Removed From WordPress 3.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=7146\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://feedproxy.google.com/~r/WordpressTavern/~3/cv8bBvfML4E/post-formats-ui-removed-from-wordpress-3-6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1747:\"<p>In what many will consider to be sad news, the Post Formats UI that so many people were looking forward to as part of WordPress 3.6 <a href=\"http://make.wordpress.org/core/2013/05/29/post-formats-ui-is-exiting-core-will-live-as-a-plugin/\" title=\"http://make.wordpress.org/core/2013/05/29/post-formats-ui-is-exiting-core-will-live-as-a-plugin/\">has been stripped from core</a>, for now. The decision was made by Mark Jaquith as the new feature just wasn&#8217;t quite ready for prime time. Instead of delaying the release of WordPress 3.6 any longer, most of the work surrounding the Post Formats UI will exist as a plugin. The hope is that by the time 3.7 rolls around, the new Post Formats UI will have had time to mature, stabilize and make a smooth transition back into core. </p>\n<p><a href=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/05/PostFormatsUI.jpg\" rel=\"thumbnail\"><img src=\"http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/05/PostFormatsUI.jpg?resize=500%2C133\" alt=\"Post Formats UI\" class=\"aligncenter size-large wp-image-6994\" /></a></p>\n<blockquote><p>I fought hard for it, and a lot of people put a lot of effort into it. But the result just isn’t compelling, or obvious, or any of the things that it should be. It’s not just a matter of polish, it seems to be a fundamental issue with the concept. The release can’t be held up any longer for this. It needs to come out. I should have made this decision earlier. That’s on me. But letting it ride would be the worse mistake.</p></blockquote>\n<p>Better to take it out now versus shipping it with WordPress 3.6 and not living up to expectations. </p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/cv8bBvfML4E\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 May 2013 20:53: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:6:\"Jeffro\";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:81:\"WordPress.tv: Se Reed: Creating an Awesome WordPress Site for Your Small Business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19389\";s:7:\"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:\"http://wordpress.tv/2013/05/29/se-reed-creating-an-awesome-wordpress-site-for-your-small-business/\";s: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:712:\"<div id=\"v-ReAAK0C2-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19389/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19389/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19389&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/29/se-reed-creating-an-awesome-wordpress-site-for-your-small-business/\"><img alt=\"Se Reed: Creating an Awesome WordPress Site for Your Small Business\" src=\"http://videos.videopress.com/ReAAK0C2/video-0cc9152c15_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 May 2013 17:56:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:58:\"WPTavern: Great Conversation On The Topic Of Plugin Prices\";s:7:\"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://www.wptavern.com/?p=7141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://feedproxy.google.com/~r/WordpressTavern/~3/_aEzCrK3r4I/great-conversation-on-the-topic-of-plugin-prices\";s: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:1050:\"<p>Chris Lema has started an <a href=\"http://chrislema.com/wordpress-plugin-prices/\" title=\"http://chrislema.com/wordpress-plugin-prices/\">engaging conversation</a> around the topic of plugin authors not charging enough for their plugins. The main take away I have from his article is that plugin authors are under charging for the value that their plugins provide. But after reading the comments, I think most people are of the opinion that single site support licenses for plugins such as GravitfyForms are in a sweet spot but for the developer tier of licenses, they are severely under charging. </p>\n<p>As a consumer, I don&#8217;t want to see plugins like GravityForms bump up their single site licenses to $100 a month or $200 a year. I think plugin shops should definitely charge a premium for their developer license packages because the consultants are the ones making the big bucks and end up passing that cost onto their clients anyways. </p>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/_aEzCrK3r4I\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 May 2013 17:15: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:6:\"Jeffro\";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:46:\"WPTavern: Summer Internship Projects Announced\";s:7:\"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://www.wptavern.com/?p=7128\";s:7:\"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:\"http://feedproxy.google.com/~r/WordpressTavern/~3/rW5qtrLLsig/summer-internship-projects-announced\";s: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:5706:\"<p>Over the past few years, WordPress has made it a tradition to take part in the <a title=\"http://www.google-melange.com/gsoc/homepage/google/gsoc2013\" href=\"http://www.google-melange.com/gsoc/homepage/google/gsoc2013\">Google Summer Of Code</a>. This year however, thanks to Jane Wells, there will be two interns from the <a title=\"https://live.gnome.org/OutreachProgramForWomen\" href=\"https://live.gnome.org/OutreachProgramForWomen\">Gnome Outreach Program for Women</a>. This program is organized by the GNOME Foundation to encourage more women to get involved with open source development.</p>\n<p><a href=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/GSOC20131.jpg\" rel=\"thumbnail\"><img class=\"aligncenter size-large wp-image-7130\" alt=\"Google Summer Of Code 2013\" src=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/GSOC20131.jpg?resize=500%2C83\" /></a></p>\n<p>This years list of WordPress projects are as follows:</p>\n<ul>\n<li>Ryan McCue, from Australia, working on a JSON-based REST API. Mentors will be Bryan Petty and Eric Mann, with a reviewer assist from Andrew Norcross.</li>\n<li>Kat Hagan, from the United States, working on a Post by Email plugin to replace the core function. Mentors will be Justin Shreve and George Stephanis, with an assist from Peter Westwood.</li>\n<li>Siobhan Bamber, from Wales, working on a support (forums, training, documentation) internship. Mentors will be Mika Epstein and Hanni Ross.</li>\n<li>Frederick Ding, from the United States, working on improving portability. Mentors will be Andrew Nacin and Mike Schroder.</li>\n<li>Sayak Sakar, from India, working on porting WordPress for WebOS to Firefox OS. Mentor will be Eric Johnson.</li>\n<li>Alex Höreth, from Germany, working on adding WordPress native revisions to the theme and plugin code editors. Mentors will be Dominik Schilling and Aaron Campbell, with a reviewer assist from Daniel Bachhuber.</li>\n<li>Mert Yazicioglu, from Turkey, working on ways to improve our community profiles at profiles.wordpress.org. Mentors will be Scott Reilly and Boone Gorges.</li>\n<li>Daniele Maio, from Italy, working on a native WordPress app for Blackberry 10. Mentor will be Danilo Ercoli.</li>\n</ul>\n<p>I always think of the summer internship programs as a way for WordPress to scratch an itch. While the core team continues to work on the next version of WordPress, the interns get to work on the items that at times, are relegated to the bucket list. First off, I&#8217;m happy to see that someone has been assigned the task to create a Post By Email plugin to replace what exist in core. This is interesting because JetPack already has the ability to post by email. When I asked Jane Wells about this conundrum, <a title=\"https://twitter.com/wptavern/statuses/339752359901143041\" href=\"https://twitter.com/wptavern/statuses/339752359901143041\">this was her response</a>:</p>\n<blockquote><p>Because it&#8217;s still in core currently, and we don&#8217;t replace core functions with proprietary plugins, which Jetpack is.</p></blockquote>\n<p>This makes sense as it wouldn&#8217;t be kosher to replace core functionality with a plugin that needs to be tied into WordPress.com to function.</p>\n<p>The other project that gets me somewhat excited is adding native WordPress revisions to the theme and plugin code editors. This has been a long time coming and is in alignment with Matt&#8217;s vision where users are unable to break their website or at the very least, are able to return it to normal at the click of a button. A part of me loves seeing revisions added to the plugin and theme editors but another part of me wonders why a code editor is within WordPress at all. In the early days of using WordPress, I used the code editor to make the necessary changes to theme files in order to add plugin functionality, as per the directions. But we&#8217;ve advanced so far from that, that I rarely ever use the code editor. I&#8217;m more inclined to use something like NotePad++. I conducted a non-scientific Twitter poll today asking my followers <em><a title=\"https://twitter.com/wptavern/statuses/339755891194740737\" href=\"https://twitter.com/wptavern/statuses/339755891194740737\">when is the last time you used the code editor in WP to edit a theme or plugin code?</a></em>. Turns out, there are definitely circumstances in which having a built-in editor is beneficial. For instance, when there is a lack of FTP access. It&#8217;s also a major convenience factor as it&#8217;s easier to edit a file from within a clients WordPress install than having to go through the process of gaining FTP credentials. After all, adding revisions to the editor is just another layer of protection that has very few, if any drawbacks.</p>\n<p>Keep in mind that there is no guarantee that any of these projects will be completed or that the finished product will see the light of day. Do you see anything on the project list that you would love to see become a reality?</p>\n<div class=\"yarpp-related-rss\">\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/wordpress-gsoc-2010-program-under-way\" rel=\"bookmark\" title=\"WordPress GSoC 2010 Program Under Way\">WordPress GSoC 2010 Program Under Way</a></li>\n<li><a href=\"http://www.wptavern.com/its-that-time-of-year-again\" rel=\"bookmark\" title=\"It&#8217;s That Time Of Year Again\">It&#8217;s That Time Of Year Again</a></li>\n<li><a href=\"http://www.wptavern.com/alex-king-releases-post-formats-admin-ui-code\" rel=\"bookmark\" title=\"Alex King Releases Post Formats Admin UI Code\">Alex King Releases Post Formats Admin UI Code</a></li>\n</ol></p>\n</div>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/rW5qtrLLsig\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 May 2013 16:00: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:6:\"Jeffro\";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:51:\"WordPress.tv: How to Keep Them Coming Back For More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18983\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.tv/2013/05/29/how-to-keep-them-coming-back-for-more/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:678:\"<div id=\"v-RIk7BbF2-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18983/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18983/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18983&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/29/how-to-keep-them-coming-back-for-more/\"><img alt=\"Kimanzi Constable: How to Keep Them Coming Back For More\" src=\"http://videos.videopress.com/RIk7BbF2/video-ade26c622e_scruberthumbnail_2.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 May 2013 08:00:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:14:\"Matt: WP Cakes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42438\";s:7:\"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:30:\"http://ma.tt/2013/05/wp-cakes/\";s: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:233:\"<p>WP Daily has a post that is interesting <a href=\"http://wpdaily.co/wp-cakes/\">both for the dozens of pictures of WordPress cakes and confections from yesterday as well as a good roundup of posts about the 10th anniversary</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, 29 May 2013 04:19:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:80:\"WordPress.tv: Joseph Karr O’Connor: Cities: Making Accessible WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19356\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wordpress.tv/2013/05/28/joseph-karr-oconnor-cities-making-accessible-wordpress-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:710:\"<div id=\"v-SVj87DXg-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19356/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19356/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19356&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/28/joseph-karr-oconnor-cities-making-accessible-wordpress-themes/\"><img alt=\"Joseph Karr O&#8217;Connor: Cities: Making Accessible WordPress Themes\" src=\"http://videos.videopress.com/SVj87DXg/video-adf7aedb47_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 May 2013 00:20:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:57:\"WPTavern: How To Install Historical Versions Of 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:31:\"http://www.wptavern.com/?p=7119\";s:7:\"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:\"http://feedproxy.google.com/~r/WordpressTavern/~3/cIY_sa6HvXw/how-to-install-historical-versions-of-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:3876:\"<p><em>The following is a guest blog post by the <a href=\"http://www.meetup.com/SeattleWordPressMeetup/\" title=\"http://www.meetup.com/SeattleWordPressMeetup/\">Seattle WordPress Meetup group</a>.</em></p>\n<div id=\"attachment_7122\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/wordpress071large.jpg\" rel=\"thumbnail\"><img src=\"http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/05/wordpress071large.jpg?resize=500%2C328\" alt=\"WordPress 0.71\" class=\"size-large wp-image-7122\" /></a><p class=\"wp-caption-text\">WordPress 0.71</p></div>\n<p>We thought it’d be fun to take a tour through the past versions of WordPress during Seattle’s <a href=\"http://wordpress.org/news/2013/04/save-the-date-may-27/\" title=\"http://wordpress.org/news/2013/04/save-the-date-may-27/\">wp10 party</a>, so we came up with a convenient way for ourselves and others to do that.</p>\n<p>If you want to jump right in, you can <a href=\"https://github.com/tannerm/wp_archive\" title=\"https://github.com/tannerm/wp_archive\">download WP Archive</a> and follow the instructions to get started, or read on for more details.</p>\n<p>The setup is built on top of a project called <a href=\"https://github.com/10up/varying-vagrant-vagrants\" title=\"https://github.com/10up/varying-vagrant-vagrants\">Varying Vagrant Vagrants</a> (VVV), which uses <a href=\"http://www.vagrantup.com/\" title=\"http://www.vagrantup.com/\">Vagrant</a> and <a href=\"https://www.virtualbox.org/\" title=\"https://www.virtualbox.org/\">VirtualBox</a> to easily create WordPress development environments on your local machine, and then automatically provision them with all the applications, configuration and data you want.</p>\n<p>We’ve setup our own configuration built on top of VVV that comes bundled with all of the major releases of WordPress, going all the way back to the initial release, 0.71-gold.</p>\n<p>Once you’ve downloaded our fork of VVV and followed the setup instructions, you’ll be able to browse to http://wp-archive.local (which will be running off your local machine).</p>\n<p>All the major releases of WordPress have already been installed, and you can login with the username “admin” and the password “password”. You can create posts, upload media, switch themes, update settings, and explore all the other features that shipped with each version.</p>\n<p>We did have to make a few minor modifications to get the really old versions running, so if you’re curious about that kind of thing you can <a href=\"https://github.com/tannerm/wp_archive/commits/master\" title=\"https://github.com/tannerm/wp_archive/commits/master\">check out the commit history</a> on GitHub.</p>\n<p>If you’d like to install it for yourself, you can find everything, along with installation instructions, at <a href=\"https://github.com/tannerm/wp_archive\" title=\"https://github.com/tannerm/wp_archive\">the WP Archive repository</a> on GitHub.</p>\n<p>What do you think about how WordPress has evolved over the past 10 years? What strikes you the most about the differences between the older versions and what we have today? Share your thoughts in the comments below.</p>\n<div class=\"yarpp-related-rss\">\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/custom-install-profiles-sounds-like-a-cool-idea\" rel=\"bookmark\" title=\"Custom Install Profiles Sounds Like A Cool Idea\">Custom Install Profiles Sounds Like A Cool Idea</a></li>\n<li><a href=\"http://www.wptavern.com/wordpress-nostalgia\" rel=\"bookmark\" title=\"WordPress Nostalgia\">WordPress Nostalgia</a></li>\n<li><a href=\"http://www.wptavern.com/according-to-wpengine-wordpress-is-secure\" rel=\"bookmark\" title=\"According To WPEngine WordPress Is Secure\">According To WPEngine WordPress Is Secure</a></li>\n</ol></p>\n</div>\n<img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/cIY_sa6HvXw\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 May 2013 21:26:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:41:\"Lorelle on WP: Happy Birthday, 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:36:\"http://lorelle.wordpress.com/?p=8725\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://lorelle.wordpress.com/2013/05/27/happy-birthday-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:513:\"Today is the 10th Anniversary of that famous moment when Matt Mullenweg reached out to the world, and Mike Little replied, and WordPress was born. A blog post that changed the world. Happy Birthday, WordPress! I&#8217;m off to celebrate with the Portland WordPress Meetup Group of Oregon. Cake? Subscribe Via Feedburner Subscribe by Email Copyright [&#8230;]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=8725&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 May 2013 18:00: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:17:\"Lorelle VanFossen\";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:72:\"WordPress.tv: Mark Tilly: How Content Curation Makes You a Better Writer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19383\";s:7:\"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:89:\"http://wordpress.tv/2013/05/28/mark-tilly-how-content-curation-makes-you-a-better-writer/\";s: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:700:\"<div id=\"v-r4r0C3Iv-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19383/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19383/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19383&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/28/mark-tilly-how-content-curation-makes-you-a-better-writer/\"><img alt=\"Mark Tilly: How Content Curation Makes You a Better Writer\" src=\"http://videos.videopress.com/r4r0C3Iv/video-f8f2e2a29b_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 28 May 2013 17:47:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:29:\"Alex King: WordPress Turns 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=16966\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://alexking.org/blog/2013/05/27/wordpress-turns-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"<p>It&#8217;s been quite a ride over the last decade and it will be fun to see what the next 10 years have in store.</p>\n<p>Check out the anniversary posts from WordPress co-founders <a href=\"http://zed1.com/journalized/archives/2013/01/25/wordpress-a-10-year-journey/\">Mike Little</a> and <a href=\"http://ma.tt/2013/05/dear-wordpress/\">Matt Mullenweg</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, 28 May 2013 04:49:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";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:48:\"WordPress.tv: Megan Gray: Extreme Theme Makeover\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.tv/2013/05/27/megan-gray-extreme-theme-makeover/\";s: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:652:\"<div id=\"v-QyltkVpu-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19352/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19352/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19352&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/27/megan-gray-extreme-theme-makeover/\"><img alt=\"Megan Gray: Extreme Theme Makeover\" src=\"http://videos.videopress.com/QyltkVpu/video-b9b18cc901_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 27 May 2013 23:33: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:12:\"WordPress.tv\";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:101:\"WordPress.tv: Chris Lema: How to Protect Yourself from Overshoot and Dwindling Profits 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:28:\"http://wordpress.tv/?p=19344\";s:7:\"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:118:\"http://wordpress.tv/2013/05/27/chris-lema-how-to-protect-yourself-from-overshoot-and-dwindling-profits-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:752:\"<div id=\"v-1hx1LeMM-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19344/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19344/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19344&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/27/chris-lema-how-to-protect-yourself-from-overshoot-and-dwindling-profits-with-wordpress/\"><img alt=\"Chris Lema: How to Protect Yourself from Overshoot and Dwindling Profits with WordPress\" src=\"http://videos.videopress.com/1hx1LeMM/video-12038df75d_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 27 May 2013 22:11: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:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 08 Jun 2013 09:55:43 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"144255\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sat, 08 Jun 2013 09:30:44 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130502190902\";}','no'),(1232,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1370728544','no'),(1233,'_transient_feed_57bc725ad6568758915363af670fd8bc','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"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:\"http://wordpress.org/plugins/browse/new/\";s: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:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Jun 2013 09:54: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Menu Social Icons\";s:7:\"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:\"http://wordpress.org/plugins/menu-social-icons/#post-54207\";s: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, 05 Jun 2013 06:55:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54207@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Add social icons to your WordPress menu items automatically.\";s: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:\"Paul Clark\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Custom Facebook 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/plugins/custom-facebook-feed/#post-54223\";s: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, 05 Jun 2013 16:40:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54223@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"The Custom Facebook Feed allows you to display a customizable Facebook feed of any public Facebook page or group on your website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"smashballoon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Hosting Bandwidth Calculator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/plugins/hosting-bandwidth-calculator/#post-54017\";s: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, 01 Jun 2013 15:59:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54017@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Performs a calculation to see how much monthly hosting bandwidth is need.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"camsecore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Shibbolize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/plugins/shibbolize/#post-54081\";s: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, 03 Jun 2013 13:58:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54081@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"Allows WordPress to pass user authentication, account creation, and permissions\nto a Shibboleth Service Provider / Shibboleth Identity Provider.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"cjmaio\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"BlockAlyzer - Adblock counter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/plugins/blockalyzer-adblock-counter/#post-54250\";s: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, 06 Jun 2013 18:32:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54250@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Count how many of your visitors actually use an ad blocker.\";s: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:\"webzunft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"CCG Manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/plugins/ccg-manager/#post-54251\";s: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, 06 Jun 2013 18:33:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54251@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"A WordPress plugin to manage your CCG collection\";s: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:\"Chris Reynolds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"WordPress Leads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://wordpress.org/plugins/leads/#post-54160\";s: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, 04 Jun 2013 21:36: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54160@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"Capture &#38; store lead information, gather critical lead intelligence, manage web leads from within your site and close more deals.\";s: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:\"DavidWells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"WP Child Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/plugins/wm-child-post/#post-54213\";s: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, 05 Jun 2013 10:04:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54213@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WM Child Post wordpress plugins use for showing child post inside Post, Page or Widget area.\";s: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:\"repon.wp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"SEO Extended\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://wordpress.org/plugins/seo-extended/#post-54091\";s: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, 03 Jun 2013 17:05:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54091@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"View and edit all Yoast SEO Titles on one page and Meta Descriptions on another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Faison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Smart Recent 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/plugins/smart-recent-comments/#post-54220\";s: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, 05 Jun 2013 14:32:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54220@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Make it so recent comments widget only appears if there are any comments to show.\";s: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:21:\"ClevelandWebDeveloper\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WooCommerce Zendesk Connect\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/plugins/woocommerce-zendesk-connect/#post-54224\";s: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, 05 Jun 2013 17:08:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54224@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"This plugin connects your WooCommerce store with your Zendesk account.\";s: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:\"Bart Pluijms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"New Nine Menus Manager\";s:7:\"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:\"http://wordpress.org/plugins/new-nine-menus-manager/#post-53983\";s: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, 31 May 2013 21:14:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"53983@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Register new menu locations right from the menu screen. Never write register_nav_menu again and keep your functions file clean!\";s: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:\"New Nine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Cielo WooCommerce\";s:7:\"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:\"http://wordpress.org/plugins/cielo-woocommerce/#post-54229\";s: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, 05 Jun 2013 22:15:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54229@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Adds Brazilian payment gateway Cielo to WooCommerce\";s: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:\"Gabriel Reguly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"NGP Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/plugins/ngp-forms/#post-54228\";s: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, 05 Jun 2013 21:53: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54228@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Integrate NGP (NGP VAN) donation, signup, and volunteer forms with your site. You&#039;ll need an SSL certificate running on your site if you want to\";s: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:\"Walker Hamilton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Interbookings.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/plugins/interbookingscom/#post-54089\";s: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, 03 Jun 2013 16:08:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"54089@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Adds the Interbookings.com bookings form to your post, or place the Interbookings.com button to your sidebar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Interbookings.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:41:\"http://wordpress.org/plugins/rss/view/new\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 08 Jun 2013 09:55:44 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Sat, 08 Jun 2013 10:29:21 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Sat, 08 Jun 2013 09:54:21 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130502190902\";}','no'),(1230,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1370728544','no'),(1218,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1370728543','no'),(1219,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1370685343','no'),(1224,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1370728544','no'),(1225,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1370685344','no'),(1228,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1370728544','no'),(1229,'_transient_feed_a5420c83891a9c88ad2a4f04584a5efc','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Jun 2013 09:23: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s: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:24:\"Michael Adams (mdawaffe)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Arnee\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 6 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Broken Link Checker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/plugins/broken-link-checker/#post-2441\";s: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, 08 Oct 2007 21:35:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2441@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.\";s: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:\"Janis Elsts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Ultimate TinyMCE\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/plugins/ultimate-tinymce/#post-32088\";s: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, 14 Nov 2011 09:06:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"32088@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Description: Beef up your visual tinymce editor with a plethora of advanced options.\";s: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:19:\"Josh (Ult. Tinymce)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/plugins/contact-form-plugin/#post-26890\";s: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, 26 May 2011 07:34:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26890@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Add Contact Form to your WordPress website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Google Analytics for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Track your WordPress site easily and with lots of metadata: views per author &#38; category, automatic tracking of outbound clicks and pageviews.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}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:45:\"http://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 08 Jun 2013 09:55:44 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Sat, 08 Jun 2013 09:58:45 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Sat, 08 Jun 2013 09:23:45 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130502190902\";}','no'),(818,'_site_transient_timeout_browser_98575636e051018210677a0fbe9063e0','1368632637','yes'),(819,'_site_transient_browser_98575636e051018210677a0fbe9063e0','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:6:\"15.0.1\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:0;}','yes'),(835,'_site_transient_timeout_browser_d55fd2d77f597696d878e75c47981a97','1368649444','yes'),(1201,'_site_transient_timeout_wporg_theme_feature_list','1370616402','yes'),(1202,'_site_transient_wporg_theme_feature_list','a:5:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:7:\"Columns\";a:6:{i:0;s:10:\"one-column\";i:1;s:11:\"two-columns\";i:2;s:13:\"three-columns\";i:3;s:12:\"four-columns\";i:4;s:12:\"left-sidebar\";i:5;s:13:\"right-sidebar\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}s:8:\"Features\";a:19:{i:0;s:8:\"blavatar\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:20:\"front-page-post-form\";i:11;s:19:\"full-width-template\";i:12;s:12:\"microformats\";i:13;s:12:\"post-formats\";i:14;s:20:\"rtl-language-support\";i:15;s:11:\"sticky-post\";i:16;s:13:\"theme-options\";i:17;s:17:\"threaded-comments\";i:18;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(149,'ftp_credentials','a:3:{s:8:\"hostname\";s:21:\"soapseoclientmockup.com\";s:8:\"username\";s:6:\"upload\";s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(151,'theme_mods_twentytwelve','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1364073249;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(152,'current_theme','Nova','yes'),(153,'theme_mods_Nova','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}}','yes'),(154,'theme_switched','','yes'),(155,'et_images_temp_folder','/var/www/html/marcusjeweler/wp-content/uploads/et_temp','yes'),(156,'et_schedule_clean_images_last_time','1374583800','yes'),(157,'nova_logo','','yes'),(158,'nova_favicon','','yes'),(159,'nova_color_scheme','Grey','yes'),(160,'nova_blog_style','false','yes'),(161,'nova_grab_image','false','yes'),(162,'nova_catnum_posts','6','yes'),(163,'nova_archivenum_posts','5','yes'),(164,'nova_searchnum_posts','5','yes'),(165,'nova_tagnum_posts','6','yes'),(166,'nova_date_format','M j, Y','yes'),(167,'nova_comment_date_format','d-m-Y','yes'),(168,'nova_use_excerpt','false','yes'),(169,'nova_responsive_layout','on','yes'),(170,'nova_responsive_shortcodes','on','yes'),(171,'nova_homepage_posts','6','yes'),(172,'nova_featured','on','yes'),(173,'nova_duplicate','false','yes'),(174,'nova_feat_cat','1','yes'),(175,'nova_featured_num','6','yes'),(176,'nova_use_pages','false','yes'),(177,'nova_slider_effect','fade','yes'),(178,'nova_slider_auto','false','yes'),(179,'nova_pause_hover','false','yes'),(180,'nova_slider_autospeed','3000','yes'),(181,'nova_enable_dropdowns','on','yes'),(182,'nova_home_link','on','yes'),(183,'nova_sort_pages','post_title','yes'),(184,'nova_order_page','asc','yes'),(185,'nova_tiers_shown_pages','3','yes'),(186,'nova_enable_dropdowns_categories','on','yes'),(187,'nova_categories_empty','on','yes'),(188,'nova_tiers_shown_categories','3','yes'),(189,'nova_sort_cat','name','yes'),(190,'nova_order_cat','asc','yes'),(191,'nova_disable_toptier','false','yes'),(192,'nova_postinfo2','a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}','yes'),(193,'nova_thumbnails','on','yes'),(194,'nova_show_postcomments','on','yes'),(195,'nova_page_thumbnails','false','yes'),(196,'nova_show_pagescomments','false','yes'),(197,'nova_postinfo1','a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}','yes'),(198,'nova_thumbnails_index','on','yes'),(199,'nova_custom_colors','false','yes'),(200,'nova_child_css','false','yes'),(201,'nova_child_cssurl','','yes'),(202,'nova_color_mainfont','','yes'),(203,'nova_color_mainlink','','yes'),(204,'nova_color_pagelink','','yes'),(205,'nova_color_pagelink_active','','yes'),(206,'nova_color_headings','','yes'),(207,'nova_color_sidebar_links','','yes'),(208,'nova_footer_text','','yes'),(209,'nova_color_footerlinks','','yes'),(210,'nova_seo_home_title','on','yes'),(211,'nova_seo_home_description','on','yes'),(212,'nova_seo_home_keywords','false','yes'),(213,'nova_seo_home_canonical','false','yes'),(214,'nova_seo_home_titletext','Tonawanda Jewelry Store - NY Jeweler since 1978 | Marcus Jeweler ','yes'),(215,'nova_seo_home_descriptiontext','Jewelry Store | Serving the Tonawanda & Buffalo area of New York. In Business since 1978, Buy, Sell, repair or resize all your gold & jewelry.','yes'),(216,'nova_seo_home_keywordstext','','yes'),(217,'nova_seo_home_type','BlogName | Blog description','yes'),(218,'nova_seo_home_separate',' | ','yes'),(219,'nova_seo_single_title','false','yes'),(220,'nova_seo_single_description','false','yes'),(221,'nova_seo_single_keywords','false','yes'),(222,'nova_seo_single_canonical','false','yes'),(223,'nova_seo_single_field_title','seo_title','yes'),(224,'nova_seo_single_field_description','seo_description','yes'),(225,'nova_seo_single_field_keywords','seo_keywords','yes'),(226,'nova_seo_single_type','Post title | BlogName','yes'),(227,'nova_seo_single_separate',' | ','yes'),(228,'nova_seo_index_canonical','false','yes'),(229,'nova_seo_index_description','false','yes'),(230,'nova_seo_index_type','Category name | BlogName','yes'),(231,'nova_seo_index_separate',' | ','yes'),(232,'nova_integrate_header_enable','on','yes'),(233,'nova_integrate_body_enable','on','yes'),(234,'nova_integrate_singletop_enable','on','yes'),(235,'nova_integrate_singlebottom_enable','on','yes'),(236,'nova_integration_head','','yes'),(237,'nova_integration_body','','yes'),(238,'nova_integration_single_top','','yes'),(239,'nova_integration_single_bottom','','yes'),(240,'nova_468_enable','false','yes'),(241,'nova_468_image','','yes'),(242,'nova_468_url','','yes'),(243,'nova_468_adsense','','yes'),(244,'category_children','a:0:{}','yes'),(339,'_site_transient_timeout_browser_a5eed82526012fbf52a4469d70d0dd0a','1364955979','yes'),(248,'nova_menucats','a:1:{i:0;i:1;}','yes'),(338,'nova_home_pages','a:3:{i:0;i:70;i:1;i:66;i:2;i:68;}','yes'),(298,'recently_activated','a:0:{}','yes'),(1058,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1369784416','yes'),(1059,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"3750\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"2382\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"2259\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1877\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1799\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1549\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1282\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1282\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1272\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1221\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1185\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1090\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"960\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"935\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"917\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:3:\"915\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"790\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"788\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"755\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"702\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"663\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"661\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"661\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"605\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"592\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"565\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"552\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"545\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"545\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"523\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"503\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"502\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"486\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"484\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"444\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"443\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"439\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"425\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"422\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"414\";}}','yes'),(304,'nova_menupages','a:3:{i:0;i:70;i:1;i:66;i:2;i:68;}','yes'),(687,'_transient_timeout_feed_mod_3576501d5f9ce6939b2ced182c1d1c55','1366862936','no'),(688,'_transient_feed_mod_3576501d5f9ce6939b2ced182c1d1c55','1366819736','no'),(1213,'_transient_feed_mod_f5282e6d7113c24ed064b747a5efa021','1370685343','no'),(340,'_site_transient_browser_a5eed82526012fbf52a4469d70d0dd0a','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"19.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(345,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:3:{s:4:\"Nova\";s:3:\"3.4\";s:12:\"twentyeleven\";s:3:\"1.5\";s:12:\"twentytwelve\";s:3:\"1.1\";}s:8:\"response\";a:1:{s:4:\"Nova\";a:2:{s:11:\"new_version\";s:3:\"3.7\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/nova.txt\";}}s:12:\"last_checked\";i:1374949286;}','yes'),(796,'_site_transient_timeout_browser_752c6ab2ed3397ae40035f1eae372250','1368632335','yes'),(685,'_transient_timeout_feed_3576501d5f9ce6939b2ced182c1d1c55','1366862936','no'),(686,'_transient_feed_3576501d5f9ce6939b2ced182c1d1c55','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\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:33:\"\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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"link:http://www.marcusjewelryny.com// - Google Blog Search\";s:7:\"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:\"http://www.google.com/search?ie=utf-8&q=link:http://www.marcusjewelryny.com//&tbm=blg&tbs=sbd: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Your search - <b>link:http://www.marcusjewelryny.com//</b> - did not match any documents.\";s: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://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";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:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Wed, 24 Apr 2013 16:08:56 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=24b13791fb04ec60:FF=0:TM=1366819736:LM=1366819736:S=gHxcmf3PucuY8N0o; expires=Fri, 24-Apr-2015 16:08:56 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=Yl2oWvHoFxf0s491zyb3WB15Hrvtk7Ub4qogaWLGiyl2DacKNvKfcPAS8LpiWS1P4sveaVyoHev7k5gg-qI42QjnLF3HR-pAmzU-Sdsf4XlGLRdADxobyCmdYVAg0tXJ; expires=Thu, 24-Oct-2013 16:08:56 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20130327202140\";}','no'),(1216,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1370728543','no'),(1217,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','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:50:\"\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:14:\"WordPress News\";s:7:\"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:25:\"http://wordpress.org/news\";s: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:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 02 Jun 2013 02:32: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=3.6-beta3-24430\";s:7:\"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:14:\"Ten Good 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2013/05/ten-good-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/news/2013/05/ten-good-years/#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, 31 May 2013 17:54:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2606\";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:343:\"It&#8217;s been ten years since we started this thing, and what a long way we&#8217;ve come. From a discussion between myself and Mike Little about forking our favorite blogging software, to powering 18% of the web. It&#8217;s been a crazy, exciting, journey, and one that won&#8217;t stop any time soon. At ten years, it&#8217;s fun [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:9852:\"<p><img class=\"alignright\" alt=\"\" align=\"right\" src=\"http://wpdotorg.files.wordpress.com/2013/05/wp10.jpg\" width=\"316\" height=\"164\" />It&#8217;s been ten years since we started this thing, and what a long way we&#8217;ve come. From a discussion between myself and <a href=\"http://mikelittle.org/\">Mike Little</a> about <a href=\"http://ma.tt/2003/01/the-blogging-software-dilemma/\">forking our favorite blogging software</a>, to powering 18% of the web. It&#8217;s been a crazy, exciting, journey, and one that won&#8217;t stop any time soon.</p>\n<p>At ten years, it&#8217;s fun to reflect on our beginnings. We launched WordPress on 27th May 2003, but that wasn&#8217;t inception. Go back far enough, and you can <a href=\"http://zengun.org/weblog/archives/2001/06/post1958/\">read a post by Michel Valdrighi</a> who, frustrated by the self-hosted blogging platforms available, decided to write his own software; &#8220;b2, a PHP+MySQL alternative to Blogger and GreyMatter.&#8221; b2 was easy to install, easy to configure, and easy for developers to extend. Of all the blogging platforms out there, <a href=\"http://cafelog.com\">b2</a> was the right one for me: I could write my content and get it on the web quickly and painlessly.</p>\n<p>Sometimes, however, life gets in the way. In 2002, Michel stopped maintaining b2. Over time, security flaws became apparent and updates were needed and, while the b2 community could write patches and fixes, no one was driving the software forward. We were lucky that Michel decided to release b2 under the GPL; the software may have been abandoned, but we weren&#8217;t without options. A fork was always a possibility. That was where it stood in January 2003, when <a href=\"http://ma.tt/2003/01/the-blogging-software-dilemma/\">I posted about forking b2</a> and <a href=\"http://ma.tt/2003/01/the-blogging-software-dilemma/#comment-445\">Mike responded</a>. The rest, as they say, is history.</p>\n<p>From the very beginning to the present day, I&#8217;ve been impressed by the thought, care, and dedication that WordPress&#8217; developers have demonstrated. Each one has brought his or her unique perspective, each individual has strengthened the whole. It would be impossible to thank each of them here individually, but their achievements speak for themselves. In WordPress 1.2 the new Plugin API made it easy for developers to extend WordPress. In the same release <code>gettext()</code> internationalization opened WordPress up to every language (hat tip: <a href=\"http://ryan.boren.me/\">Ryan Boren</a> for spending hours wrapping strings with gettext). In WordPress 1.5 our Theme system made it possible for WordPress users to quickly change their site&#8217;s design: there was huge resistance to the theme system from the wider community at the time, but can you imagine WordPress without it? Versions 2.7, 2.8, and 2.9 saw improvements that let users install and update their plugins and themes with one click. WordPress has seen a redesign by <a href=\"http://v2.happycog.com/create/wordpress/?p=design/wordpress/\">happycog</a> (2.3) and gone under extensive user testing and redesign (<a href=\"http://www.slideshare.net/edanzico/riding-the-crazyhorse-future-generation-wordpress-presentation\">Crazyhorse</a>, Liz Danzico and Jen Mylo, WordPress 2.5). In WordPress 3.0 we merged WordPress MU with WordPress &#8212; a huge job but 100% worth it. And in WordPress 3.5 we revamped the media uploader to make it easier for people to get their images, video, and media online.</p>\n<p>In sticking to our commitment to user experience, we&#8217;ve done a few things that have made us unpopular. The <a href=\"http://tech.gaeatimes.com/index.php/archive/wordpress-wysiwyg-editor-is-a-disaster/\">WYSIWYG editor</a> was hated by many, especially those who felt that if you have a blog you should know HTML. Some developers hated that we stuck with our code, refusing to rewrite, but it&#8217;s always been the users that matter: better a developer lose sleep than a site break for a user. Our code isn&#8217;t always beautiful, after all, when WordPress was created most of us were still learning PHP, but we try to make a flawless experience for users.</p>\n<p>It&#8217;s not all about developers. WordPress&#8217; strength lies in the diversity of its community. From the start, we wanted a low barrier to entry and we came up with our &#8220;famous 5 minute install&#8221;. This brought on board users from varied technical background: people who didn&#8217;t write code wanted to help make WordPress better. If you couldn&#8217;t write code, it didn&#8217;t matter: you could answer a question in the support forums, write documentation, translate WordPress, or build your friends and family a WordPress website. There is <a href=\"https://make.wordpress.org/\">space in the community</a> for anyone with a passion for WordPress.</p>\n<p>It&#8217;s been wonderful to see all of the people who have used WordPress to build their home on the internet. Early on <a href=\"http://wordpress.org/news/2004/04/switchers/\">we got excited</a> by <a href=\"http://wordpress.org/news/2004/04/more-switchers/\">switchers</a>. From a community of tinkerers we grew, as writers such as <a href=\"http://ma.tt/2004/05/om-malik/\">Om Malik</a>, <a href=\"http://dougal.gunters.org/blog/2004/05/15/mark-pilgrim-switches/\">Mark Pilgrim</a>, and <a href=\"http://ma.tt/2004/07/mollycom-switches/\">Molly Holzschlag</a> made the switch to WordPress. Our commitment to effortless publishing quickly paid off and has continued to do so: <strong>the WordPress 1.2 release saw 822 downloads per day, our latest release, WordPress 3.5, has seen 145,692 per day.</strong></p>\n<p>I&#8217;m continually amazed by what people have built with WordPress. I&#8217;ve seen <a href=\"http://justintimberlake.com/main/\">musicians</a> and <a href=\"http://ma.tt/2013/01/neil-leifer-on-wordpress/\">photographers</a>, magazines such as <a href=\"http://life.time.com/\">Life</a>, <a href=\"http://boingboing.net/\">BoingBoing</a>, and the <a href=\"http://observer.com/\">New York Observer</a>, <a href=\"http://www.compliance.gov/\">government websites</a>, a <a href=\"http://josephscott.org/archives/2011/05/pressfs-a-wordpress-filesystem/\">filesystem</a>, <a href=\"http://www.ymcanyc.org/association/pages/y-mvp\"> mobile applications</a>, and even <a href=\"http://www.viper007bond.com/2010/06/12/so-apparently-wordpress-can-guide-missiles/\">seen WordPress guide missiles</a>.</p>\n<p>As the web evolves, WordPress evolves. Factors outside of our control will always influence WordPress&#8217; development: today it&#8217;s mobile devices and retina display, tomorrow it could be Google Glass or technology not yet conceived. A lot can happen in ten years! As technology changes and advances, WordPress has to change with it while remaining true to its core values: making publishing online easy for everyone. How we rise to these challenges will be what defines WordPress over the coming ten years.</p>\n<p><strong>To celebrate ten years of WordPress, we&#8217;re working on a book about our history.</strong> We&#8217;re carrying out interviews with people who have involved with the community from the very beginning, those who are still around, and those who have left. It&#8217;s a huge project, but we wanted to have something to share with you on the 10th anniversary. To learn about the very early days of WordPress, just after Mike and I forked b2 <a href=\"http://wordpress.org/about/history/\">you can download Chapter 3 right here</a>. We&#8217;ll be releasing the rest of the book serially, so watch out as the story of the last ten years emerges.</p>\n<p>In the meantime, <a href=\"http://ma.tt/2013/05/dear-wordpress/\"> I penned my own letter to WordPress</a> and other community members have been sharing their thoughts:</p>\n<ul>\n<li><a href=\"http://zed1.com/journalized/archives/2013/01/25/wordpress-a-10-year-journey/\">Mike Little on our Ten Year Journey</a>.</li>\n<li>Core contributor Helen Hou-Sandi <a href=\"http://helen.wordpress.com/2013/05/27/happy-10th-wordpress-and-thanks-from-my-little-family/\">wishes WordPress happy birthday</a>.</li>\n<li>Peter Westwood on <a href=\"http://blog.ftwr.co.uk/archives/2013/05/27/a-decade-gone-more-to-come/\">a decade gone</a>.</li>\n<li>Support rep Mika Epstein <a href=\"http://ipstenu.org/2013/you-me-and-wp/\">on her WordPress journey</a>.</li>\n<li>Dougal Campbell <a href=\"http://dougal.gunters.org/blog/2013/05/27/instagram-my-wife-suzecampbell-and-i-celebrating-the-wordpress-10th-anniversary-with-bbq-in-our-wordpress-shirts-wp10/\">celebrating with his wife, Suze</a>.</li>\n<li>Otto on <a href=\"http://ottodestruct.com/blog/2013/how-wp-affected-me/\">how WordPress affected him</a>.</li>\n</ul>\n<p>You can see how WordPress&#8217; 10th Anniversary was celebrated all over the world <a href=\"http://wp10.wordpress.net/\">by visiting the wp10 website</a>, according to Meetup we had 4,999 celebrators.</p>\n<p>To finish, I just want to say thank you to everyone: to the developers who write the code, to the designers who make WordPress sing, to the worldwide community translating WordPress into so many languages, to volunteers who answer support questions, to those who make WordPress accessible, to the systems team and the plugin and theme reviewers, to documentation writers, event organisers, evangelists, detractors, supporters and friends. Thanks to the jazzers whose music inspired us and whose names are at the heart of WordPress. Thanks to everyone who uses WordPress to power their blog or website, and to everyone who will in the future. Thanks to WordPress and its community that I&#8217;m proud to be part of.</p>\n<p>Thank you. I can&#8217;t wait to see what the next ten years bring.</p>\n<p><em>Final thanks to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for help with this post.</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:54:\"http://wordpress.org/news/2013/05/ten-good-years/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:22:\"The Next 10 Starts 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/news/2013/05/the-next-10-starts-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2013/05/the-next-10-starts-now/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 May 2013 20:47:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2594\";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:365:\"All around the globe today, people are celebrating the 10th anniversary of the first WordPress release, affectionately known as #wp10. Watching the feed of photos, tweets, and posts from Auckland to Zambia is incredible; from first-time bloggers to successful WordPress-based business owners, people are coming out in droves to raise a glass and share the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:3901:\"<p>All around the globe today, people are celebrating the 10th anniversary of the first WordPress release, affectionately known as #wp10. <a href=\"http://wp10.wordpress.net\">Watching the feed</a> of photos, tweets, and posts from Auckland to Zambia is incredible; from first-time bloggers to successful WordPress-based business owners, people are coming out in droves to raise a glass and share the &#8220;holiday&#8221; with their local communities. With hundreds of parties going on today, it&#8217;s more visible than ever just how popular WordPress has become.</p>\n<p><strong>Thank you to everyone who has ever contributed to this project: your labors of love made this day possible.</strong></p>\n<p>But today isn&#8217;t just about reflecting on how we got this far (though I thought <a href=\"http://ma.tt/2013/05/dear-wordpress/\">Matt&#8217;s reflection on the first ten years</a> was lovely). We are constantly moving forward. As each release cycle begins and ends (3.6 will be here soon, promise!), we always see an ebb and flow in the contributor pool. Part of ensuring the longevity of WordPress means mentoring new contributors, continually bringing new talent and fresh points of view to our family table.</p>\n<p>I am beyond pleased to announce that this summer we will be mentoring 8 interns, most of them new contributors, through <a href=\"http://www.google-melange.com/gsoc/homepage/google/gsoc2013\">Google Summer of Code</a> and the <a href=\"https://live.gnome.org/OutreachProgramForWomen/2013/JuneSeptember\">Gnome Outreach Program for Women</a>. Current contributors, who already volunteer their time working on WordPress, will provide the guidance and oversight for a variety of exciting projects  this summer. Here are the people/projects involved in the summer internships:</p>\n<ul>\n<li><strong><strong>Ryan McCue</strong>, </strong>from Australia, working on a JSON-based REST API. Mentors will be Bryan Petty and Eric Mann, with a reviewer assist from Andrew Norcross.</li>\n<li><strong>Kat Hagan</strong>, from the United States, working on a Post by Email plugin to replace the core function. Mentors will be Justin Shreve and George Stephanis, with an assist from Peter Westwood.</li>\n<li><strong>Siobhan Bamber</strong>, from Wales, working on a support (forums, training, documentation) internship. Mentors will be Mika Epstein and Hanni Ross.</li>\n<li><strong>Frederick Ding</strong>, from the United States, working on improving portability. Mentors will be Andrew Nacin and Mike Schroder.</li>\n<li><strong>Sayak Sakar</strong>, from India, working on porting WordPress for WebOS to Firefox OS. Mentor will be Eric Johnson.</li>\n<li><strong>Alex Höreth</strong>, from Germany, working on  adding WordPress native revisions to the theme and plugin code editors. Mentors will be Dominik Schilling and Aaron Campbell, with a reviewer assist from Daniel Bachhuber.</li>\n<li><strong>Mert Yazicioglu</strong>, from Turkey, working on ways to improve our community profiles at profiles.wordpress.org. Mentors will be Scott Reilly and Boone Gorges.</li>\n<li><strong>Daniele Maio</strong>, from Italy, working on a native WordPress app for Blackberry 10. Mentor will be Danilo Ercoli.</li>\n</ul>\n<p>Did you notice that our summer cohort is as international as the #wp10 parties going on today? I can only think that this is a good sign.</p>\n<p>It&#8217;s always a difficult process to decide which projects to mentor through these programs. There are always more applicants with interesting ideas with whom we&#8217;d like to work than there are opportunities. Luckily, WordPress is a free/libre open source software project, and anyone can begin contributing at any time. Is this the year for you? We&#8217;d love for you to join us as we work toward #wp20. <img src=\'http://wordpress.org/news/wp-includes/images/smilies/icon_wink.gif\' alt=\';)\' class=\'wp-smiley\' /> </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:62:\"http://wordpress.org/news/2013/05/the-next-10-starts-now/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.6 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2013/05/wordpress-3-6-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2013/05/wordpress-3-6-beta-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 May 2013 03:44: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2584\";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:374:\"WordPress 3.6 Beta 3 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). Beta [&#8230;]\";s: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:\"\";}}}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:2452:\"<p>WordPress 3.6 Beta 3 is now available!</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.6, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.6-beta3.zip\">download the beta here</a> (zip).</p>\n<p>Beta 3 contains about a hundred changes, including improvements to the image Post Format flow (yay, drag-and-drop image upload!), a more polished revision comparison screen, and a more quote-like quote format for Twenty Thirteen.</p>\n<p>As a bonus, we now have oEmbed support for the popular music-streaming services <a href=\"http://www.rdio.com/\">Rdio</a> and <a href=\"http://www.spotify.com/\">Spotify</a> (the latter of which kindly created an oEmbed endpoint a mere 24 hours after we lamented their lack of one). Here&#8217;s an album that&#8217;s been getting a lot of play as I&#8217;ve been working on WordPress 3.6:</p>\n<p><iframe width=\"500\" height=\"250\" src=\"https://rd.io/i/Qj5r8SE//?source=oembed\" frameborder=\"0\"></iframe></p>\n<p><iframe src=\"https://embed.spotify.com/?uri=spotify:album:6dJZDZMNdBPZrJcNv57bEq\" width=\"300\" height=\"380\" frameborder=\"0\" allowtransparency=\"true\"></iframe></p>\n<p>Plugin developers, theme developers, and WordPress hosts should be testing beta 3 extensively. The more you test the beta, the more stable our release candidates and our final release will be.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.6\">everything we&#8217;ve fixed</a> so far.</p>\n<p>We&#8217;re looking forward to your feedback. If you find a bug, please report it, and if you’re a developer, try to help us fix it. We&#8217;ve already had more than 150 contributors to version 3.6 — it&#8217;s not too late to join in!</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:60:\"http://wordpress.org/news/2013/05/wordpress-3-6-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.6 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2013/04/wordpress-3-6-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2013/04/wordpress-3-6-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Apr 2013 22:48:55 +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:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2579\";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:373:\"WordPress 3.6 Beta 2 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). The [&#8230;]\";s: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:\"\";}}}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:2057:\"<p>WordPress 3.6 Beta 2 is now available!</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.6, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.6-beta2.zip\">download the beta here</a> (zip).</p>\n<p>The longer-than-usual delay between beta 1 and beta 2 was due to poor user testing results with the Post Formats UI. Beta 2 contains a modified approach for format choosing and switching, which has done well in user testing. We&#8217;ve also made the Post Formats UI hide-able via Screen Options, and set a reasonable default based on what your theme supports.</p>\n<p>There were a lot of bug fixes and polishing tweaks done for beta 2 as well, so definitely check it out if you had an issues with beta 1.</p>\n<p>Plugin developers, theme developers, and WordPress hosts should be testing beta 2 extensively. The more you test the beta, the more stable our release candidates and our final release will be.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.6\">everything we&#8217;ve fixed</a> so far.</p>\n<p>We&#8217;re looking forward to your feedback. If you find a bug, please report it, and if you’re a developer, try to help us fix it. We&#8217;ve already had more than 150 contributors to version 3.6 — it&#8217;s not too late to join in!</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:60:\"http://wordpress.org/news/2013/04/wordpress-3-6-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Summer Mentorship Programs: GSoC and Gnome\";s:7:\"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:76:\"http://wordpress.org/news/2013/04/summer-mentorship-programs-gsoc-and-gnome/\";s: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:85:\"http://wordpress.org/news/2013/04/summer-mentorship-programs-gsoc-and-gnome/#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, 25 Apr 2013 03:18: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2573\";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:358:\"As an open source, free software project, WordPress depends on the contributions of hundreds of people from around the globe &#8212; contributions in areas like core code, documentation, answering questions in the support forums, translation, and all the other things it takes to make WordPress the best publishing platform it can be, with the most [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5071:\"<p>As an open source, free software project, WordPress depends on the contributions of hundreds of people from around the globe &#8212; contributions in areas like core code, documentation, answering questions in the support forums, translation, and all the other things it takes to make WordPress the best publishing platform it can be, with the most supportive community. This year, we&#8217;re happy to be participating as a mentoring organization with two respected summer internship programs: <a href=\"http://www.google-melange.com/gsoc/homepage/google/gsoc2013\">Google Summer of Code (GSoC)</a> and the Gnome Outreach Program for Women.</p>\n<h3>Google Summer of Code</h3>\n<p>GSoC is a summer internship program funded by Google specifically for college/university student developers to work on open source coding projects. We have participated in the Google Summer of Code program in the past, and have enjoyed the opportunity to work with students in this way. Some of our best core developers were GSoC students once upon a time!</p>\n<p><a href=\"http://codex.wordpress.org/GSoC2013#Mentors\">Our mentors</a>, almost 30 talented developers with experience developing WordPress, will provide students with guidance and feedback over the course of the summer, culminating in the release of finished projects at the end of the program if all goes well.</p>\n<p>Students who successfully complete the program earn $5,000 for their summer efforts. Interested, or know a college student (newly accepted to college counts, too) who should be? All the information you need about our participation in the program, projects, mentors, and the application process is available on the <a href=\"http://codex.wordpress.org/GSoC2013\">GSoC 2013 page in the Codex</a>.</p>\n<h3>Gnome Outreach Program for Women</h3>\n<p>It&#8217;s not news that women form a low percentage of contributors in most open source projects, and WordPress is no different. We have great women in the contributor community, including some in fairly visible roles, but we still have a lot of work to do to get a representative gender balance on par with our user base.</p>\n<p>The Gnome Outreach Program for Women aims to provide opportunities for women to participate in open source projects, and offers a similar stipend, but there are three key differences between GSoC and Gnome aside from the gender requirement for Gnome.</p>\n<ol>\n<li><span style=\"font-size: 13px;line-height: 19px\">The Gnome program allows intern projects in many areas of contribution, not just code. In other words, interns can propose projects like documentation, community management, design, translation, or pretty much any area in which we have people contributing (including code).</span></li>\n<li><span style=\"font-size: 13px;line-height: 19px\">The Gnome Outreach Program for Women doesn&#8217;t require interns to be college students, though students are definitely welcome to participate. This means that women in all stages of life and career can take the opportunity to try working with open source communities for the summer.</span></li>\n<li><span style=\"font-size: 13px;line-height: 19px\">We have to help raise the money to pay the interns. Google funds GSoC on its own, and we only have to provide our mentors&#8217; time. Gnome doesn&#8217;t have the same funding, so we need to pitch in to raise the money to cover our interns. If your company is interested in helping with this, please check out the program&#8217;s </span><a style=\"font-size: 13px;line-height: 19px\" href=\"https://live.gnome.org/OutreachProgramForWomen#For_Organizations_and_Companies\">sponsorship information</a><span style=\"font-size: 13px;line-height: 19px\"> and follow the contact instructions to get involved. You can earmark donations to support WordPress interns, or to support the program in general. (Pick us, pick us! <img src=\'http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' />  )</span></li>\n</ol>\n<p>The summer installment of the Gnome Outreach Program for Women follows the same schedule and general application format as GSoC, though there are more potential projects since it covers more areas of contribution. Women college students interested in doing a coding project are encouraged to apply for both programs to increase the odds of acceptance. All the information you need about our participation in the program, projects, mentors, and the application process is available on the <a href=\"http://codex.wordpress.org/Gnome_Summer_Program_for_Women\">Gnome Outreach Program for Women page in the Codex</a>.</p>\n<p>The application period just started, and it lasts another week (May 1 for Gnome, May 3 for GSoC), so if you think you qualify and are interested in getting involved, check out the information pages, get in touch, and apply… Good luck!</p>\n<p><a href=\"http://codex.wordpress.org/GSoC2013\">Google Summer of Code 2013 Information</a><br />\n<a href=\"http://codex.wordpress.org/Gnome_Summer_Program_for_Women\">Gnome Summer Outreach Program for Women 2013 Information</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:81:\"http://wordpress.org/news/2013/04/summer-mentorship-programs-gsoc-and-gnome/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:51:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 10th Anniversary Tees\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2013/04/wordpress-10th-anniversary-tees/\";s: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:75:\"http://wordpress.org/news/2013/04/wordpress-10th-anniversary-tees/#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 Apr 2013 16:40:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";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:5:\"Store\";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:5:{s:4:\"data\";s:4:\"swag\";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:5:{s:4:\"data\";s:4:\"wp10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2561\";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:338:\"In honor of the upcoming 10th anniversary celebrations, we&#8217;ve put a special 10th anniversary tshirt in the swag store at cost &#8212; $10 per shirt plus shipping. They&#8217;ll be on sale at this price until the anniversary on May 27, and they&#8217;ll start shipping out the week of April 29. Some people who are planning [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:1943:\"<p><img class=\"alignleft wp-image-2562\" style=\"font-size: 13px;line-height: 19px;margin-right: 10px\" alt=\"WordPress 10th Anniversary logo\" src=\"http://wordpress.org/news/files/2013/04/wp10logo.jpg\" width=\"120\" height=\"119\" />In honor of the upcoming <a title=\"Save the Date: May 27\" href=\"http://wordpress.org/news/2013/04/save-the-date-may-27/\">10th anniversary celebrations</a>, we&#8217;ve put a special<a href=\"http://hellomerch.com/collections/wordpress/products/wordpress-10th-anniversary-t-shirt\"> 10th anniversary tshirt in the swag store</a> at cost &#8212; $10 per shirt plus shipping. They&#8217;ll be on sale at this price until the anniversary on May 27, and they&#8217;ll start shipping out the week of April 29.</p>\n<p>Some people who are planning parties or who organize meetups are already talking about doing group orders to save on shipping costs, which is a great idea &#8212; just make sure you allow enough shipping time. If you&#8217;re not sure if the tees could make it to you in time on your side of the world, use the contact options at the bottom of the store page to ask about shipping times. If they can&#8217;t reach you in time and you want to have a local printer do some for your group, we&#8217;ll post the vector file on the wp10 site within the next week (and this post will get updated accordingly). </p>\n<p>The shirts are available in black or silvery gray. Why silvery gray? Because of trivia: the traditional gift for 10th anniversaries is tin or aluminum. <img src=\'http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> </p>\n<p><a href=\"http://hellomerch.com/collections/wordpress/products/wordpress-10th-anniversary-t-shirt\"><img class=\"aligncenter size-full wp-image-2563\" alt=\"Silver and Black tshirts with WordPress 10th anniversary logo on them\" src=\"http://wordpress.org/news/files/2013/04/wp10shirtgrayblack.jpg\" width=\"643\" height=\"333\" /></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:71:\"http://wordpress.org/news/2013/04/wordpress-10th-anniversary-tees/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s: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:21:\"Save the Date: May 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:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2013/04/save-the-date-may-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:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2013/04/save-the-date-may-27/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 13:48: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:\"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:33:\"http://wordpress.org/news/?p=2555\";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:329:\"What&#8217;s on May 27, you ask? May 27, 2013 is the 10th anniversary of the first WordPress release! We think this is worth celebrating, and we want WordPress fans all over the world to celebrate with us by throwing their own parties. We&#8217;re using Meetup Everywhere to coordinate, and will be putting up a website [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:2102:\"<p>What&#8217;s on May 27, you ask?</p>\n<p>May 27, 2013 is the <strong>10th anniversary</strong> of the <a href=\"http://wordpress.org/news/2003/05/wordpress-now-available/\">first WordPress release</a>!</p>\n<p>We think this is worth celebrating, and we want WordPress fans all over the world to celebrate with us by throwing their own parties. <a href=\"http://www.meetup.com/WordPress/\">We&#8217;re using Meetup Everywhere</a> to coordinate, and will be putting up a website just for the 10th Anniversary so that we can collect photos, videos, tweets, and posts from all the parties.</p>\n<p>The rules are very simple:</p>\n<ol>\n<li><span style=\"line-height: 12.997159004211426px\">Pick a place to go where a bunch of people can be merry &#8212; a park, a bar, a backyard, whatever</span></li>\n<li>Spread the word to local meetups, tech groups, press, etc and get people to say they&#8217;ll come to your party</li>\n<li>If 50 or more people RSVP to your party, we&#8217;ll try to send you some WordPress stickers and buttons</li>\n<li>Have party attendees post photos, videos, and the like with the #wp10 hashtag</li>\n</ol>\n<p>We&#8217;ll be using Meetup Everywhere to coordinate parties all over the world, so get your city on the map and <a href=\"http://www.meetup.com/WordPress/\">register your party now</a> !</p>\n<p>We&#8217;ll follow up with registered organizers  over the next few weeks with some tips for how to publicize your party and to get addresses for swag packages. To that end, make sure you check the option that lets WordPress 10th Anniversary know your email, or we won&#8217;t be able to get in touch with you for these things or to give you access to the WP10 blog.</p>\n<p>Whose party will be the biggest? The most fun? The most inventive? Will it be yours?</p>\n<p><em>Note: If you already run a group on meetup.com, making your party an event in your group is great, but you still need to post it and have people RSVP at the <a href=\"http://www.meetup.com/WordPress/\">special party page</a>, because regular groups and Meetup Everywhere groups aren&#8217;t connected yet. </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:60:\"http://wordpress.org/news/2013/04/save-the-date-may-27/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s: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:20:\"WordPress 3.6 Beta 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:55:\"http://wordpress.org/news/2013/04/wordpress-3-6-beta-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:64:\"http://wordpress.org/news/2013/04/wordpress-3-6-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Apr 2013 17:25: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: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:33:\"http://wordpress.org/news/?p=2547\";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:381:\"WordPress 3.6 Beta 1 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). We&#8217;ve [&#8230;]\";s: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:\"\";}}}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:4085:\"<p>WordPress 3.6 Beta 1 is now available!</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.6, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.6-beta1.zip\">download the beta here</a> (zip).</p>\n<p>We&#8217;ve been working for nearly three months and have completed all the features that are slated for this release. This is a bit of a change from the betas of previous release cycles. I felt very strongly that we shouldn&#8217;t release a beta if we were still working on completing the main features. This beta is <strong>actually a beta</strong>, not an alpha that we&#8217;re calling a beta. If you are a WordPress plugin or theme developer, or a WordPress hosting provider, you should absolutely start testing your code against this new version <strong>now</strong>. More bugs will be fixed, and some of the features will get polished, but we&#8217;re not going to shove in some big new feature. We&#8217;re ready for you to test it, so jump in there! The more you test the beta, the more stable our release candidates and our final release will be.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.6\">everything we&#8217;ve fixed</a> so far.</p>\n<p>Here&#8217;s what&#8217;s new in 3.6:</p>\n<ul>\n<li><strong>Post Formats: </strong> Post Formats now have their own UI, and theme authors have access to templating functions to access the structured data.</li>\n<li><strong>Twenty Thirteen:</strong> We&#8217;re shipping this year&#8217;s default theme in our first release of the year. Twenty Thirteen is an opinionated, color-rich, blog-centric theme that makes full use of the new Post Formats support.</li>\n<li><strong>Audio/Video:</strong> You can embed audio and video files into your posts without relying on a plugin or a third party media hosting service.</li>\n<li><strong>Autosave: </strong> Posts are now autosaved locally. If your browser crashes, your computer dies, or the server goes offline as you&#8217;re saving, you won&#8217;t lose the your post.</li>\n<li><strong>Post Locking: </strong> See when someone is currently editing a post, and kick them out of it if they fall asleep at the keyboard.</li>\n<li><strong>Nav Menus: </strong> Nav menus have been simplified with an accordion-based UI, and a separate tab for  bulk-assigning menus to locations.</li>\n<li><strong>Revisions:</strong> The all-new revisions UI features avatars, a slider that &#8220;scrubs&#8221; through history, and two-slider range comparisons.</li>\n</ul>\n<p><strong>Developers: </strong> You make WordPress awesome(er). One of the things we strive to do with every release is be compatible with existing plugins and themes. But we need your help. <strong>Please test your plugins and themes against 3.6.</strong> If something isn&#8217;t quite right, please let us know. (Chances are, it wasn&#8217;t intentional.) If you&#8217;re a forward-thinking theme developer, you should be looking at implementing the new Post Format support in some of your themes (look to Twenty Thirteen for inspiration).</p>\n<p>We&#8217;re looking forward to your feedback. If you break it (i.e. find a bug), please report it, and if you’re a developer, try to help us fix it. We&#8217;ve already had more than 150 contributors to version 3.6 — it&#8217;s not too late to join the party!</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:60:\"http://wordpress.org/news/2013/04/wordpress-3-6-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.5.1 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2013/01/wordpress-3-5-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:59:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Jan 2013 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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:33:\"http://wordpress.org/news/?p=2531\";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:363:\"WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [&#8230;]\";s: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:\"Andrew Nacin\";s: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:2499:\"<p>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, <a href=\"http://core.trac.wordpress.org/milestone/3.5.1\">fixing 37 bugs</a>. It is also a security release for all previous WordPress versions. For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.5.1\">list of tickets</a> and the <a href=\"http://core.trac.wordpress.org/log/branches/3.5?rev=23341&amp;stop_rev=23167\">changelog</a>, which include:</p>\n<ul>\n<li>Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare cases.</li>\n<li>Media: Fix a collection of minor workflow and compatibility issues in the new media manager.</li>\n<li>Networks: Suggest proper rewrite rules when creating a new network.</li>\n<li>Prevent scheduled posts from being stripped of certain HTML, such as video embeds, when they are published.</li>\n<li>Work around some misconfigurations that may have caused some JavaScript in the WordPress admin area to fail.</li>\n<li>Suppress some warnings that could occur when a plugin misused the database or user APIs.</li>\n</ul>\n<p>Additionally, a bug affecting Windows servers running IIS can prevent updating from 3.5 to 3.5.1. If you receive the error &#8220;Destination directory for file streaming does not exist or is not writable,&#8221; you will need to <a href=\"http://codex.wordpress.org/Version_3.5.1\">follow the steps outlined on the Codex</a>.</p>\n<p>WordPress 3.5.1 also addresses the following security issues:</p>\n<ul>\n<li>A server-side request forgery vulnerability and remote port scanning using pingbacks. This vulnerability, which could potentially be used to expose information and compromise a site, affects all previous WordPress versions. This was fixed by the WordPress security team. We&#8217;d like to thank security researchers <a href=\"http://codeseekah.com/\">Gennady Kovshenin</a> and <a href=\"http://www.ethicalhack3r.co.uk/\">Ryan Dewhurst</a> for reviewing our work.</li>\n<li>Two instances of cross-site scripting via shortcodes and post content. These issues were discovered by Jon Cave of the WordPress security team.</li>\n<li>A cross-site scripting vulnerability in the external library Plupload. Thanks to the Moxiecode team for working with us on this, and for releasing Plupload 1.5.5 to address this issue.</li>\n</ul>\n<p><strong><a href=\"http://wordpress.org/download/\">Download 3.5.1</a> or visit Dashboard → Updates in your site admin to update now.</strong></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:55:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;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:17:\"2012: A Look Back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/news/2013/01/2012-a-look-back/\";s: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:\"http://wordpress.org/news/2013/01/2012-a-look-back/#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, 01 Jan 2013 02:22: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: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:33:\"http://wordpress.org/news/?p=2525\";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:344:\"Another year is coming to a close, and it&#8217;s time to look back and reflect on what we&#8217;ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4441:\"<p>Another year is coming to a close, and it&#8217;s time to look back and reflect on what we&#8217;ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering.</p>\n<h4>Software Releases</h4>\n<p>We had two major releases of the WordPress web application with versions <a href=\"http://wordpress.org/news/2012/06/green/\">3.4</a> and <a href=\"http://wordpress.org/news/2012/12/elvin/\">3.5</a>, as well as 5 security releases during 2012. 3.4 included the theme customizer, while 3.5 became the long awaited &#8220;media release&#8221; featuring a new uploader and gallery management tool. 3.5 contained code contributions from more people than ever, and we hope to continue growing the contributor ranks in the year ahead. We currently have native apps on 6 mobile platforms &#8212; <a href=\"http://ios.wordpress.org/\">iOS</a>, <a href=\"http://android.wordpress.org/\">Android</a>, <a href=\"http://blackberry.wordpress.org/\">Blackberry</a>, <a href=\"http://wpwindowsphone.wordpress.com/\">Windows Phone</a>, <a href=\"http://nokia.wordpress.org/\">Nokia</a>, and <a href=\"http://webos.wordpress.org/\">WebOS</a> &#8212; and saw several updates there as well.</p>\n<h4>Plugin Directory</h4>\n<p>A number of improvements were made to the Plugin Directory in 2012. More cosmetic  updates, like the introduction of branded plugin page headers, make it a nicer browsing experience, while functional changes like better-integrated support forums, plugin reviews, and a favorites system made the plugin directory even more useful as a resource.</p>\n<h4>The &#8220;Make&#8221; Network and Team Reps</h4>\n<p>2012 was the year that saw the creation of <a href=\"http://make.wordpress.org/\">Make.wordpress.org</a>, a network of sites for the teams of contributors responsible for the different areas of the WordPress project. Now anyone can follow along and get involved with the teams that work on <a href=\"http://make.wordpress.org/core/\">core</a>, <a href=\"http://make.wordpress.org/themes/\">theme review</a>, <a href=\"http://make.wordpress.org/support/\">forum support</a>, <a href=\"http://make.wordpress.org/docs/\">documentation</a>, and more. In 2013 we&#8217;ll work to improve these sites to make it easier to become a contributor. Each team also now has elected Team Reps, a new role that has already led to more cross-team communication. Team reps post each week to the <a href=\"https://make.wordpress.org/updates/\">Updates blog</a> so that the other reps can keep up with what&#8217;s going on in other teams.</p>\n<h4>WordPress Community Summit</h4>\n<p>At the end of October, about 100 of the most influential and respected members of the WordPress community attended an inaugural <a href=\"https://make.wordpress.org/summit\">summit</a> to discuss where we all stand, and to figure out where we go next with WordPress. A &#8220;conference of conversations,&#8221; this unconference made everyone an active participant, and while not every issue brought to the table was solved by the end of the event, the right questions were being asked.</p>\n<h4>Meetup.com</h4>\n<p>The WordPress Foundation now has a central account with Meetup.com. We&#8217;ve brought in a couple dozen existing meetup groups as a pilot to test the system, and are in the process of working with more existing meetups (as well as new ones) to join us so that local organizers won&#8217;t have to pay organizer dues and can get more support from the WordPress project.</p>\n<h4>Internet Blackout Day</h4>\n<p>We participated in the protest against SOPA/PIPA, Internet Blackout Day, on January 18. Though we usually stay out of politics, this campaign was important, and we not only participated in the blackout on WordPress.org, we encouraged our users to do so as well, and recommended plugins to provide blackout functionality. It was deemed the <a href=\"http://sopastrike.com/numbers/\">largest online protest in history</a>.</p>\n<h4>WordCamps</h4>\n<p>And finally, it wouldn&#8217;t be a recap without counting up the <a href=\"http://wordcamp.org\">WordCamps</a>! There were 67 WordCamps around the world in 2012, bringing together WordPress users, developers, and fans. If you didn&#8217;t make it to a WordCamp this year, maybe it can be one of your new year resolutions: <a href=\"http://central.wordcamp.org/schedule/\">check the schedule</a> to find one near you!</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:56:\"http://wordpress.org/news/2013/01/2012-a-look-back/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 08 Jun 2013 09:55:43 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Sun, 02 Jun 2013 02:32:53 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130502190902\";}','no'),(1026,'_site_transient_timeout_browser_cc58d720c8213568dd7f694510f07d00','1370378397','yes'),(1027,'_site_transient_browser_cc58d720c8213568dd7f694510f07d00','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"27.0.1453.94\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(797,'_site_transient_browser_752c6ab2ed3397ae40035f1eae372250','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"20.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(1617,'_site_transient_browser_1cba7d39a7293c7e1de4e3333c3242f4','a:8:{s:4:\"name\";N;s:7:\"version\";N;s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(583,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1197,'_transient_timeout_plugin_slugs','1370691192','no'),(1198,'_transient_plugin_slugs','a:3:{i:0;s:45:\"add-link-to-facebook/add-link-to-facebook.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:9:\"hello.php\";}','no'),(666,'_site_transient_update_plugins','O:8:\"stdClass\":2:{s:12:\"last_checked\";i:1374949285;s:8:\"response\";a:2:{s:45:\"add-link-to-facebook/add-link-to-facebook.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20428\";s:4:\"slug\";s:20:\"add-link-to-facebook\";s:11:\"new_version\";s:5:\"1.186\";s:14:\"upgrade_notice\";s:15:\"One improvement\";s:3:\"url\";s:50:\"http://wordpress.org/plugins/add-link-to-facebook/\";s:7:\"package\";s:68:\"http://downloads.wordpress.org/plugin/add-link-to-facebook.1.186.zip\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:11:\"new_version\";s:5:\"2.5.8\";s:3:\"url\";s:37:\"http://wordpress.org/plugins/akismet/\";s:7:\"package\";s:55:\"http://downloads.wordpress.org/plugin/akismet.2.5.8.zip\";}}}','yes'),(667,'al2fb_siteurl','1','yes'),(668,'al2fb_css','.al2fb_widget_comments { }\n.al2fb_widget_comments li { }\n.al2fb_widget_picture { width: 32px; height: 32px; }\n.al2fb_widget_name { }\n.al2fb_widget_comment { }\n.al2fb_widget_date { font-size: smaller; }\n','yes'),(669,'al2fb_noshortcode','1','yes'),(670,'al2fb_nofilter','1','yes'),(671,'al2fb_nofilter_comments','1','yes'),(672,'al2fb_version','13','yes'),(673,'al2fb_exclude_custom','1','yes'),(674,'al2fb_min_cap','edit_posts','yes'),(1234,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1370728544','no'),(1235,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1370685344','no'),(1147,'_site_transient_timeout_browser_4155da8a3756e08080a06133476ef1fd','1371016398','yes'),(1210,'_transient_timeout_feed_f5282e6d7113c24ed064b747a5efa021','1370728543','no'),(1211,'_transient_feed_f5282e6d7113c24ed064b747a5efa021','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\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:33:\"\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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"link:http://www.marcusjewelryny.com/ - Google Blog Search\";s:7:\"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:94:\"http://www.google.com/search?ie=utf-8&q=link:http://www.marcusjewelryny.com/&tbm=blg&tbs=sbd: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Your search - <b>link:http://www.marcusjewelryny.com/</b> - did not match any documents.\";s: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://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";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:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Sat, 08 Jun 2013 09:55:42 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=8acff35b886620bf:FF=0:TM=1370685342:LM=1370685343:S=_9UPJJyrCe6Jewni; expires=Mon, 08-Jun-2015 09:55:43 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=Y5RV13tlcRnKlEgUuGBPQssKqeTBzMHbxEoIHxStxaOoGEG8a55ql7dTfUfYx6OFcCVBp9ug5Rkko7A_tBSagy4K3G4EJXRu9P4VdkQmdJjzlBr6xhnAnI5KEtpTzsEp; expires=Sun, 08-Dec-2013 09:55:43 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20130502190902\";}','no'),(755,'al2fb_importing','1','yes'),(1212,'_transient_timeout_feed_mod_f5282e6d7113c24ed064b747a5efa021','1370728543','no'),(1231,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1370685344','no'),(836,'_site_transient_browser_d55fd2d77f597696d878e75c47981a97','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"26.0.1410.64\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(843,'_site_transient_timeout_browser_cfe547734366388b7a84253fd94ecae0','1368650793','yes'),(844,'_site_transient_browser_cfe547734366388b7a84253fd94ecae0','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"26.0.1410.64\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(927,'_site_transient_timeout_browser_9cd12bc0603f21c5a2851402152b635b','1369667495','yes'),(928,'_site_transient_browser_9cd12bc0603f21c5a2851402152b635b','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"26.0.1410.64\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes');
/*!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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=199 DEFAULT CHARSET=utf8;
/*!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'),(5,6,'_wp_attached_file','2013/03/banner.png'),(4,1,'_edit_lock','1370975911:1'),(6,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:451;s:6:\"height\";i:292;s:4:\"file\";s:18:\"2013/03/banner.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"banner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"banner-300x194.png\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(7,1,'_thumbnail_id','6'),(8,1,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(9,1,'_edit_last','1'),(12,2,'_edit_lock','1370605441:1'),(13,2,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(65,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:306;s:6:\"height\";i:319;s:4:\"file\";s:17:\"2013/03/owner.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"owner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"owner-287x300.png\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(20,13,'_edit_last','1'),(21,13,'_edit_lock','1368052969:1'),(22,14,'_wp_attached_file','2013/03/mapa.png'),(23,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:221;s:6:\"height\";i:219;s:4:\"file\";s:16:\"2013/03/mapa.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"mapa-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(24,13,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(25,13,'_wp_page_template','default'),(26,20,'_edit_last','1'),(27,20,'_edit_lock','1369068183:1'),(28,20,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(29,20,'_wp_page_template','default'),(30,23,'_edit_last','1'),(31,23,'_edit_lock','1369067207:1'),(32,23,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(33,23,'_wp_page_template','default'),(34,13,'_thumbnail_id','6'),(35,20,'_thumbnail_id','6'),(36,23,'_thumbnail_id','6'),(37,37,'_wp_attached_file','2013/03/contactusbtn0.png'),(38,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:175;s:6:\"height\";i:65;s:4:\"file\";s:25:\"2013/03/contactusbtn0.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"contactusbtn0-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(64,81,'_wp_attached_file','2013/03/owner.png'),(43,2,'_edit_last','1'),(44,45,'_edit_last','1'),(45,45,'_edit_lock','1364250730:1'),(46,45,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(47,45,'_wp_page_template','page-contact.php'),(48,2,'_thumbnail_id','6'),(49,45,'_thumbnail_id','6'),(50,45,'et_ptemplate_settings','a:3:{s:16:\"et_fullwidthpage\";i:0;s:21:\"et_regenerate_numbers\";i:0;s:11:\"et_email_to\";s:0:\"\";}'),(51,66,'_edit_last','1'),(52,66,'_edit_lock','1368052750:1'),(53,66,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(54,66,'_wp_page_template','default'),(55,68,'_edit_last','1'),(56,68,'_wp_page_template','default'),(57,68,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(58,68,'_edit_lock','1365723793:1'),(59,70,'_edit_last','1'),(60,70,'_edit_lock','1368052975:1'),(61,70,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(62,70,'_wp_page_template','default'),(63,70,'_thumbnail_id','6'),(68,84,'_wp_attached_file','2013/03/btnContactUS.png'),(69,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:175;s:6:\"height\";i:65;s:4:\"file\";s:24:\"2013/03/btnContactUS.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"btnContactUS-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(74,84,'_edit_lock','1365524052:1'),(98,119,'_menu_item_menu_item_parent','0'),(97,119,'_menu_item_type','custom'),(99,119,'_menu_item_object_id','119'),(100,119,'_menu_item_object','custom'),(101,119,'_menu_item_target',''),(102,119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(103,119,'_menu_item_xfn',''),(104,119,'_menu_item_url','http://www.marcusjewelryny.com//'),(106,120,'_menu_item_type','post_type'),(107,120,'_menu_item_menu_item_parent','0'),(108,120,'_menu_item_object_id','13'),(109,120,'_menu_item_object','page'),(110,120,'_menu_item_target',''),(111,120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(112,120,'_menu_item_xfn',''),(113,120,'_menu_item_url',''),(115,121,'_menu_item_type','post_type'),(116,121,'_menu_item_menu_item_parent','0'),(117,121,'_menu_item_object_id','45'),(118,121,'_menu_item_object','page'),(119,121,'_menu_item_target',''),(120,121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(121,121,'_menu_item_xfn',''),(122,121,'_menu_item_url',''),(124,122,'_menu_item_type','post_type'),(125,122,'_menu_item_menu_item_parent','0'),(126,122,'_menu_item_object_id','20'),(127,122,'_menu_item_object','page'),(128,122,'_menu_item_target',''),(129,122,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(130,122,'_menu_item_xfn',''),(131,122,'_menu_item_url',''),(133,123,'_menu_item_type','post_type'),(134,123,'_menu_item_menu_item_parent','0'),(135,123,'_menu_item_object_id','2'),(136,123,'_menu_item_object','page'),(137,123,'_menu_item_target',''),(138,123,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(139,123,'_menu_item_xfn',''),(140,123,'_menu_item_url',''),(142,124,'_menu_item_type','post_type'),(143,124,'_menu_item_menu_item_parent','0'),(144,124,'_menu_item_object_id','23'),(145,124,'_menu_item_object','page'),(146,124,'_menu_item_target',''),(147,124,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(148,124,'_menu_item_xfn',''),(149,124,'_menu_item_url',''),(197,1,'_pingme','1'),(198,1,'_encloseme','1'),(157,170,'_edit_last','1'),(158,170,'_edit_lock','1370604721:1'),(159,170,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(160,170,'_wp_page_template','default'),(161,180,'_edit_last','1'),(162,180,'_edit_lock','1369068323:1'),(163,180,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(164,180,'_wp_page_template','default'),(165,182,'_edit_last','1'),(166,182,'_edit_lock','1369068187:1'),(167,182,'et_nova_settings','a:2:{s:14:\"et_is_featured\";i:0;s:20:\"et_is_page_portfolio\";i:0;}'),(168,182,'_wp_page_template','default');
/*!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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=208 DEFAULT CHARSET=utf8;
/*!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,'2013-03-23 18:09:13','2013-03-23 18:09:13','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','publish','closed','closed','','hello-world','','','2013-06-11 18:38:30','2013-06-11 18:38:30','',0,'http://www.marcusjewelryny.com//?p=1',0,'post','',1),(2,1,'2013-03-23 18:09:13','2013-03-23 18:09:13','<ul>\r\n	<li>New settings for your old diamonds/gemstones.</li>\r\n	<li>Gems replaced or tightened</li>\r\n	<li>Clasps replaced</li>\r\n	<li>Chains + Bracelets repaired + shortened</li>\r\n	<li>Rings sized</li>\r\n	<li>Prongs fixed</li>\r\n	<li>Rhodium Plating</li>\r\n	<li>Watch Batteries</li>\r\n	<li>Engraving</li>\r\n	<li>Pearls + Beads restrung</li>\r\n	<li>Appraisals for insurance</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n	<li>All types of repairs done on site</li>\r\n	<li>Jeweler has 39 years of experience</li>\r\n	<li>Low Prices - High Quality Work</li>\r\n	<li>Same Day service for many jobs</li>\r\n	<li>18 years at the same location.</li>\r\n</ul>','Services','','publish','open','open','','sample-page','','','2013-05-20 16:46:46','2013-05-20 16:46:46','',0,'http://www.marcusjewelryny.com//?page_id=2',0,'page','',0),(45,1,'2013-03-25 21:05:25','2013-03-25 21:05:25','','Contact Us','','publish','open','open','','contact-us','','','2013-03-25 22:33:03','2013-03-25 22:33:03','',0,'http://www.marcusjewelryny.com//?page_id=45',0,'page','',0),(66,1,'2013-03-25 23:07:45','2013-03-25 23:07:45','Monday - Saturday: 11am - 7pm\r\nSundays by appointment (phone 716-834-1030)','Hours Of Operation','','publish','open','open','','hours-of-operation','','','2013-03-25 23:07:45','2013-03-25 23:07:45','',0,'http://www.marcusjewelryny.com//?page_id=66',0,'page','',0),(65,1,'2013-03-25 22:30:47','2013-03-25 22:30:47','<div style=\"float:left;width: 175px;\">\r\n<b>Contact Info</b>\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>','Contact Us','','inherit','open','open','','45-revision-14','','','2013-03-25 22:30:47','2013-03-25 22:30:47','',45,'http://www.marcusjewelryny.com//?p=65',0,'revision','',0),(46,1,'2013-03-25 20:56:04','2013-03-25 20:56:04','<form>\n<table>\n<tr><td>Name:<td></tr>\n<tr><td><input type=\"text\" name=\"txtname\" id=\"txtname\"><td></tr>\n\n<tr><td>E-mail Address:<td></tr>\n<tr><td><input type=\"text\" name=\"txtemail\" id=\"txtemail\"><td></tr>\n\n<tr><td>Phone:<td></tr>\n<tr><td><input type=\"text\" name=\"txtphone\" id=\"txtphone\"><td></tr>\n\n<tr><td>Aditional Info:<td></tr>\n<tr><td><textarea name=\"txtmessage\" id=\"txtmessage\" rows=\"4\" cols=\"50\"></textarea><td></tr>\n\n<tr><td collspan=\"2\"><input type=\"submit\" value=\"\"</tr>\n</table>\n</form>','Contact Us','','inherit','open','open','','45-revision','','','2013-03-25 20:56:04','2013-03-25 20:56:04','',45,'http://www.marcusjewelryny.com//?p=46',0,'revision','',0),(6,1,'2013-03-23 21:51:58','2013-03-23 21:51:58','','banner','','inherit','open','open','','banner','','','2013-03-23 21:51:58','2013-03-23 21:51:58','',1,'http://www.marcusjewelryny.com//wp-content/uploads/2013/03/banner.png',0,'attachment','image/png',0),(7,1,'2013-05-28 20:58:07','2013-05-28 20:58:07','<div id=\"banner0\">\n<div id=\"txtdes\"><b>MARCUS JEWELRY\n</b>\nLow Prices - High QualityRepairs, Alterations, Appraisals\n\n<i>Same Day Service When Possible\n</i><span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\n\n</div>\n</div>\n<strong>\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-autosave','','','2013-05-28 20:58:07','2013-05-28 20:58:07','',1,'http://www.marcusjewelryny.com//?p=7',0,'revision','',0),(84,1,'2013-04-09 16:04:30','2013-04-09 16:04:30','','btnContactUS','','inherit','open','open','','btncontactus','','','2013-04-09 16:04:30','2013-04-09 16:04:30','',1,'http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png',0,'attachment','image/png',0),(85,1,'2013-04-09 15:49:05','2013-04-09 15:49:05','<strong>Click  here to Contact Us</strong>\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/contactusbtn0.png\"><img class=\"alignnone size-full wp-image-37\" alt=\"contactusbtn0\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/contactusbtn0.png\" width=\"175\" height=\"65\" /></a>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-8','','','2013-04-09 15:49:05','2013-04-09 15:49:05','',1,'http://www.marcusjewelryny.com//?p=85',0,'revision','',0),(10,1,'2013-03-23 21:52:42','2013-03-23 21:52:42','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','inherit','open','open','','1-revision-2','','','2013-03-23 21:52:42','2013-03-23 21:52:42','',1,'http://www.marcusjewelryny.com//?p=10',0,'revision','',0),(8,1,'2013-03-23 18:09:13','2013-03-23 18:09:13','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','inherit','open','open','','1-revision','','','2013-03-23 18:09:13','2013-03-23 18:09:13','',1,'http://www.marcusjewelryny.com//?p=8',0,'revision','',0),(9,1,'2013-06-07 11:40:26','2013-06-07 11:40:26','<ul>\n	<li>New settings for your old diamonds/gemstones.</li>\n	<li>Gems replaced or tightened</li>\n	<li>Clasps replaced</li>\n	<li>Chains + Bracelets repaired + shortened</li>\n	<li>Rings sized</li>\n	<li>Prongs fixed</li>\n	<li>Rhodium Plating</li>\n	<li>Watch Batteries</li>\n	<li>Engraving</li>\n	<li>Pearls + Beads restrung</li>\n	<li>Appraisals for insurance</li>\n</ul>\n&nbsp;\n<ul>\n	<li>All types of repairs done on site</li>\n	<li>Jeweler has 39 years of experience</li>\n	<li>Low Prices - High Quality Work</li>\n	<li>Same Day service for many jobs</li>\n	<li>18 years at the same location.</li>\n</ul>','Services','','inherit','open','open','','2-autosave','','','2013-06-07 11:40:26','2013-06-07 11:40:26','',2,'http://www.marcusjewelryny.com//?p=9',0,'revision','',0),(60,1,'2013-03-25 20:42:45','2013-03-25 20:42:45','','We Do','','inherit','open','open','','2-revision-2','','','2013-03-25 20:42:45','2013-03-25 20:42:45','',2,'http://www.marcusjewelryny.com//?p=60',0,'revision','',0),(61,1,'2013-03-25 21:58:54','2013-03-25 21:58:54','-Repairs\r\n-Vocal and Written Appraisals & Quotes\r\n-Engravings\r\n\r\nand others','We Do','','inherit','open','open','','2-revision-3','','','2013-03-25 21:58:54','2013-03-25 21:58:54','',2,'http://www.marcusjewelryny.com//?p=61',0,'revision','',0),(62,1,'2013-03-25 21:33:45','2013-03-25 21:33:45','<div style=\"float: left;width: 625px;margin-bottom: 70px;\">\r\n<div style=\"float: left;width: 450px;\">\r\n<form>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Name:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtname\" type=\"text\" name=\"txtname\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>E-mail Address:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtemail\" type=\"text\" name=\"txtemail\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Phone:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtphone\" type=\"text\" name=\"txtphone\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Aditional Info:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><textarea id=\"txtmessage\" cols=\"50\" name=\"txtmessage\" rows=\"4\"></textarea></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input type=\"submit\" value=\"Send\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</form>\r\n</div>\r\n<div style=\"float:left;width: 175px;\">\r\n<b>Contact Info</b>\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>\r\n</div>','Contact Us','','inherit','open','open','','45-revision-11','','','2013-03-25 21:33:45','2013-03-25 21:33:45','',45,'http://www.marcusjewelryny.com//?p=62',0,'revision','',0),(12,1,'2013-03-23 22:00:24','2013-03-23 22:00:24','Click  here to Contacs Us','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-4','','','2013-03-23 22:00:24','2013-03-23 22:00:24','',1,'http://www.marcusjewelryny.com//?p=12',0,'revision','',0),(11,1,'2013-03-23 21:59:43','2013-03-23 21:59:43','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!\r\n\r\nClick  here to Contacs Us','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-3','','','2013-03-23 21:59:43','2013-03-23 21:59:43','',1,'http://www.marcusjewelryny.com//?p=11',0,'revision','',0),(13,1,'2013-03-23 22:13:14','2013-03-23 22:13:14','<div class=\"main_about\">\r\n\r\n<div class=\"content_about\">\r\nMarcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"size-medium wp-image-81 alignnone\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a>\r\n</div>\r\n</div>','About us','','publish','open','open','','about-us','','','2013-04-23 22:37:21','2013-04-23 22:37:21','',0,'http://www.marcusjewelryny.com//?page_id=13',0,'page','',0),(140,1,'2013-04-23 22:33:07','2013-04-23 22:33:07','<div class=\"main_about\">\r\n<div class=\"img_about\">Marcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.<a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"size-medium wp-image-81 alignnone\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a></div>\r\n</div>','About us','','inherit','open','open','','13-revision-30','','','2013-04-23 22:33:07','2013-04-23 22:33:07','',13,'http://www.marcusjewelryny.com//?p=140',0,'revision','',0),(14,1,'2013-03-23 22:11:55','2013-03-23 22:11:55','','mapa','','inherit','open','open','','mapa','','','2013-03-23 22:11:55','2013-03-23 22:11:55','',13,'http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png',0,'attachment','image/png',0),(15,1,'2013-03-23 22:11:23','2013-03-23 22:11:23','<strong>About Us</strong>\n\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\n\n&nbsp;','About Us','','inherit','open','open','','13-revision','','','2013-03-23 22:11:23','2013-03-23 22:11:23','',13,'http://www.marcusjewelryny.com//?p=15',0,'revision','',0),(16,1,'2013-03-23 22:12:23','2013-03-23 22:12:23','<strong>About Us</strong>\n\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\n\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"alignnone size-full wp-image-14\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" /></a>','About Us','','inherit','open','open','','13-revision-2','','','2013-03-23 22:12:23','2013-03-23 22:12:23','',13,'http://www.marcusjewelryny.com//?p=16',0,'revision','',0),(17,1,'2013-03-23 22:13:14','2013-03-23 22:13:14','<strong>About Us</strong>\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"alignnone size-full wp-image-14\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" /></a>','About Us','','inherit','open','open','','13-revision-3','','','2013-03-23 22:13:14','2013-03-23 22:13:14','',13,'http://www.marcusjewelryny.com//?p=17',0,'revision','',0),(18,1,'2013-04-23 22:35:14','2013-04-23 22:35:14','<div class=\"main_about\">\n\n<div class=\"img_about\">\nMarcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.\n</div>\n\n<div class=\"img_about\">\n<a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\n<img class=\"size-medium wp-image-81 alignnone\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\n</a></div>\n</div>','About us','','inherit','open','open','','13-autosave','','','2013-04-23 22:35:14','2013-04-23 22:35:14','',13,'http://www.marcusjewelryny.com//?p=18',0,'revision','',0),(19,1,'2013-03-23 22:14:06','2013-03-23 22:14:06','<strong></strong>Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" /></a>','About Us','','inherit','open','open','','13-revision-4','','','2013-03-23 22:14:06','2013-03-23 22:14:06','',13,'http://www.marcusjewelryny.com//?p=19',0,'revision','',0),(20,1,'2013-03-23 22:41:09','2013-03-23 22:41:09','\r\n\r\n<ul>\r\n	<li><span style=\"line-height: 13px;\">Anything Gold, Platinum, Silver, Diamonds</span></li>\r\n	<li>No amount too small or too large</li>\r\n	<li>Cash Paid</li>\r\n	<li>Discreet + Friendly Buyers</li>\r\n	<li>We pay top dollar. We want you to be satisfied + tell your friends about us</li>\r\n	<li>18 years at the same location</li>\r\n	<li>No appointment Necessary</li>\r\n</ul>','We Buy','','publish','open','open','','hours-of-operations','','','2013-05-20 16:44:21','2013-05-20 16:44:21','',0,'http://www.marcusjewelryny.com//?page_id=20',0,'page','',0),(186,1,'2013-05-20 16:43:27','2013-05-20 16:43:27','<ul>\r\n	<li><span style=\"line-height: 13px;\">Anything Gold, Platinum, Silver, Diamonds</span></li>\r\n	<li>No amount too small or too large</li>\r\n	<li>Cash Paid</li>\r\n	<li>Discreet + Friendly Buyers</li>\r\n	<li>We pay top dollar. We want you to be satisfied + tell your friends about us</li>\r\n	<li>18 years at the same location</li>\r\n	<li>No appointment Necessary</li>\r\n</ul>','We Buy','','inherit','open','open','','182-revision-3','','','2013-05-20 16:43:27','2013-05-20 16:43:27','',182,'http://www.marcusjewelryny.com/?p=186',0,'revision','',0),(21,1,'2013-03-23 22:38:28','2013-03-23 22:38:28','Here will go the whole content of this page','Hours  of  Operations','','inherit','open','open','','20-revision','','','2013-03-23 22:38:28','2013-03-23 22:38:28','',20,'http://www.marcusjewelryny.com//?p=21',0,'revision','',0),(22,1,'2013-04-24 18:01:57','2013-04-24 18:01:57','<b>Top Dollar Paid For:</b>\n<br>\n-<span onmouseover=\"we_buy1();\" onmouseout=\"we_buy9();\" style=\"cursor: pointer;\">Gold/span>\n-<span onmouseover=\"we_buy2();\" onmouseout=\"we_buy10();\" style=\"cursor: pointer;\">Silver\n-<span onmouseover=\"we_buy3();\" onmouseout=\"we_buy11();\" style=\"cursor: pointer;\">Platinum\n-<span onmouseover=\"we_buy4();\" onmouseout=\"we_buy12();\" style=\"cursor: pointer;\">Diamonds\n-<span onmouseover=\"we_buy5();\" onmouseout=\"we_buy13();\" style=\"cursor: pointer;\">Estate Jewelry\n-<span onmouseover=\"we_buy6();\" onmouseout=\"we_buy14();\" style=\"cursor: pointer;\">Contemporary Pieces\n-<span onmouseover=\"we_buy7();\" onmouseout=\"we_buy9();\" style=\"cursor: pointer;\">Precious Jewels, Gemstones and metals, from Amethyst to Zirconium\n-<span onmouseover=\"we_buy8();\" style=\"cursor: pointer;\">Miscellaneous Items are purchased if there is a positive ROI.','We Buy','','inherit','open','open','','20-autosave','','','2013-04-24 18:01:57','2013-04-24 18:01:57','',20,'http://www.marcusjewelryny.com//?p=22',0,'revision','',0),(23,1,'2013-03-23 22:52:53','2013-03-23 22:52:53','<ul>\r\n	<li>New + Estate Jewelry</li>\r\n	<li>Diamond Rings, Diamond Bracelets, Diamond Stud Earrings, Diamond Necklaces</li>\r\n	<li>Loose Diamonds</li>\r\n	<li>G/A Certified Diamonds</li>\r\n	<li>Gold Only Bracelets, Chains, Earrings + Rings sold by the lowest per gram prices</li>\r\n	<li>Religious Medals</li>\r\n	<li>Medical Alert Jewelry</li>\r\n</ul>\r\n&nbsp;\r\n\r\n-18 years at the same location.\r\n-Top quality at the lowest prices.\r\n-Warranty on all products + services.\r\n','We Sell','','publish','open','open','','services-provide','','','2013-05-20 16:28:34','2013-05-20 16:28:34','',0,'http://www.marcusjewelryny.com//?page_id=23',0,'page','',0),(176,1,'2013-05-20 16:16:00','2013-05-20 16:16:00','<ul>\r\n	<li>New + Estate Jewelry</li>\r\n	<li>Diamond Rings, Diamond Bracelets, Diamond Stud Earrings, Diamond Necklaces</li>\r\n	<li>Loose Diamonds</li>\r\n	<li>G/A Certified Diamonds</li>\r\n	<li>Gold only bracelets, chains, earrings + rings sold by the lowest per gram prices</li>\r\n	<li>religious medals</li>\r\n	<li>medical alert jewelry</li>\r\n</ul>\r\n&nbsp;\r\n\r\n-18 years at the same location.\r\n-Top quality at the lowest prices.\r\n-Warranty on all products + services.','We Sell ','','inherit','open','open','','170-revision-3','','','2013-05-20 16:16:00','2013-05-20 16:16:00','',170,'http://www.marcusjewelryny.com/?p=176',0,'revision','',0),(24,1,'2013-03-23 22:52:06','2013-03-23 22:52:06','Here will go the whole content of this page','Services Provide','','inherit','open','open','','23-revision','','','2013-03-23 22:52:06','2013-03-23 22:52:06','',23,'http://www.marcusjewelryny.com//?p=24',0,'revision','',0),(25,1,'2013-03-23 22:17:03','2013-03-23 22:17:03','<strong></strong>Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" /></a>','About Us','','inherit','open','open','','13-revision-5','','','2013-03-23 22:17:03','2013-03-23 22:17:03','',13,'http://www.marcusjewelryny.com//?p=25',0,'revision','',0),(26,1,'2013-03-23 22:41:09','2013-03-23 22:41:09','Here will go the whole content of this page','Hours  of  Operations','','inherit','open','open','','20-revision-2','','','2013-03-23 22:41:09','2013-03-23 22:41:09','',20,'http://www.marcusjewelryny.com//?p=26',0,'revision','',0),(27,1,'2013-03-23 22:52:53','2013-03-23 22:52:53','Here will go the whole content of this page','Services Provide','','inherit','open','open','','23-revision-2','','','2013-03-23 22:52:53','2013-03-23 22:52:53','',23,'http://www.marcusjewelryny.com//?p=27',0,'revision','',0),(28,1,'2013-05-20 16:19:26','2013-05-20 16:19:26','<ul>\n	<li>New + Estate Jewelry</li>\n	<li>Diamond Rings, Diamond Bracelets, Diamond Stud Earrings, Diamond Necklaces</li>\n	<li>Loose Diamonds</li>\n	<li>G/A Certified Diamonds</li>\n	<li>Gold only bracelets, chains, earrings + rings sold by the lowest per gram prices</li>\n	<li>religious medals</li>\n	<li>medical alert jewelry</li>\n</ul>\n&nbsp;\n\n-18 years at the same location.\n-Top quality at the lowest prices.\n-Warranty on all products + services.\n','We Sell','','inherit','open','open','','23-autosave','','','2013-05-20 16:19:26','2013-05-20 16:19:26','',23,'http://www.marcusjewelryny.com//?p=28',0,'revision','',0),(175,1,'2013-04-24 00:04:59','2013-04-24 00:04:59','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"we_sell1();\" onmouseout=\"we_sell6();\"  style=\"cursor: pointer;\">Necklaces</span>\r\n-<span onmouseover=\"we_sell2();\" onmouseout=\"we_sell7();\"  style=\"cursor: pointer;\">Rings</span>\r\n-<span onmouseover=\"we_sell3();\" onmouseout=\"we_sell8();\"  style=\"cursor: pointer;\">Anklets</span>\r\n-<span onmouseover=\"we_sell4();\" onmouseout=\"we_sell9();\"  style=\"cursor: pointer;\">Jewels and Gemstones</span>\r\n-<span onmouseover=\"we_sell5();\" onmouseout=\"we_sell10();\" style=\"cursor: pointer;\">Precious Metals</span>','We Sell','','inherit','open','open','','23-revision-27','','','2013-04-24 00:04:59','2013-04-24 00:04:59','',23,'http://www.marcusjewelryny.com/?p=175',0,'revision','',0),(29,1,'2013-03-23 23:06:40','2013-03-23 23:06:40','<strong></strong>Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" /></a>','About Us','','inherit','open','open','','13-revision-6','','','2013-03-23 23:06:40','2013-03-23 23:06:40','',13,'http://www.marcusjewelryny.com//?p=29',0,'revision','',0),(30,1,'2013-03-23 23:21:16','2013-03-23 23:21:16','&nbsp;\r\n<table>\r\n<tr>\r\n<td rowspan=\"2\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</td>\r\n<td>\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" /></a>\r\n</td>\r\n</tr>\r\n<table>','About Us','','inherit','open','open','','13-revision-7','','','2013-03-23 23:21:16','2013-03-23 23:21:16','',13,'http://www.marcusjewelryny.com//?p=30',0,'revision','',0),(31,1,'2013-03-23 23:27:13','2013-03-23 23:27:13','&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.</td>\r\n\r\n<td><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>','About Us','','inherit','open','open','','13-revision-8','','','2013-03-23 23:27:13','2013-03-23 23:27:13','',13,'http://www.marcusjewelryny.com//?p=31',0,'revision','',0),(32,1,'2013-03-23 23:29:06','2013-03-23 23:29:06','&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n\r\n<td>\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</td>\r\n\r\n<td>\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','About Us','','inherit','open','open','','13-revision-9','','','2013-03-23 23:29:06','2013-03-23 23:29:06','',13,'http://www.marcusjewelryny.com//?p=32',0,'revision','',0),(34,1,'2013-03-23 23:32:20','2013-03-23 23:32:20','&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n\r\n<td width=\"740px\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</td>\r\n\r\n<td>\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<br>','About Us','','inherit','open','open','','13-revision-11','','','2013-03-23 23:32:20','2013-03-23 23:32:20','',13,'http://www.marcusjewelryny.com//?p=34',0,'revision','',0),(33,1,'2013-03-23 23:31:27','2013-03-23 23:31:27','&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n\r\n<td width=\"740px\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</td>\r\n\r\n<td>\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','About Us','','inherit','open','open','','13-revision-10','','','2013-03-23 23:31:27','2013-03-23 23:31:27','',13,'http://www.marcusjewelryny.com//?p=33',0,'revision','',0),(35,1,'2013-03-25 15:12:44','2013-03-25 15:12:44','<div style=\"float: right;width: 600px;\">\r\n\r\n<div style=\"float: left;margin-right: 20px;text-align: justify;width: 375px;\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div style=\"float: left;width: 200px;\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>','About Us','','inherit','open','open','','13-revision-12','','','2013-03-25 15:12:44','2013-03-25 15:12:44','',13,'http://www.marcusjewelryny.com//?p=35',0,'revision','',0),(40,1,'2013-03-25 15:46:04','2013-03-25 15:46:04','<div style=\"float: left;margin-left: 165px;margin-bottom: 20px;width: 655px;\">\r\n\r\n<div style=\"float: left; text-align: justify; width: 375px; margin-right: 50px;\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div style=\"float: left; width: 225px;\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>\r\n<br>\r\n<br>','About Us','','inherit','open','open','','13-revision-14','','','2013-03-25 15:46:04','2013-03-25 15:46:04','',13,'http://www.marcusjewelryny.com//?p=40',0,'revision','',0),(36,1,'2013-03-25 15:22:32','2013-03-25 15:22:32','<div style=\"float: right;width: 600px;\">\r\n\r\n<div style=\"float: left;margin-right: 20px;text-align: justify;width: 375px;\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div style=\"float: left;width: 200px;\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>\r\n<br>\r\n<br>','About Us','','inherit','open','open','','13-revision-13','','','2013-03-25 15:22:32','2013-03-25 15:22:32','',13,'http://www.marcusjewelryny.com//?p=36',0,'revision','',0),(41,1,'2013-03-25 18:39:40','2013-03-25 18:39:40','<div class=\"main_about\">\r\n\r\n<div class=\"content_about\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>','About Us','','inherit','open','open','','13-revision-15','','','2013-03-25 18:39:40','2013-03-25 18:39:40','',13,'http://www.marcusjewelryny.com//?p=41',0,'revision','',0),(37,1,'2013-03-25 17:44:52','2013-03-25 17:44:52','','contactusbtn0','','inherit','open','open','','contactusbtn0','','','2013-03-25 17:44:52','2013-03-25 17:44:52','',1,'http://www.marcusjewelryny.com//wp-content/uploads/2013/03/contactusbtn0.png',0,'attachment','image/png',0),(38,1,'2013-03-23 22:01:03','2013-03-23 22:01:03','<strong>Click  here to Contacs Us</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-5','','','2013-03-23 22:01:03','2013-03-23 22:01:03','',1,'http://www.marcusjewelryny.com//?p=38',0,'revision','',0),(39,1,'2013-03-25 17:45:12','2013-03-25 17:45:12','<strong>Click  here to Contacs Us</strong>\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/contactusbtn0.png\"><img class=\"alignnone size-full wp-image-37\" alt=\"contactusbtn0\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/contactusbtn0.png\" width=\"175\" height=\"65\" /></a>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-6','','','2013-03-25 17:45:12','2013-03-25 17:45:12','',1,'http://www.marcusjewelryny.com//?p=39',0,'revision','',0),(42,1,'2013-03-23 23:07:25','2013-03-23 23:07:25','Here will go the whole content of this page','Hours  of  Operations','','inherit','open','open','','20-revision-3','','','2013-03-23 23:07:25','2013-03-23 23:07:25','',20,'http://www.marcusjewelryny.com//?p=42',0,'revision','',0),(43,1,'2013-03-23 23:08:00','2013-03-23 23:08:00','Here will go the whole content of this page','Services Provide','','inherit','open','open','','23-revision-3','','','2013-03-23 23:08:00','2013-03-23 23:08:00','',23,'http://www.marcusjewelryny.com//?p=43',0,'revision','',0),(44,1,'2013-03-23 18:09:13','2013-03-23 18:09:13','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://www.marcusjewelryny.com//wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','open','open','','2-revision','','','2013-03-23 18:09:13','2013-03-23 18:09:13','',2,'http://www.marcusjewelryny.com//?p=44',0,'revision','',0),(47,1,'2013-03-25 20:57:04','2013-03-25 20:57:04','<form>\n<table>\n<tr><td>Name:<td></tr>\n<tr><td><input type=\"text\" name=\"txtname\" id=\"txtname\"><td></tr>\n\n<tr><td>E-mail Address:<td></tr>\n<tr><td><input type=\"text\" name=\"txtemail\" id=\"txtemail\"><td></tr>\n\n<tr><td>Phone:<td></tr>\n<tr><td><input type=\"text\" name=\"txtphone\" id=\"txtphone\"><td></tr>\n\n<tr><td>Aditional Info:<td></tr>\n<tr><td><textarea name=\"txtmessage\" id=\"txtmessage\" rows=\"4\" cols=\"50\"></textarea><td></tr>\n\n<tr><td collspan=\"2\"><input type=\"submit\" value=\"Send\"</tr>\n</table>\n</form>','Contact Us','','inherit','open','open','','45-revision-2','','','2013-03-25 20:57:04','2013-03-25 20:57:04','',45,'http://www.marcusjewelryny.com//?p=47',0,'revision','',0),(48,1,'2013-03-25 20:58:58','2013-03-25 20:58:58','<div style=\"float:left\">\r\n<form>\r\n<table>\r\n<tr><td>Name:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtname\" id=\"txtname\"><td></tr>\r\n\r\n<tr><td>E-mail Address:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtemail\" id=\"txtemail\"><td></tr>\r\n\r\n<tr><td>Phone:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtphone\" id=\"txtphone\"><td></tr>\r\n\r\n<tr><td>Aditional Info:<td></tr>\r\n<tr><td><textarea name=\"txtmessage\" id=\"txtmessage\" rows=\"4\" cols=\"50\"></textarea><td></tr>\r\n\r\n<tr><td collspan=\"2\"><input type=\"submit\" value=\"Send\"</tr>\r\n</table>\r\n</form>\r\n<div>\r\n<di style=\"float:left\">\r\nContact Info\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>','Contact Us','','inherit','open','open','','45-revision-3','','','2013-03-25 20:58:58','2013-03-25 20:58:58','',45,'http://www.marcusjewelryny.com//?p=48',0,'revision','',0),(49,1,'2013-03-25 21:01:39','2013-03-25 21:01:39','<div style=\"float:left\">\r\n<div style=\"float:left\">\r\n<form>\r\n<table>\r\n<tr><td>Name:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtname\" id=\"txtname\"><td></tr>\r\n\r\n<tr><td>E-mail Address:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtemail\" id=\"txtemail\"><td></tr>\r\n\r\n<tr><td>Phone:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtphone\" id=\"txtphone\"><td></tr>\r\n\r\n<tr><td>Aditional Info:<td></tr>\r\n<tr><td><textarea name=\"txtmessage\" id=\"txtmessage\" rows=\"4\" cols=\"50\"></textarea><td></tr>\r\n\r\n<tr><td collspan=\"2\"><input type=\"submit\" value=\"Send\"</tr>\r\n</table>\r\n</form>\r\n</div>\r\n<di style=\"float:left\">\r\nContact Info\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>\r\n<div style=\"float:left\">','Contact Us','','inherit','open','open','','45-revision-4','','','2013-03-25 21:01:39','2013-03-25 21:01:39','',45,'http://www.marcusjewelryny.com//?p=49',0,'revision','',0),(50,1,'2013-03-25 21:02:39','2013-03-25 21:02:39','<div style=\"float:left;\">\r\n\r\n<div style=\"float:left\">\r\n<form>\r\n<table>\r\n<tr><td>Name:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtname\" id=\"txtname\"><td></tr>\r\n\r\n<tr><td>E-mail Address:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtemail\" id=\"txtemail\"><td></tr>\r\n\r\n<tr><td>Phone:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtphone\" id=\"txtphone\"><td></tr>\r\n\r\n<tr><td>Aditional Info:<td></tr>\r\n<tr><td><textarea name=\"txtmessage\" id=\"txtmessage\" rows=\"4\" cols=\"50\"></textarea><td></tr>\r\n\r\n<tr><td collspan=\"2\"><input type=\"submit\" value=\"Send\"</tr>\r\n</table>\r\n</form>\r\n</div>\r\n<di style=\"float:left\">\r\nContact Info\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>\r\n</div>','Contact Us','','inherit','open','open','','45-revision-5','','','2013-03-25 21:02:39','2013-03-25 21:02:39','',45,'http://www.marcusjewelryny.com//?p=50',0,'revision','',0),(51,1,'2013-03-25 21:29:17','2013-03-25 21:29:17','<div style=\"float: left;width: 450px;\">\n<form>\n<table>\n<tbody>\n<tr>\n<td>Name:</td>\n<td></td>\n</tr>\n<tr>\n<td><input id=\"txtname\" type=\"text\" name=\"txtname\" /></td>\n<td></td>\n</tr>\n<tr>\n<td>E-mail Address:</td>\n<td></td>\n</tr>\n<tr>\n<td><input id=\"txtemail\" type=\"text\" name=\"txtemail\" /></td>\n<td></td>\n</tr>\n<tr>\n<td>Phone:</td>\n<td></td>\n</tr>\n<tr>\n<td><input id=\"txtphone\" type=\"text\" name=\"txtphone\" /></td>\n<td></td>\n</tr>\n<tr>\n<td>Aditional Info:</td>\n<td></td>\n</tr>\n<tr>\n<td><textarea id=\"txtmessage\" cols=\"50\" name=\"txtmessage\" rows=\"4\"></textarea></td>\n<td></td>\n</tr>\n<tr>\n<td><input type=\"submit\" value=\"Send\" /></td>\n</tr>\n</tbody>\n</table>\n</form>\n</div>\n<div style=\"float:left;width: 175px;\">\n<b>Contact Info</b>\n1590 Niagara Falls Blvd\nTonawanda, NY 14150\nborgenic@aol.com\n716-834-1030\n</div>\n','Contact Us','','inherit','open','open','','45-autosave','','','2013-03-25 21:29:17','2013-03-25 21:29:17','',45,'http://www.marcusjewelryny.com//?p=51',0,'revision','',0),(53,1,'2013-03-25 21:12:04','2013-03-25 21:12:04','<div style=\"float: left;\"><form>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Name:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtname\" type=\"text\" name=\"txtname\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>E-mail Address:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtemail\" type=\"text\" name=\"txtemail\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Phone:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtphone\" type=\"text\" name=\"txtphone\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Aditional Info:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><textarea id=\"txtmessage\" cols=\"50\" name=\"txtmessage\" rows=\"4\"></textarea></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input type=\"submit\" value=\"Send\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</form></div>\r\n','Contact Us','','inherit','open','open','','45-revision-7','','','2013-03-25 21:12:04','2013-03-25 21:12:04','',45,'http://www.marcusjewelryny.com//?p=53',0,'revision','',0),(52,1,'2013-03-25 21:05:25','2013-03-25 21:05:25','<div style=\"float:left;\">\r\n\r\n<div style=\"float:left\">\r\n<form>\r\n<table>\r\n<tr><td>Name:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtname\" id=\"txtname\"><td></tr>\r\n\r\n<tr><td>E-mail Address:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtemail\" id=\"txtemail\"><td></tr>\r\n\r\n<tr><td>Phone:<td></tr>\r\n<tr><td><input type=\"text\" name=\"txtphone\" id=\"txtphone\"><td></tr>\r\n\r\n<tr><td>Aditional Info:<td></tr>\r\n<tr><td><textarea name=\"txtmessage\" id=\"txtmessage\" rows=\"4\" cols=\"50\"></textarea><td></tr>\r\n\r\n<tr><td collspan=\"2\"><input type=\"submit\" value=\"Send\"</tr>\r\n</table>\r\n</form>\r\n</div>\r\n<di style=\"float:left\">\r\nContact Info\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>\r\n</div>','Contact Us','','inherit','open','open','','45-revision-6','','','2013-03-25 21:05:25','2013-03-25 21:05:25','',45,'http://www.marcusjewelryny.com//?p=52',0,'revision','',0),(67,1,'2013-03-25 23:07:16','2013-03-25 23:07:16','','Hours Of Operation','','inherit','open','open','','66-revision','','','2013-03-25 23:07:16','2013-03-25 23:07:16','',66,'http://www.marcusjewelryny.com//?p=67',0,'revision','',0),(54,1,'2013-03-25 21:27:06','2013-03-25 21:27:06','<div style=\"float: left;width: 450px;\">\r\n<form>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Name:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtname\" type=\"text\" name=\"txtname\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>E-mail Address:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtemail\" type=\"text\" name=\"txtemail\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Phone:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtphone\" type=\"text\" name=\"txtphone\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Aditional Info:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><textarea id=\"txtmessage\" cols=\"50\" name=\"txtmessage\" rows=\"4\"></textarea></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input type=\"submit\" value=\"Send\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</form>\r\n</div>\r\n<div style=\"float:left;width: 250px;\">\r\n<b>Contact Info</b>\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>\r\n','Contact Us','','inherit','open','open','','45-revision-8','','','2013-03-25 21:27:06','2013-03-25 21:27:06','',45,'http://www.marcusjewelryny.com//?p=54',0,'revision','',0),(55,1,'2013-03-25 21:29:17','2013-03-25 21:29:17','<div style=\"float: left;width: 450px;\">\r\n<form>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Name:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtname\" type=\"text\" name=\"txtname\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>E-mail Address:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtemail\" type=\"text\" name=\"txtemail\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Phone:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtphone\" type=\"text\" name=\"txtphone\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Aditional Info:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><textarea id=\"txtmessage\" cols=\"50\" name=\"txtmessage\" rows=\"4\"></textarea></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input type=\"submit\" value=\"Send\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</form>\r\n</div>\r\n<div style=\"float:left;width: 175px;\">\r\n<b>Contact Info</b>\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>\r\n','Contact Us','','inherit','open','open','','45-revision-9','','','2013-03-25 21:29:17','2013-03-25 21:29:17','',45,'http://www.marcusjewelryny.com//?p=55',0,'revision','',0),(56,1,'2013-03-25 21:31:04','2013-03-25 21:31:04','<div style=\"float: left;width: 625px;\">\r\n<div style=\"float: left;width: 450px;\">\r\n<form>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Name:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtname\" type=\"text\" name=\"txtname\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>E-mail Address:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtemail\" type=\"text\" name=\"txtemail\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Phone:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtphone\" type=\"text\" name=\"txtphone\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Aditional Info:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><textarea id=\"txtmessage\" cols=\"50\" name=\"txtmessage\" rows=\"4\"></textarea></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input type=\"submit\" value=\"Send\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</form>\r\n</div>\r\n<div style=\"float:left;width: 175px;\">\r\n<b>Contact Info</b>\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>\r\n</div>','Contact Us','','inherit','open','open','','45-revision-10','','','2013-03-25 21:31:04','2013-03-25 21:31:04','',45,'http://www.marcusjewelryny.com//?p=56',0,'revision','',0),(64,1,'2013-03-25 22:28:50','2013-03-25 22:28:50','','Contact Us','','inherit','open','open','','45-revision-13','','','2013-03-25 22:28:50','2013-03-25 22:28:50','',45,'http://www.marcusjewelryny.com//?p=64',0,'revision','',0),(57,1,'2013-03-25 20:40:22','2013-03-25 20:40:22','Here will go the whole content of this page','We Buy','','inherit','open','open','','20-revision-4','','','2013-03-25 20:40:22','2013-03-25 20:40:22','',20,'http://www.marcusjewelryny.com//?p=57',0,'revision','',0),(58,1,'2013-03-25 21:40:37','2013-03-25 21:40:37','<strong>Top Dollar Paid For:</strong>\r\n-Gold\r\n-Silver\r\n-Platinum\r\n-Diamonds\r\n-Estate Jewelry\r\n-Contemporary Pieces\r\n-Precious Jewels, Gemstones and metals, from Amethyst to Zirconium\r\n-Miscellaneous Items are purchased if there is a positive ROI.','We Buy','','inherit','open','open','','20-revision-5','','','2013-03-25 21:40:37','2013-03-25 21:40:37','',20,'http://www.marcusjewelryny.com//?p=58',0,'revision','',0),(59,1,'2013-03-25 20:41:06','2013-03-25 20:41:06','Here will go the whole content of this page','We Sell','','inherit','open','open','','23-revision-4','','','2013-03-25 20:41:06','2013-03-25 20:41:06','',23,'http://www.marcusjewelryny.com//?p=59',0,'revision','',0),(63,1,'2013-03-25 22:18:32','2013-03-25 22:18:32','<div style=\"float: left;width: 625px;margin-bottom: 70px;\">\r\n<div style=\"float: left;width: 450px;\">\r\n<form>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Name:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtname\" type=\"text\" name=\"txtname\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>E-mail Address:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtemail\" type=\"text\" name=\"txtemail\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Phone:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input id=\"txtphone\" type=\"text\" name=\"txtphone\" /></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Aditional Info:</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><textarea id=\"txtmessage\" cols=\"50\" name=\"txtmessage\" rows=\"4\"></textarea></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td><input type=\"submit\" value=\"Send\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</form>\r\n</div>\r\n<div style=\"float:left;width: 175px;\">\r\n<b>Contact Info</b>\r\n1590 Niagara Falls Blvd\r\nTonawanda, NY 14150\r\nborgenic@aol.com\r\n716-834-1030\r\n</div>\r\n</div>','Contact Us','','inherit','open','open','','45-revision-12','','','2013-03-25 22:18:32','2013-03-25 22:18:32','',45,'http://www.marcusjewelryny.com//?p=63',0,'revision','',0),(68,1,'2013-03-25 23:09:24','2013-03-25 23:09:24','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">\r\nWritten or verbal jewelry appraisals .\r\nWholesale Prices on high quality gold and diamonds.\r\n\r\nTop Dollar Paid for Old Gold, Silver, platinum, diamonds, etc.,\r\nOn premise jeweler with 39 years experience repairs and engraves, etc. in 1 day when requested. Friendly local owner. Same location for 16 years .\r\n</div>\r\n<div class=\"img_about\">\r\n<img style=\"height: 100%; width: 100%;\" class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</div>\r\n</div>','Services Provided','','publish','open','open','','services-provided','','','2013-04-11 23:44:14','2013-04-11 23:44:14','',0,'http://www.marcusjewelryny.com//?page_id=68',0,'page','',0),(119,1,'2013-04-16 22:11:47','2013-04-16 22:11:47','','Home','','publish','open','open','','home','','','2013-06-07 11:35:54','2013-06-07 11:35:54','',0,'http://www.marcusjewelryny.com//?p=119',1,'nav_menu_item','',0),(70,1,'2013-03-25 23:17:00','2013-03-25 23:17:00','<div class=\"main_about_tag\">\r\n\r\n<div class=\"content_about\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div class=\"img_about\"><img class=\"alignnone size-medium wp-image-81\" style=\"height: 100%; width: 100%;\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" /></div>\r\n</div>','About Us','','publish','open','open','','70-2','','','2013-04-23 22:29:37','2013-04-23 22:29:37','',0,'http://www.marcusjewelryny.com//?page_id=70',0,'page','',0),(71,1,'2013-03-25 23:16:13','2013-03-25 23:16:13','<div class=\"main_about\">\n\n<div class=\"content_about_tag\">\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\n</div>\n\n<div class=\"img_about\">\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\n</a>\n</div>\n\n</div>','','','inherit','open','open','','70-revision','','','2013-03-25 23:16:13','2013-03-25 23:16:13','',70,'http://www.marcusjewelryny.com//?p=71',0,'revision','',0),(72,1,'2013-03-25 23:17:00','2013-03-25 23:17:00','<div class=\"main_about_tag\">\r\n\r\n<div class=\"content_about\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>','','','inherit','open','open','','70-revision-2','','','2013-03-25 23:17:00','2013-03-25 23:17:00','',70,'http://www.marcusjewelryny.com//?p=72',0,'revision','',0),(78,1,'2013-03-27 00:03:45','2013-03-27 00:03:45','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.</div>\r\n<div class=\"img_about\"><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a></div>\r\n</div>','About Us','','inherit','open','open','','70-revision-6','','','2013-03-27 00:03:45','2013-03-27 00:03:45','',70,'http://www.marcusjewelryny.com//?p=78',0,'revision','',0),(73,1,'2013-04-23 22:29:13','2013-04-23 22:29:13','<div class=\"main_about_tag\">\n\n<div class=\"content_about\">\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\n</div>\n<div class=\"content_about\"></div>\n<div class=\"img_about\"><img class=\"alignnone size-medium wp-image-81\" style=\"height: 100%; width: 100%;\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" /></div>\n</div>','About Us','','inherit','open','open','','70-autosave','','','2013-04-23 22:29:13','2013-04-23 22:29:13','',70,'http://www.marcusjewelryny.com//?p=73',0,'revision','',0),(127,1,'2013-04-22 22:37:07','2013-04-22 22:37:07','<div class=\"main_about_tag\">\r\n<div class=\"content_about\"></div>\r\n<div class=\"content_about\"></div>\r\n<div class=\"img_about\"><img class=\"alignnone size-medium wp-image-81\" style=\"height: 100%; width: 100%;\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" /></div>\r\n</div>','About Us','','inherit','open','open','','70-revision-12','','','2013-04-22 22:37:07','2013-04-22 22:37:07','',70,'http://www.marcusjewelryny.com//?p=127',0,'revision','',0),(126,1,'2013-04-11 23:46:18','2013-04-11 23:46:18','<div class=\"main_about_tag\">\r\n\r\n<div class=\"content_about\">Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.</div>\r\n\r\n<div class=\"img_about\">\r\n<img style=\"height: 100%; width: 100%;\" class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</div>\r\n\r\n</div>','About Us','','inherit','open','open','','70-revision-11','','','2013-04-11 23:46:18','2013-04-11 23:46:18','',70,'http://www.marcusjewelryny.com//?p=126',0,'revision','',0),(128,1,'2013-04-11 23:31:09','2013-04-11 23:31:09','<div class=\"main_about\">\r\n<div class=\"content_about\">For all of your Jewelry needs, Marcus Jewelry. Established 1978 in a downtown repair shop, we have grown into a full service jewelery store. Buffalo Born, Tonawanda Tax paying Jeweler spends his success right here in Erie County. We offer unique and exciting new and estate jewelry. On site Jeweler with 39 years of experience can fix, engrave, size, or pretty much anything else on virtually any piece, new or estate.***One or same day service available when requested. Great for \"Gemergencies\"!***\r\n\r\nWe pay cash for Diamonds, gold, silver, in any condition, any amount. We also look to purchase miscellaneous items if they can be resold at a profit.\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img title=\"Siguenos en Facebook\" class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a>\r\n</div>\r\n</div>','About us','','inherit','open','open','','13-revision-21','','','2013-04-11 23:31:09','2013-04-11 23:31:09','',13,'http://www.marcusjewelryny.com//?p=128',0,'revision','',0),(130,1,'2013-04-22 22:54:41','2013-04-22 22:54:41','<div class=\"main_about\">\r\n<div class=\"content_about\">\r\nMarcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry.  Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him. \r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.  \r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.\r\n</div>\r\n<div class=\"img_about\"><a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"alignnone size-medium wp-image-81\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a></div>\r\n</div>','About us','','inherit','open','open','','13-revision-23','','','2013-04-22 22:54:41','2013-04-22 22:54:41','',13,'http://www.marcusjewelryny.com//?p=130',0,'revision','',0),(131,1,'2013-04-22 22:39:02','2013-04-22 22:39:02','<div class=\"main_about_tag\">\r\n<div class=\"content_about\"></div>\r\n<div class=\"content_about\"></div>\r\n<div class=\"img_about\"><img class=\"alignnone size-medium wp-image-81\" style=\"height: 100%; width: 100%;\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" /></div>\r\n</div>','About Us','','inherit','open','open','','70-revision-13','','','2013-04-22 22:39:02','2013-04-22 22:39:02','',70,'http://www.marcusjewelryny.com//?p=131',0,'revision','',0),(139,1,'2013-04-23 22:27:28','2013-04-23 22:27:28','<div class=\"main_about\">\r\n<div class=\"content_about\">Marcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.</div>\r\n<div class=\"img_about\"><a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"size-medium wp-image-81 alignnone\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a></div>\r\n</div>','About us','','inherit','open','open','','13-revision-29','','','2013-04-23 22:27:28','2013-04-23 22:27:28','',13,'http://www.marcusjewelryny.com//?p=139',0,'revision','',0),(132,1,'2013-04-22 23:07:38','2013-04-22 23:07:38','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n</div>\r\n<div class=\"content_about\"></div>\r\n<div class=\"img_about\"><img class=\"alignnone size-medium wp-image-81\" style=\"height: 100%; width: 100%;\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" /></div>\r\n</div>','About Us','','inherit','open','open','','70-revision-14','','','2013-04-22 23:07:38','2013-04-22 23:07:38','',70,'http://www.marcusjewelryny.com//?p=132',0,'revision','',0),(134,1,'2013-04-23 16:02:52','2013-04-23 16:02:52','<div class=\"main_about\">\r\n<div class=\"content_about\">Marcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.</div>\r\n<div class=\"img_about\"><a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"alignnone size-medium wp-image-81\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a></div>\r\n<div class=\"img_about\"></div>\r\n</div>','About us','','inherit','open','open','','13-revision-25','','','2013-04-23 16:02:52','2013-04-23 16:02:52','',13,'http://www.marcusjewelryny.com//?p=134',0,'revision','',0),(135,1,'2013-04-23 16:55:39','2013-04-23 16:55:39','<div class=\"main_about\">\r\n<div class=\"content_about\">Marcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.</div>\r\n<div class=\"img_about\"><a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"alignnone size-medium wp-image-81\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a></div>\r\n<div class=\"img_about\"></div>\r\n</div>','About us','','inherit','open','open','','13-revision-26','','','2013-04-23 16:55:39','2013-04-23 16:55:39','',13,'http://www.marcusjewelryny.com//?p=135',0,'revision','',0),(137,1,'2013-04-23 22:20:28','2013-04-23 22:20:28','<div class=\"main_about\">\r\n\r\n<div class=\"content_about\">Marcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"alignnone size-medium wp-image-81\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a>\r\n</div>\r\n\r\n</div>','About us','','inherit','open','open','','13-revision-28','','','2013-04-23 22:20:28','2013-04-23 22:20:28','',13,'http://www.marcusjewelryny.com//?p=137',0,'revision','',0),(138,1,'2013-04-22 23:09:15','2013-04-22 23:09:15','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n</div>\r\n<div class=\"content_about\"></div>\r\n<div class=\"img_about\"><img class=\"alignnone size-medium wp-image-81\" style=\"height: 100%; width: 100%;\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" /></div>\r\n</div>','About Us','','inherit','open','open','','70-revision-15','','','2013-04-22 23:09:15','2013-04-22 23:09:15','',70,'http://www.marcusjewelryny.com//?p=138',0,'revision','',0),(141,1,'2013-04-23 22:35:39','2013-04-23 22:35:39','<div class=\"main_about\">\r\n\r\n<div class=\"img_about\">\r\nMarcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"size-medium wp-image-81 alignnone\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a>\r\n</div>\r\n</div>','About us','','inherit','open','open','','13-revision-31','','','2013-04-23 22:35:39','2013-04-23 22:35:39','',13,'http://www.marcusjewelryny.com//?p=141',0,'revision','',0),(142,1,'2013-04-11 19:45:26','2013-04-11 19:45:26','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals','We Sell','','inherit','open','open','','23-revision-14','','','2013-04-11 19:45:26','2013-04-11 19:45:26','',23,'http://www.marcusjewelryny.com//?p=142',0,'revision','',0),(143,1,'2013-04-23 22:50:59','2013-04-23 22:50:59','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"\">Necklaces</span>\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals','We Sell','','inherit','open','open','','23-revision-15','','','2013-04-23 22:50:59','2013-04-23 22:50:59','',23,'http://www.marcusjewelryny.com//?p=143',0,'revision','',0),(144,1,'2013-04-23 23:03:13','2013-04-23 23:03:13','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"show_1\">Necklaces</span>\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals','We Sell','','inherit','open','open','','23-revision-16','','','2013-04-23 23:03:13','2013-04-23 23:03:13','',23,'http://www.marcusjewelryny.com//?p=144',0,'revision','',0),(145,1,'2013-04-23 23:06:39','2013-04-23 23:06:39','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"show_1()\">Necklaces</span>\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals','We Sell','','inherit','open','open','','23-revision-17','','','2013-04-23 23:06:39','2013-04-23 23:06:39','',23,'http://www.marcusjewelryny.com//?p=145',0,'revision','',0),(148,1,'2013-04-23 23:15:16','2013-04-23 23:15:16','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"show_1();\" style=\"cursor: pointer;\">Necklaces</span>\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals','We Sell','','inherit','open','open','','23-revision-20','','','2013-04-23 23:15:16','2013-04-23 23:15:16','',23,'http://www.marcusjewelryny.com//?p=148',0,'revision','',0),(74,1,'2013-03-25 20:33:21','2013-03-25 20:33:21','<div class=\"main_about\">\r\n\r\n<div class=\"content_about\">\r\nFor all of your Jewelry needs, Marcus Jewelry. Established 1978 in a downtown repair shop, we have grown into a full service jewelery store. Buffalo Born, Tonawanda Tax paying Jeweler spends his success right here in Erie County. We offer unique and exciting new and estate jewelry. On site Jeweler with 39 years of experience can fix, engrave, size, or pretty much anything else on virtually any piece, new or estate. \r\n \r\n***One or same day service available when requested. Great for \"Gemergencies\"!***\r\n \r\nWe pay cash for Diamonds, gold, silver, in any condition, any amount. We also look to purchase miscellaneous items if they can be resold at a profit.\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>','About Us','','inherit','open','open','','13-revision-16','','','2013-03-25 20:33:21','2013-03-25 20:33:21','',13,'http://www.marcusjewelryny.com//?p=74',0,'revision','',0),(75,1,'2013-03-25 23:17:44','2013-03-25 23:17:44','<div class=\"main_about_tag\">\r\n\r\n<div class=\"content_about\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>','About Us','','inherit','open','open','','70-revision-3','','','2013-03-25 23:17:44','2013-03-25 23:17:44','',70,'http://www.marcusjewelryny.com//?p=75',0,'revision','',0),(76,1,'2013-03-25 23:24:02','2013-03-25 23:24:02','<div class=\"main_about_tag\">\r\n\r\n<div class=\"content_about\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>','About Us','','inherit','open','open','','70-revision-4','','','2013-03-25 23:24:02','2013-03-25 23:24:02','',70,'http://www.marcusjewelryny.com//?p=76',0,'revision','',0),(77,1,'2013-03-25 23:25:15','2013-03-25 23:25:15','<div class=\"main_about_tag\">\r\n\r\n<div class=\"content_about\">\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>','About Us','','inherit','open','open','','70-revision-5','','','2013-03-25 23:25:15','2013-03-25 23:25:15','',70,'http://www.marcusjewelryny.com//?p=77',0,'revision','',0),(79,1,'2013-03-27 00:04:31','2013-03-27 00:04:31','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.</div>\r\n<div class=\"img_about\"><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a></div>\r\n</div>\r\n<div class=\"SidePanel\">\r\n                <div style=\"display:none;\" onclick=\"\" class=\"ContactBox\" id=\"cphTemplateContent_ContactBox\">\r\n                    <img src=\"/Templates/xsell/images/phone2.png\">\r\n                    <span style=\"font-size: 13px;\" id=\"cphTemplateContent_contactClick\">Click here to</span><br>\r\n                    Contact Us\r\n                </div>\r\n                \r\n    <div style=\"width: 300px; height: 300px; position: relative; background-color: rgb(229, 227, 223); overflow: hidden;\" id=\"map_canvas\"><div style=\"position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0;\"><div style=\"position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 1; cursor: url(&quot;http://maps.gstatic.com/mapfiles/openhand_8_8.cur&quot;), default;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 200;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 101;\"></div></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 201;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 102;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 0;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 1;\"><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -25px; top: 39px;\"><canvas style=\"-moz-user-select: none; position: absolute; left: 0px; top: 0px; height: 256px; width: 256px;\" height=\"256\" width=\"256\"></canvas></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -281px; top: 39px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -25px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -25px; top: 295px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 231px; top: 39px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -281px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -281px; top: 295px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 231px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 231px; top: 295px;\"></div></div></div></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 103;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: -1;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 1;\"><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -25px; top: 39px;\"><canvas style=\"-moz-user-select: none; position: absolute; left: 0px; top: 0px; height: 256px; width: 256px;\" height=\"256\" width=\"256\"></canvas><div style=\"width: 1px; height: 1px; position: absolute; left: 166px; top: 90px;\"></div></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -281px; top: 39px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -25px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -25px; top: 295px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 231px; top: 39px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -281px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: -281px; top: 295px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 231px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; overflow: hidden; position: absolute; left: 231px; top: 295px;\"></div></div></div></div></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 202;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 104;\"></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 105;\"></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 106;\"></div></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 100;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 0;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 1;\"><div style=\"width: 256px; height: 256px; position: absolute; left: -25px; top: 39px;\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -281px; top: 39px;\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -25px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -25px; top: 295px;\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: 231px; top: 39px;\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -281px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -281px; top: 295px;\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: 231px; top: -217px;\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: 231px; top: 295px;\"></div></div></div></div><div style=\"position: absolute; z-index: 0; left: 0px; top: 0px;\"><div style=\"overflow: hidden; width: 300px; height: 300px;\"><img style=\"width: 300px; height: 300px;\" src=\"http://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&amp;1i1178649&amp;2i1541081&amp;2e1&amp;3u14&amp;4m2&amp;1u300&amp;2u300&amp;5m3&amp;1e0&amp;2b1&amp;5ses-ES&amp;token=47917\"></div></div><div style=\"position: absolute; left: 0px; top: 0px; z-index: 0;\"><div style=\"position: absolute; left: 0px; top: 0px; z-index: 1;\"><div style=\"width: 256px; height: 256px; position: absolute; left: -25px; top: 39px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt0.googleapis.com/vt?lyrs=m@210066224&amp;src=apiv3&amp;hl=es-ES&amp;x=4604&amp;y=6020&amp;z=14&amp;s=&amp;style=api%7Csmartmaps\" draggable=\"false\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -281px; top: 39px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt1.googleapis.com/vt?lyrs=m@210066224&amp;src=apiv3&amp;hl=es-ES&amp;x=4603&amp;y=6020&amp;z=14&amp;s=Galil&amp;style=api%7Csmartmaps\" draggable=\"false\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -25px; top: 295px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt0.googleapis.com/vt?lyrs=m@210053066&amp;src=apiv3&amp;hl=es-ES&amp;x=4604&amp;y=6021&amp;z=14&amp;s=G&amp;style=api%7Csmartmaps\" draggable=\"false\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -281px; top: 295px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt1.googleapis.com/vt?lyrs=m@210000000&amp;src=apiv3&amp;hl=es-ES&amp;x=4603&amp;y=6021&amp;z=14&amp;s=Galile&amp;style=api%7Csmartmaps\" draggable=\"false\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -25px; top: -217px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt0.googleapis.com/vt?lyrs=m@210066224&amp;src=apiv3&amp;hl=es-ES&amp;x=4604&amp;y=6019&amp;z=14&amp;s=Galileo&amp;style=api%7Csmartmaps\" draggable=\"false\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: 231px; top: 39px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt1.googleapis.com/vt?lyrs=m@210045677&amp;src=apiv3&amp;hl=es-ES&amp;x=4605&amp;y=6020&amp;z=14&amp;s=Gal&amp;style=api%7Csmartmaps\" draggable=\"false\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: -281px; top: -217px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt1.googleapis.com/vt?lyrs=m@210066224&amp;src=apiv3&amp;hl=es-ES&amp;x=4603&amp;y=6019&amp;z=14&amp;s=Gali&amp;style=api%7Csmartmaps\" draggable=\"false\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: 231px; top: -217px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt1.googleapis.com/vt?lyrs=m@210043871&amp;src=apiv3&amp;hl=es-ES&amp;x=4605&amp;y=6019&amp;z=14&amp;s=Ga&amp;style=api%7Csmartmaps\" draggable=\"false\"></div><div style=\"width: 256px; height: 256px; position: absolute; left: 231px; top: 295px; opacity: 1; transition: opacity 200ms ease-out 0s;\"><img style=\"width: 256px; height: 256px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://mt1.googleapis.com/vt?lyrs=m@210053066&amp;src=apiv3&amp;hl=es-ES&amp;x=4605&amp;y=6021&amp;z=14&amp;s=Gali&amp;style=api%7Csmartmaps\" draggable=\"false\"></div></div></div></div></div><div style=\"margin: 2px 5px 2px 2px; z-index: 1000000; position: absolute; left: 0px; bottom: 0px;\"><a style=\"position: static; overflow: visible; float: none; display: inline;\" target=\"_blank\" href=\"http://maps.google.com/maps?ll=42.997674,-78.822865&amp;z=14&amp;t=m&amp;hl=es-ES\" title=\"Haz clic aquí para visualizar esta zona en Google Maps\"><div style=\"width: 62px; height: 24px; cursor: pointer;\"><img style=\"position: absolute; left: 0px; top: 0px; width: 62px; height: 24px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://maps.gstatic.com/mapfiles/google_white.png\" draggable=\"false\"></div></a></div><div class=\"gmnoprint\" style=\"z-index: 1000001; position: absolute; right: 142px; bottom: 0px;\"><div style=\"height: 19px; -moz-user-select: none; line-height: 19px; padding-right: 2px; padding-left: 50px; background: -moz-linear-gradient(left center , rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0.5) 50px) repeat scroll 0% 0% transparent; font-family: Arial,sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;\"><a style=\"color: rgb(68, 68, 68); text-decoration: underline; cursor: pointer;\">Datos de mapa</a><span style=\"display: none;\">Datos de mapa &copy;2013 Google</span><span> - </span><a style=\"color: rgb(68, 68, 68); text-decoration: underline; cursor: pointer;\" href=\"http://www.google.com/intl/es-ES_US/help/terms_maps.html\" target=\"_blank\">Términos de uso</a></div></div><div style=\"background-color: white; padding: 15px 21px; border: 1px solid rgb(171, 171, 171); font-family: Arial,sans-serif; color: rgb(34, 34, 34); box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2); z-index: 10000002; display: none; width: 246px; height: 148px; position: absolute; left: 5px; top: 60px;\"><div style=\"padding: 0px 0px 10px; font-size: 16px;\">Datos de mapa</div><div style=\"font-size: 13px;\">Datos de mapa &copy;2013 Google</div><div style=\"width: 10px; height: 10px; overflow: hidden; position: absolute; opacity: 0.7; right: 12px; top: 12px; z-index: 10000; cursor: pointer;\"><img style=\"position: absolute; left: -18px; top: -44px; width: 68px; height: 67px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://maps.gstatic.com/mapfiles/mv/imgs8.png\" draggable=\"false\"></div></div><div class=\"gmnoscreen\" style=\"position: absolute; right: 0px; bottom: 0px;\"><div style=\"font-family: Arial,sans-serif; font-size: 10px; color: rgb(68, 68, 68); direction: ltr; text-align: right; background-color: rgb(245, 245, 245);\">Datos de mapa &copy;2013 Google</div></div><div class=\"gmnoprint\" style=\"font-size: 10px; height: 17px; background-color: rgb(245, 245, 245); border: 1px solid rgb(220, 220, 220); line-height: 19px; position: absolute; right: 0px; bottom: 0px;\"><a target=\"_new\" title=\"Informar a Google acerca de errores en las imágenes o en el mapa de carreteras\" style=\"font-family: Arial,sans-serif; font-size: 85%; font-weight: bold; padding: 1px 3px; color: rgb(68, 68, 68); text-decoration: none; position: relative; bottom: 1px;\" href=\"http://maps.google.com/maps?ll=42.997674,-78.822865&amp;z=14&amp;t=m&amp;hl=es-ES&amp;skstate=action:mps_dialog$apiref:1\">Informar de un error de Maps</a></div><div class=\"gmnoprint\" style=\"margin: 5px; -moz-user-select: none; position: absolute; left: 0px; top: 0px;\" controlwidth=\"32\" controlheight=\"84\"><div style=\"cursor: url(&quot;http://maps.gstatic.com/mapfiles/openhand_8_8.cur&quot;), default; position: absolute; left: 0px; top: 0px;\" controlwidth=\"32\" controlheight=\"40\"><div style=\"width: 32px; height: 40px; overflow: hidden; position: absolute; left: 0px; top: 0px;\"><img style=\"position: absolute; left: -9px; top: -102px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px; width: 1029px; height: 255px;\" src=\"http://maps.gstatic.com/mapfiles/cb/mod_cb_scout/cb_scout_sprite_api_003.png\" draggable=\"false\"></div><div style=\"width: 32px; height: 40px; overflow: hidden; position: absolute; left: 0px; top: 0px; visibility: hidden;\"><img style=\"position: absolute; left: -107px; top: -102px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px; width: 1029px; height: 255px;\" src=\"http://maps.gstatic.com/mapfiles/cb/mod_cb_scout/cb_scout_sprite_api_003.png\" draggable=\"false\"></div><div style=\"width: 32px; height: 40px; overflow: hidden; position: absolute; left: 0px; top: 0px; visibility: hidden;\"><img style=\"position: absolute; left: -58px; top: -102px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px; width: 1029px; height: 255px;\" src=\"http://maps.gstatic.com/mapfiles/cb/mod_cb_scout/cb_scout_sprite_api_003.png\" draggable=\"false\"></div><div style=\"width: 32px; height: 40px; overflow: hidden; position: absolute; left: 0px; top: 0px; visibility: hidden;\"><img style=\"position: absolute; left: -205px; top: -102px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px; width: 1029px; height: 255px;\" src=\"http://maps.gstatic.com/mapfiles/cb/mod_cb_scout/cb_scout_sprite_api_003.png\" draggable=\"false\"></div></div><div class=\"gmnoprint\" style=\"opacity: 0.6; display: none; position: absolute;\" controlwidth=\"0\" controlheight=\"0\"><img src=\"http://maps.gstatic.com/mapfiles/rotate2.png\" draggable=\"false\" style=\"-moz-user-select: none; border: 0px none; padding: 0px; margin: 0px; cursor: pointer; width: 22px; height: 22px;\" title=\"Girar el mapa 90 grados\"></div><div class=\"gmnoprint\" controlwidth=\"22\" controlheight=\"39\" style=\"position: absolute; left: 5px; top: 45px;\"><img style=\"width: 22px; height: 39px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px;\" src=\"http://maps.gstatic.com/mapfiles/szc4.png\" draggable=\"false\"><div style=\"position: absolute; left: 0px; top: 0px; width: 22px; height: 17px; cursor: pointer;\" title=\"Acerca la imagen\"></div><div style=\"position: absolute; left: 0px; top: 18px; width: 22px; height: 17px; cursor: pointer;\" title=\"Aleja la imagen\"></div></div></div><div class=\"gmnoprint\" style=\"margin: 5px; z-index: 0; position: absolute; cursor: pointer; right: 0px; top: 0px;\"><div style=\"float: left;\"><div style=\"direction: ltr; overflow: hidden; text-align: center; position: relative; color: rgb(0, 0, 0); font-family: Arial,sans-serif; -moz-user-select: none; font-size: 13px; background: none repeat scroll 0% 0% rgb(255, 255, 255); padding: 1px 6px; border: 1px solid rgb(113, 123, 135); box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); font-weight: bold; min-width: 37px;\" title=\"Muestra el callejero\">Mapa</div><div style=\"background-color: white; z-index: -1; padding-top: 2px; border-width: 0px 1px 1px; border-style: none solid solid; border-color: -moz-use-text-color rgb(113, 123, 135) rgb(113, 123, 135); -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; border-image: none; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); position: absolute; left: 0px; top: 20px; text-align: left; display: none;\"><div style=\"color: rgb(0, 0, 0); font-family: Arial,sans-serif; -moz-user-select: none; font-size: 11px; background-color: rgb(255, 255, 255); padding: 1px 8px 3px 5px; direction: ltr; text-align: left; white-space: nowrap;\" title=\"Muestra el callejero con relieve\"><span role=\"checkbox\" style=\"position: relative; line-height: 0; font-size: 0px; margin: 0px 5px 0px 0px; display: inline-block; background-color: rgb(255, 255, 255); border: 1px solid rgb(198, 198, 198); border-radius: 1px 1px 1px 1px; width: 13px; height: 13px; box-shadow: none; vertical-align: middle;\"><div style=\"position: absolute; left: 1px; top: -2px; width: 13px; height: 11px; overflow: hidden; display: none;\"><img style=\"position: absolute; left: -52px; top: -44px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px; width: 68px; height: 67px;\" src=\"http://maps.gstatic.com/mapfiles/mv/imgs8.png\" draggable=\"false\"></div></span><label style=\"vertical-align: middle; cursor: pointer;\">Relieve</label></div></div></div><div style=\"float: left;\"><div style=\"direction: ltr; overflow: hidden; text-align: center; position: relative; color: rgb(51, 51, 51); font-family: Arial,sans-serif; -moz-user-select: none; font-size: 13px; background: none repeat scroll 0% 0% rgb(255, 255, 255); padding: 1px 6px; border-width: 1px 1px 1px 0px; border-style: solid solid solid none; border-color: rgb(113, 123, 135) rgb(113, 123, 135) rgb(113, 123, 135) -moz-use-text-color; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; border-image: none; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); font-weight: normal; min-width: 50px;\" title=\"Muestra las imágenes de satélite\">Satélite</div><div style=\"background-color: white; z-index: -1; padding-top: 2px; border-width: 0px 1px 1px; border-style: none solid solid; border-color: -moz-use-text-color rgb(113, 123, 135) rgb(113, 123, 135); -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; border-image: none; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); position: absolute; right: 0px; top: 20px; text-align: left; display: none;\"><div style=\"color: rgb(184, 184, 184); font-family: Arial,sans-serif; -moz-user-select: none; font-size: 11px; background-color: rgb(255, 255, 255); padding: 1px 8px 3px 5px; direction: ltr; text-align: left; white-space: nowrap; display: none;\" title=\"Acerca la imagen para mostrar la vista de 45 grados.\"><span role=\"checkbox\" style=\"position: relative; line-height: 0; font-size: 0px; margin: 0px 5px 0px 0px; display: inline-block; background-color: rgb(255, 255, 255); border: 1px solid rgb(241, 241, 241); border-radius: 1px 1px 1px 1px; width: 13px; height: 13px; box-shadow: none; vertical-align: middle;\"><div style=\"position: absolute; left: 1px; top: -2px; width: 13px; height: 11px; overflow: hidden; display: none;\"><img style=\"position: absolute; left: -52px; top: -44px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px; width: 68px; height: 67px;\" src=\"http://maps.gstatic.com/mapfiles/mv/imgs8.png\" draggable=\"false\"></div></span><label style=\"vertical-align: middle; cursor: pointer;\">45°</label></div><div style=\"color: rgb(0, 0, 0); font-family: Arial,sans-serif; -moz-user-select: none; font-size: 11px; background-color: rgb(255, 255, 255); padding: 1px 8px 3px 5px; direction: ltr; text-align: left; white-space: nowrap;\" title=\"Muestra las imágenes con los nombres de las calles\"><span role=\"checkbox\" style=\"position: relative; line-height: 0; font-size: 0px; margin: 0px 5px 0px 0px; display: inline-block; background-color: rgb(255, 255, 255); border: 1px solid rgb(198, 198, 198); border-radius: 1px 1px 1px 1px; width: 13px; height: 13px; box-shadow: none; vertical-align: middle;\"><div style=\"position: absolute; left: 1px; top: -2px; width: 13px; height: 11px; overflow: hidden;\"><img style=\"position: absolute; left: -52px; top: -44px; -moz-user-select: none; border: 0px none; padding: 0px; margin: 0px; width: 68px; height: 67px;\" src=\"http://maps.gstatic.com/mapfiles/mv/imgs8.png\" draggable=\"false\"></div></span><label style=\"vertical-align: middle; cursor: pointer;\">Etiquetas</label></div></div></div></div></div></div>\r\n    <br>\r\n    <br>\r\n    \r\n\r\n            </div>','About Us','','inherit','open','open','','70-revision-7','','','2013-03-27 00:04:31','2013-03-27 00:04:31','',70,'http://www.marcusjewelryny.com//?p=79',0,'revision','',0),(136,1,'2013-04-23 22:17:29','2013-04-23 22:17:29','<div class=\"main_about\">\r\n<div class=\"content_about\">Marcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry. Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.</div>\r\n<div class=\"img_about\"><a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"alignnone size-medium wp-image-81\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a></div>\r\n</div>','About us','','inherit','open','open','','13-revision-27','','','2013-04-23 22:17:29','2013-04-23 22:17:29','',13,'http://www.marcusjewelryny.com//?p=136',0,'revision','',0),(81,1,'2013-04-09 00:05:35','2013-04-09 00:05:35','','owner','','inherit','open','open','','owner','','','2013-04-09 00:05:35','2013-04-09 00:05:35','',13,'http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner.png',0,'attachment','image/png',0),(83,1,'2013-03-25 18:11:46','2013-03-25 18:11:46','<strong>Click  here to Contacs Us</strong>\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/contactusbtn0.png\"><img class=\"alignnone size-full wp-image-37\" alt=\"contactusbtn0\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/contactusbtn0.png\" width=\"175\" height=\"65\" /></a>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-7','','','2013-03-25 18:11:46','2013-03-25 18:11:46','',1,'http://www.marcusjewelryny.com//?p=83',0,'revision','',0),(82,1,'2013-03-25 23:19:12','2013-03-25 23:19:12','<div class=\"main_about\">\r\n\r\n<div class=\"content_about\">\r\nFor all of your Jewelry needs, Marcus Jewelry. Established 1978 in a downtown repair shop, we have grown into a full service jewelery store. Buffalo Born, Tonawanda Tax paying Jeweler spends his success right here in Erie County. We offer unique and exciting new and estate jewelry. On site Jeweler with 39 years of experience can fix, engrave, size, or pretty much anything else on virtually any piece, new or estate. \r\n \r\n***One or same day service available when requested. Great for \"Gemergencies\"!***\r\n \r\nWe pay cash for Diamonds, gold, silver, in any condition, any amount. We also look to purchase miscellaneous items if they can be resold at a profit.\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a>\r\n</div>\r\n\r\n</div>','About us','','inherit','open','open','','13-revision-17','','','2013-03-25 23:19:12','2013-03-25 23:19:12','',13,'http://www.marcusjewelryny.com//?p=82',0,'revision','',0),(90,1,'2013-04-09 16:15:59','2013-04-09 16:15:59','<strong>Click  here to Contact Us</strong>\r\n\r\n<strong><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\"><img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" /></a></strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-11','','','2013-04-09 16:15:59','2013-04-09 16:15:59','',1,'http://www.marcusjewelryny.com//?p=90',0,'revision','',0),(86,1,'2013-04-09 16:05:00','2013-04-09 16:05:00','<strong>Click  here to Contact Us</strong>\r\n<a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\"><img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" /></a>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-9','','','2013-04-09 16:05:00','2013-04-09 16:05:00','',1,'http://www.marcusjewelryny.com//?p=86',0,'revision','',0),(91,1,'2013-04-09 16:17:27','2013-04-09 16:17:27','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.</div>\r\n<div class=\"img_about\"><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner.png\"><img class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" /></a>\r\n</a></div>\r\n</div>','About Us','','inherit','open','open','','70-revision-9','','','2013-04-09 16:17:27','2013-04-09 16:17:27','',70,'http://www.marcusjewelryny.com//?p=91',0,'revision','',0),(87,1,'2013-04-09 16:07:27','2013-04-09 16:07:27','<strong>Click  here to Contact Us</strong>\r\n\r\n<strong><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\"><img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" /></a></strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-10','','','2013-04-09 16:07:27','2013-04-09 16:07:27','',1,'http://www.marcusjewelryny.com//?p=87',0,'revision','',0),(88,1,'2013-03-27 00:05:46','2013-03-27 00:05:46','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.</div>\r\n<div class=\"img_about\"><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><img class=\"size-full wp-image-14 alignright\" alt=\"mapa\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\" width=\"221\" height=\"219\" />\r\n</a></div>\r\n</div>','About Us','','inherit','open','open','','70-revision-8','','','2013-03-27 00:05:46','2013-03-27 00:05:46','',70,'http://www.marcusjewelryny.com//?p=88',0,'revision','',0),(92,1,'2013-04-11 23:42:06','2013-04-11 23:42:06','<div class=\"main_about_tag\">\n<div class=\"content_about\">\nWritten or verbal jewelry appraisals .\nWholesale Prices on high quality gold and diamonds.\n\nTop Dollar Paid for Old Gold, Silver, platinum, diamonds, etc.,\nOn premise jeweler with 39 years experience repairs and engraves, etc. in 1 day when requested. Friendly local owner. Same location for 16 years .\n</div>\n<div class=\"img_about\">\n<img height:100\"  width100% class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\n</div>\n</div>','Services Provided','','inherit','open','open','','68-autosave','','','2013-04-11 23:42:06','2013-04-11 23:42:06','',68,'http://www.marcusjewelryny.com//?p=92',0,'revision','',0),(89,1,'2013-04-09 00:08:16','2013-04-09 00:08:16','<div class=\"main_about\">\r\n<div class=\"content_about\">For all of your Jewelry needs, Marcus Jewelry. Established 1978 in a downtown repair shop, we have grown into a full service jewelery store. Buffalo Born, Tonawanda Tax paying Jeweler spends his success right here in Erie County. We offer unique and exciting new and estate jewelry. On site Jeweler with 39 years of experience can fix, engrave, size, or pretty much anything else on virtually any piece, new or estate.***One or same day service available when requested. Great for \"Gemergencies\"!***\r\n\r\nWe pay cash for Diamonds, gold, silver, in any condition, any amount. We also look to purchase miscellaneous items if they can be resold at a profit.\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n</div>\r\n<div class=\"img_about\"><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/mapa.png\"><a href=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner.png\"><img class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" /></a>\r\n</a></div>\r\n</div>','About us','','inherit','open','open','','13-revision-18','','','2013-04-09 00:08:16','2013-04-09 00:08:16','',13,'http://www.marcusjewelryny.com//?p=89',0,'revision','',0),(93,1,'2013-03-25 23:09:24','2013-03-25 23:09:24','Written or verbal jewelry appraisals .\r\nWholesale Prices on high quality gold and diamonds.\r\n\r\nTop Dollar Paid for Old Gold, Silver, platinum, diamonds, etc.,\r\nOn premise jeweler with 39 years experience repairs and engraves, etc. in 1 day when requested. Friendly local owner. Same location for 16 years .','Services Provided','','inherit','open','open','','68-revision','','','2013-03-25 23:09:24','2013-03-25 23:09:24','',68,'http://www.marcusjewelryny.com//?p=93',0,'revision','',0),(94,1,'2013-04-11 18:02:03','2013-04-11 18:02:03','<div class=\"content_about\">\r\nWritten or verbal jewelry appraisals .\r\nWholesale Prices on high quality gold and diamonds.\r\n\r\nTop Dollar Paid for Old Gold, Silver, platinum, diamonds, etc.,\r\nOn premise jeweler with 39 years experience repairs and engraves, etc. in 1 day when requested. Friendly local owner. Same location for 16 years .\r\n</div>\r\n<div class=\"img_about\">\r\n<img class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</div>','Services Provided','','inherit','open','open','','68-revision-2','','','2013-04-11 18:02:03','2013-04-11 18:02:03','',68,'http://www.marcusjewelryny.com//?p=94',0,'revision','',0),(146,1,'2013-04-23 23:07:11','2013-04-23 23:07:11','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"show_1();\">Necklaces</span>\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals','We Sell','','inherit','open','open','','23-revision-18','','','2013-04-23 23:07:11','2013-04-23 23:07:11','',23,'http://www.marcusjewelryny.com//?p=146',0,'revision','',0),(147,1,'2013-04-23 23:09:08','2013-04-23 23:09:08','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onclick=\"show_1();\" style=\"cursor: pointer;\">Necklaces</span>\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals','We Sell','','inherit','open','open','','23-revision-19','','','2013-04-23 23:09:08','2013-04-23 23:09:08','',23,'http://www.marcusjewelryny.com//?p=147',0,'revision','',0),(95,1,'2013-03-25 21:52:27','2013-03-25 21:52:27','<b>We sell Jewelry of all types, including:</b>\r\n<br>\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals','We Sell','','inherit','open','open','','23-revision-5','','','2013-03-25 21:52:27','2013-03-25 21:52:27','',23,'http://www.marcusjewelryny.com//?p=95',0,'revision','',0),(103,1,'2013-04-11 19:36:01','2013-04-11 19:36:01','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals\r\n','We Sell','','inherit','open','open','','23-revision-13','','','2013-04-11 19:36:01','2013-04-11 19:36:01','',23,'http://www.marcusjewelryny.com//?p=103',0,'revision','',0),(104,1,'2013-04-11 15:59:35','2013-04-11 15:59:35','<div class=\"main_about\">\r\n<div class=\"content_about\">For all of your Jewelry needs, Marcus Jewelry. Established 1978 in a downtown repair shop, we have grown into a full service jewelery store. Buffalo Born, Tonawanda Tax paying Jeweler spends his success right here in Erie County. We offer unique and exciting new and estate jewelry. On site Jeweler with 39 years of experience can fix, engrave, size, or pretty much anything else on virtually any piece, new or estate.***One or same day service available when requested. Great for \"Gemergencies\"!***\r\n\r\nWe pay cash for Diamonds, gold, silver, in any condition, any amount. We also look to purchase miscellaneous items if they can be resold at a profit.\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<img class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</div>\r\n</div>','About us','','inherit','open','open','','13-revision-19','','','2013-04-11 15:59:35','2013-04-11 15:59:35','',13,'http://www.marcusjewelryny.com//?p=104',0,'revision','',0),(101,1,'2013-04-11 19:33:45','2013-04-11 19:33:45','<b>We sell Jewelry of all types, including:</b>\r\n<br>\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals\r\n<br><br>\r\n\r\n<div id=\"container\" class=\"cf\">\r\n<div id=\"main\" role=\"main\">\r\n<section class=\"slider\">\r\n<div class=\"flexslider carousel\">\r\n<ul class=\"slides\">\r\n<li>\r\n<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets1.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets2.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets3.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets4.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets5.jpg\" />\r\n	</li>\r\n	</ul>\r\n	</div>\r\n	</section>\r\n	</div>\r\n	</div>\r\n  \r\n	','We Sell','','inherit','open','open','','23-revision-11','','','2013-04-11 19:33:45','2013-04-11 19:33:45','',23,'http://www.marcusjewelryny.com//?p=101',0,'revision','',0),(102,1,'2013-04-11 19:34:39','2013-04-11 19:34:39','<b>We sell Jewelry of all types, including:</b>\r\n\r\n\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals\r\n<div class=\"cf\" id=\"container\">\r\n<div id=\"main\" role=\"main\"><section class=\"slider\">\r\n<div class=\"flexslider carousel\">\r\n<ul class=\"slides\">\r\n	<li><img alt=\"\" src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets1.jpg\" /></li>\r\n	<li><img alt=\"\" src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets2.jpg\" /></li>\r\n	<li><img alt=\"\" src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets3.jpg\" /></li>\r\n	<li><img alt=\"\" src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets4.jpg\" /></li>\r\n	<li><img alt=\"\" src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets5.jpg\" /></li>\r\n</ul>\r\n</div>\r\n</section></div>\r\n</div>','We Sell','','inherit','open','open','','23-revision-12','','','2013-04-11 19:34:39','2013-04-11 19:34:39','',23,'http://www.marcusjewelryny.com//?p=102',0,'revision','',0),(97,1,'2013-04-11 19:21:22','2013-04-11 19:21:22','<b>We sell Jewelry of all types, including:</b>\r\n<br>\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals\r\n<br><br>\r\n        <!-- Demo CSS -->\r\n	<link rel=\"stylesheet\" href=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/css/demo.css\" type=\"text/css\" media=\"screen\" />\r\n	<link rel=\"stylesheet\" href=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/css/flexslider.css\" type=\"text/css\" media=\"screen\" />\r\n	<!-- Modernizr -->\r\n	<script src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/js/modernizr.js\"></script>\r\n        <div id=\"container\" class=\"cf\">\r\n	<div id=\"main\" role=\"main\">\r\n	<section class=\"slider\">\r\n	<div class=\"flexslider carousel\">\r\n        <ul class=\"slides\">\r\n        <li>\r\n<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets1.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets2.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets3.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets4.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets5.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets6.jpg\" />\r\n	</li>\r\n	</ul>\r\n	</div>\r\n	</section>\r\n	</div>\r\n	</div>\r\n  \r\n	<!-- jQuery -->\r\n	<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js\"></script>\r\n	<script>window.jQuery || document.write(\'<script src=\"js/libs/jquery-1.7.min.js\">\\x3C/script>\')</script>\r\n  \r\n	<!-- FlexSlider -->\r\n	<script defer src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/js/jquery.flexslider.js\"></script>\r\n	<script type=\"text/javascript\">\r\n	$(function(){\r\n	  SyntaxHighlighter.all();\r\n	});\r\n	$(window).load(function(){\r\n	  $(\'.flexslider\').flexslider({\r\n		animation: \"slide\",\r\n		animationLoop: false,\r\n		itemWidth: 210,\r\n		itemMargin: 5,\r\n		minItems: 2,\r\n		maxItems: 4,\r\n		start: function(slider){\r\n		  $(\'body\').removeClass(\'loading\');\r\n		}\r\n	  });\r\n	});\r\n	</script>','We Sell','','inherit','open','open','','23-revision-7','','','2013-04-11 19:21:22','2013-04-11 19:21:22','',23,'http://www.marcusjewelryny.com//?p=97',0,'revision','',0),(96,1,'2013-04-11 19:12:03','2013-04-11 19:12:03','<b>We sell Jewelry of all types, including:</b>\r\n<br>\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals\r\n<br><br>\r\n        <!-- Demo CSS -->\r\n	<link rel=\"stylesheet\" href=\"css/demo.css\" type=\"text/css\" media=\"screen\" />\r\n	<link rel=\"stylesheet\" href=\"css/flexslider.css\" type=\"text/css\" media=\"screen\" />\r\n	<!-- Modernizr -->\r\n	<script src=\"js/modernizr.js\"></script>\r\n        <div id=\"container\" class=\"cf\">\r\n	<div id=\"main\" role=\"main\">\r\n	  <section class=\"slider\">\r\n		<div class=\"flexslider carousel\">\r\n		  <ul class=\"slides\">\r\n			<li>\r\n				<img src=\"images/1.png\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/2.png\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/4.png\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/5.png\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/6.png\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/7.png.jpg\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/1.png\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/2.png\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/4.png\" />\r\n				</li>\r\n				<li>\r\n				<img src=\"images/5.png\" />\r\n				</li>\r\n		  </ul>\r\n		</div>\r\n	  </section>\r\n	</div>\r\n	</div>\r\n  \r\n	<!-- jQuery -->\r\n	<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js\"></script>\r\n	<script>window.jQuery || document.write(\'<script src=\"js/libs/jquery-1.7.min.js\">\\x3C/script>\')</script>\r\n  \r\n	<!-- FlexSlider -->\r\n	<script defer src=\"js/jquery.flexslider.js\"></script>\r\n	<script type=\"text/javascript\">\r\n	$(function(){\r\n	  SyntaxHighlighter.all();\r\n	});\r\n	$(window).load(function(){\r\n	  $(\'.flexslider\').flexslider({\r\n		animation: \"slide\",\r\n		animationLoop: false,\r\n		itemWidth: 210,\r\n		itemMargin: 5,\r\n		minItems: 2,\r\n		maxItems: 4,\r\n		start: function(slider){\r\n		  $(\'body\').removeClass(\'loading\');\r\n		}\r\n	  });\r\n	});\r\n	</script>','We Sell','','inherit','open','open','','23-revision-6','','','2013-04-11 19:12:03','2013-04-11 19:12:03','',23,'http://www.marcusjewelryny.com//?p=96',0,'revision','',0),(99,1,'2013-04-11 19:28:21','2013-04-11 19:28:21','<b>We sell Jewelry of all types, including:</b>\r\n<br>\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals\r\n<br><br>\r\n\r\n<div id=\"container\" class=\"cf\">\r\n<div id=\"main\" role=\"main\">\r\n<section class=\"slider\">\r\n<div class=\"flexslider carousel\">\r\n<ul class=\"slides\">\r\n<li>\r\n<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets1.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets2.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets3.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets4.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets5.jpg\" />\r\n	</li>\r\n	</ul>\r\n	</div>\r\n	</section>\r\n	</div>\r\n	</div>\r\n  \r\n	<!-- jQuery -->\r\n	<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js\"></script>\r\n	<script>window.jQuery || document.write(\'<script src=\"js/libs/jquery-1.7.min.js\">\\x3C/script>\')</script>\r\n  \r\n	<!-- FlexSlider -->\r\n	<script defer src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/js/jquery.flexslider.js\"></script>\r\n	<script type=\"text/javascript\">\r\n	$(function(){\r\n	  SyntaxHighlighter.all();\r\n	});\r\n	$(window).load(function(){\r\n	  $(\'.flexslider\').flexslider({\r\n		animation: \"slide\",\r\n		animationLoop: false,\r\n		itemWidth: 210,\r\n		itemMargin: 5,\r\n		minItems: 2,\r\n		maxItems: 4,\r\n		start: function(slider){\r\n		  $(\'body\').removeClass(\'loading\');\r\n		}\r\n	  });\r\n	});\r\n	</script>','We Sell','','inherit','open','open','','23-revision-9','','','2013-04-11 19:28:21','2013-04-11 19:28:21','',23,'http://www.marcusjewelryny.com//?p=99',0,'revision','',0),(98,1,'2013-04-11 19:26:45','2013-04-11 19:26:45','<b>We sell Jewelry of all types, including:</b>\r\n<br>\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals\r\n<br><br>\r\n\r\n<div id=\"container\" class=\"cf\">\r\n<div id=\"main\" role=\"main\">\r\n<section class=\"slider\">\r\n<div class=\"flexslider carousel\">\r\n<ul class=\"slides\">\r\n<li>\r\n<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets1.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets2.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets3.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets4.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets5.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets6.jpg\" />\r\n	</li>\r\n	</ul>\r\n	</div>\r\n	</section>\r\n	</div>\r\n	</div>\r\n  \r\n	<!-- jQuery -->\r\n	<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js\"></script>\r\n	<script>window.jQuery || document.write(\'<script src=\"js/libs/jquery-1.7.min.js\">\\x3C/script>\')</script>\r\n  \r\n	<!-- FlexSlider -->\r\n	<script defer src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/js/jquery.flexslider.js\"></script>\r\n	<script type=\"text/javascript\">\r\n	$(function(){\r\n	  SyntaxHighlighter.all();\r\n	});\r\n	$(window).load(function(){\r\n	  $(\'.flexslider\').flexslider({\r\n		animation: \"slide\",\r\n		animationLoop: false,\r\n		itemWidth: 210,\r\n		itemMargin: 5,\r\n		minItems: 2,\r\n		maxItems: 4,\r\n		start: function(slider){\r\n		  $(\'body\').removeClass(\'loading\');\r\n		}\r\n	  });\r\n	});\r\n	</script>','We Sell','','inherit','open','open','','23-revision-8','','','2013-04-11 19:26:45','2013-04-11 19:26:45','',23,'http://www.marcusjewelryny.com//?p=98',0,'revision','',0),(100,1,'2013-04-11 19:28:55','2013-04-11 19:28:55','<b>We sell Jewelry of all types, including:</b>\r\n<br>\r\n-Necklaces\r\n-Rings\r\n-Anklets\r\n-Jewels and Gemstones\r\n-Precious Metals\r\n<br><br>\r\n\r\n<div id=\"container\" class=\"cf\">\r\n<div id=\"main\" role=\"main\">\r\n<section class=\"slider\">\r\n<div class=\"flexslider carousel\">\r\n<ul class=\"slides\">\r\n<li>\r\n<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets1.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets2.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets3.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets4.jpg\" />\r\n	</li>\r\n	<li>\r\n	<img src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/images/anklets/anklets5.jpg\" />\r\n	</li>\r\n	</ul>\r\n	</div>\r\n	</section>\r\n	</div>\r\n	</div>\r\n  \r\n	<!-- jQuery -->\r\n	<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js\"></script>\r\n	<script>window.jQuery || document.write(\'<script src=\"js/libs/jquery-1.7.min.js\">\\x3C/script>\')</script>\r\n  \r\n	<!-- FlexSlider -->\r\n	<script defer src=\"http://www.marcusjewelryny.com//wp-content/themes/Nova/js/jquery.flexslider.js\"></script>\r\n	<script type=\"text/javascript\">\r\n	$(function(){\r\n	  SyntaxHighlighter.all();\r\n	});\r\n	$(window).load(function(){\r\n	  $(\'.flexslider\').flexslider({\r\n		animation: \"slide\",\r\n		animationLoop: false,\r\n		itemWidth: 210,\r\n		itemMargin: 5,\r\n		minItems: 2,\r\n		maxItems: 4,\r\n		start: function(slider){\r\n		  $(\'body\').removeClass(\'loading\');\r\n		}\r\n	  });\r\n	});\r\n	</script>','We Sell','','inherit','open','open','','23-revision-10','','','2013-04-11 19:28:55','2013-04-11 19:28:55','',23,'http://www.marcusjewelryny.com//?p=100',0,'revision','',0),(129,1,'2013-04-22 22:51:00','2013-04-22 22:51:00','<div class=\"main_about\">\r\n\r\nMarcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry.  Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him.\r\n\r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.\r\n\r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.\r\n\r\n<br class=\"content_about\" />\r\n<div class=\"img_about\"><a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\"> <img class=\"alignnone size-medium wp-image-81\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a></div>\r\n</div>','About us','','inherit','open','open','','13-revision-22','','','2013-04-22 22:51:00','2013-04-22 22:51:00','',13,'http://www.marcusjewelryny.com//?p=129',0,'revision','',0),(105,1,'2013-04-11 23:24:16','2013-04-11 23:24:16','<div class=\"main_about\">\r\n<div class=\"content_about\">For all of your Jewelry needs, Marcus Jewelry. Established 1978 in a downtown repair shop, we have grown into a full service jewelery store. Buffalo Born, Tonawanda Tax paying Jeweler spends his success right here in Erie County. We offer unique and exciting new and estate jewelry. On site Jeweler with 39 years of experience can fix, engrave, size, or pretty much anything else on virtually any piece, new or estate.***One or same day service available when requested. Great for \"Gemergencies\"!***\r\n\r\nWe pay cash for Diamonds, gold, silver, in any condition, any amount. We also look to purchase miscellaneous items if they can be resold at a profit.\r\n\r\nLocally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.\r\n\r\n</div>\r\n\r\n<div class=\"img_about\">\r\n<a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a>\r\n</div>\r\n</div>','About us','','inherit','open','open','','13-revision-20','','','2013-04-11 23:24:16','2013-04-11 23:24:16','',13,'http://www.marcusjewelryny.com//?p=105',0,'revision','',0),(133,1,'2013-04-22 23:05:38','2013-04-22 23:05:38','<div class=\"main_about\">\r\n<div class=\"content_about\">\r\nMarcus Jewelry is an on premise jeweler with thirty nine years’ of experience in the jewelry industry.  Marcus Jewelry was established in 1978 in a downtown repair shop and has since grown into a full service jewelry store. Marcus Jewelry is locally owned and has been rooted in Tonawanda, New York for sixteen years at the same location, so you’ll always know where to find him. \r\nMarcus Jewelry specializes in same day service and with thirty nine years in the business, he can engrave, re-style, re-size, or repair your jewelry.  \r\nIf you were to ask his customers about Marcus, they would say that he is an honest, friendly, service orientated jeweler who pays top dollar for your precious metals and gems.\r\n</div>\r\n<div class=\"img_about\"><a href=\"http://www.facebook.com/pages/Marcus-Jewelry/414442158591744?skip_nax_wizard=true\" target=\"_blank\">\r\n<img class=\"alignnone size-medium wp-image-81\" title=\"Siguenos en Facebook\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</a></div>\r\n</div>','About us','','inherit','open','open','','13-revision-24','','','2013-04-22 23:05:38','2013-04-22 23:05:38','',13,'http://www.marcusjewelryny.com//?p=133',0,'revision','',0),(106,1,'2013-04-11 18:04:36','2013-04-11 18:04:36','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">\r\nWritten or verbal jewelry appraisals .\r\nWholesale Prices on high quality gold and diamonds.\r\n\r\nTop Dollar Paid for Old Gold, Silver, platinum, diamonds, etc.,\r\nOn premise jeweler with 39 years experience repairs and engraves, etc. in 1 day when requested. Friendly local owner. Same location for 16 years .\r\n</div>\r\n<div class=\"img_about\">\r\n<img class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</div>\r\n</div>','Services Provided','','inherit','open','open','','68-revision-3','','','2013-04-11 18:04:36','2013-04-11 18:04:36','',68,'http://www.marcusjewelryny.com//?p=106',0,'revision','',0),(107,1,'2013-04-11 23:40:59','2013-04-11 23:40:59','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">\r\nWritten or verbal jewelry appraisals .\r\nWholesale Prices on high quality gold and diamonds.\r\n\r\nTop Dollar Paid for Old Gold, Silver, platinum, diamonds, etc.,\r\nOn premise jeweler with 39 years experience repairs and engraves, etc. in 1 day when requested. Friendly local owner. Same location for 16 years .\r\n</div>\r\n<div class=\"img_about\">\r\n<img height=\"100\"  width=\"100%\" class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</div>\r\n</div>','Services Provided','','inherit','open','open','','68-revision-4','','','2013-04-11 23:40:59','2013-04-11 23:40:59','',68,'http://www.marcusjewelryny.com//?p=107',0,'revision','',0),(108,1,'2013-04-11 23:42:37','2013-04-11 23:42:37','<div class=\"main_about_tag\">\r\n<div class=\"content_about\">\r\nWritten or verbal jewelry appraisals .\r\nWholesale Prices on high quality gold and diamonds.\r\n\r\nTop Dollar Paid for Old Gold, Silver, platinum, diamonds, etc.,\r\nOn premise jeweler with 39 years experience repairs and engraves, etc. in 1 day when requested. Friendly local owner. Same location for 16 years .\r\n</div>\r\n<div class=\"img_about\">\r\n<img style=\"height:100\";width:100%\" class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</div>\r\n</div>','Services Provided','','inherit','open','open','','68-revision-5','','','2013-04-11 23:42:37','2013-04-11 23:42:37','',68,'http://www.marcusjewelryny.com//?p=108',0,'revision','',0),(109,1,'2013-04-11 16:02:24','2013-04-11 16:02:24','<div class=\"main_about_tag\">\r\n\r\n<div class=\"content_about\">Locally owned and operated by a Tonawanda taxpayer . 16 years in the same location . On premise jeweler with 39 years experience . Many same day services . Get great deals on pre-worn diamonds and fine gold jewelry . The most honest and friendly jeweler in town pays top dollar for your old gold, coins, diamonds, etc.</div>\r\n\r\n<div class=\"img_about\">\r\n<img class=\"alignnone size-medium wp-image-81\" alt=\"owner\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/owner-287x300.png\" width=\"287\" height=\"300\" />\r\n</div>\r\n\r\n</div>','About Us','','inherit','open','open','','70-revision-10','','','2013-04-11 16:02:24','2013-04-11 16:02:24','',70,'http://www.marcusjewelryny.com//?p=109',0,'revision','',0),(110,1,'2013-04-11 16:01:03','2013-04-11 16:01:03','<strong>Click  here to Contact Us</strong>\r\n\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-12','','','2013-04-11 16:01:03','2013-04-11 16:01:03','',1,'http://www.marcusjewelryny.com//?p=110',0,'revision','',0),(116,1,'2013-04-15 23:11:58','2013-04-15 23:11:58','<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-18','','','2013-04-15 23:11:58','2013-04-15 23:11:58','',1,'http://www.marcusjewelryny.com//?p=116',0,'revision','',0),(111,1,'2013-04-15 22:59:40','2013-04-15 22:59:40','<p style=\"text-align: center;\">Low Prices - High Quality\r\nRepairs, Alterations, Appraisals\r\n<i>Same Day Service When Possible\r\n</i> WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</p>\r\n<strong>Click  here to Contact Us</strong>\r\n\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-13','','','2013-04-15 22:59:40','2013-04-15 22:59:40','',1,'http://www.marcusjewelryny.com//?p=111',0,'revision','',0),(113,1,'2013-04-15 23:06:18','2013-04-15 23:06:18','<p>\r\nLow Prices - High Quality\r\n\r\nRepairs, Alterations, Appraisals\r\n\r\n<i>Same Day Service When Possible</i> \r\nWE BUY: Scrap Gold, Diamonds, Coins and Collectibles</p>\r\n</p>\r\n\r\n<strong>Click  here to Contact Us</strong>\r\n\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-15','','','2013-04-15 23:06:18','2013-04-15 23:06:18','',1,'http://www.marcusjewelryny.com//?p=113',0,'revision','',0),(112,1,'2013-04-15 23:02:29','2013-04-15 23:02:29','<p style=\"text-align: center;\">Low Prices - High Quality<br>\r\nRepairs, Alterations, Appraisals<br>\r\n<i>Same Day Service When Possible<br>\r\n</i> WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</p><br>\r\n<strong>Click  here to Contact Us</strong>\r\n\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-14','','','2013-04-15 23:02:29','2013-04-15 23:02:29','',1,'http://www.marcusjewelryny.com//?p=112',0,'revision','',0),(115,1,'2013-04-15 23:08:42','2013-04-15 23:08:42','Low Prices - High Quality</p>\r\nRepairs, Alterations, Appraisals</p>\r\n<i>Same Day Service When Possible</i>\r\nWE BUY: Scrap Gold, Diamonds, Coins and Collectibles\r\n<strong>Click  here to Contact Us</strong>\r\n\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-17','','','2013-04-15 23:08:42','2013-04-15 23:08:42','',1,'http://www.marcusjewelryny.com//?p=115',0,'revision','',0),(114,1,'2013-04-15 23:07:12','2013-04-15 23:07:12','<p style=\"text-align: center;\">Low Prices - High Quality</p>\r\n<p style=\"text-align: center;\">Repairs, Alterations, Appraisals</p>\r\n<p style=\"text-align: center;\"><i>Same Day Service When Possible</i>\r\nWE BUY: Scrap Gold, Diamonds, Coins and Collectibles</p>\r\n<strong>Click  here to Contact Us</strong>\r\n\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-16','','','2013-04-15 23:07:12','2013-04-15 23:07:12','',1,'http://www.marcusjewelryny.com//?p=114',0,'revision','',0),(120,1,'2013-04-16 22:11:47','2013-04-16 22:11:47',' ','','','publish','open','open','','120','','','2013-06-07 11:35:54','2013-06-07 11:35:54','',0,'http://www.marcusjewelryny.com//?p=120',2,'nav_menu_item','',0),(121,1,'2013-04-16 22:11:47','2013-04-16 22:11:47',' ','','','publish','open','open','','121','','','2013-06-07 11:35:54','2013-06-07 11:35:54','',0,'http://www.marcusjewelryny.com//?p=121',3,'nav_menu_item','',0),(118,1,'2013-04-15 23:27:07','2013-04-15 23:27:07','<div id=\"banner0\">\r\n                    <div id=\"add\">\r\n                        1590 Niagara Fall Blvd.<br />\r\n                        Tonawanda, NY 14150\r\n                    </div>\r\n                    <div id=\"phone\">\r\n                        Phone<br />\r\n                        (716)834-1030\r\n                    </div>\r\n                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-20','','','2013-04-15 23:27:07','2013-04-15 23:27:07','',1,'http://www.marcusjewelryny.com//?p=118',0,'revision','',0),(117,1,'2013-04-15 23:21:09','2013-04-15 23:21:09','<div id=\"banner_header\">\r\n                    <div id=\"add\">\r\n                        1590 Niagara Fall Blvd.<br />\r\n                        Tonawanda, NY 14150\r\n                    </div>\r\n                    <div id=\"phone\">\r\n                        Phone<br />\r\n                        (716)834-1030\r\n                    </div>\r\n                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-19','','','2013-04-15 23:21:09','2013-04-15 23:21:09','',1,'http://www.marcusjewelryny.com//?p=117',0,'revision','',0),(122,1,'2013-04-16 22:11:47','2013-04-16 22:11:47',' ','','','publish','open','open','','122','','','2013-06-07 11:35:54','2013-06-07 11:35:54','',0,'http://www.marcusjewelryny.com//?p=122',6,'nav_menu_item','',0),(123,1,'2013-04-16 22:11:47','2013-04-16 22:11:47',' ','','','publish','open','open','','123','','','2013-06-07 11:35:54','2013-06-07 11:35:54','',0,'http://www.marcusjewelryny.com//?p=123',4,'nav_menu_item','',0),(124,1,'2013-04-16 22:11:47','2013-04-16 22:11:47',' ','','','publish','open','open','','124','','','2013-06-07 11:35:54','2013-06-07 11:35:54','',0,'http://www.marcusjewelryny.com//?p=124',5,'nav_menu_item','',0),(149,1,'2013-04-23 23:22:10','2013-04-23 23:22:10','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"we_sell1();\" style=\"cursor: pointer;\">Necklaces</span>\r\n-<span onmouseover=\"we_sell2();\" style=\"cursor: pointer;\">Rings</span>\r\n-<span onmouseover=\"we_sell3();\" style=\"cursor: pointer;\">Anklets</span>\r\n-<span onmouseover=\"we_sell4();\" style=\"cursor: pointer;\">Jewels and Gemstones</span>\r\n-<span onmouseover=\"we_sell5();\" style=\"cursor: pointer;\">Precious Metals</span>','We Sell','','inherit','open','open','','23-revision-21','','','2013-04-23 23:22:10','2013-04-23 23:22:10','',23,'http://www.marcusjewelryny.com//?p=149',0,'revision','',0),(150,1,'2013-04-23 23:29:24','2013-04-23 23:29:24','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"we_sell1();\" style=\"cursor: pointer;\">Necklaces</span>\r\n-<span onmouseover=\"we_sell2();\" onmouseout=\"display:none\" style=\"cursor: pointer;\">Rings</span>\r\n-<span onmouseover=\"we_sell3();\" style=\"cursor: pointer;\">Anklets</span>\r\n-<span onmouseover=\"we_sell4();\" style=\"cursor: pointer;\">Jewels and Gemstones</span>\r\n-<span onmouseover=\"we_sell5();\" style=\"cursor: pointer;\">Precious Metals</span>','We Sell','','inherit','open','open','','23-revision-22','','','2013-04-23 23:29:24','2013-04-23 23:29:24','',23,'http://www.marcusjewelryny.com//?p=150',0,'revision','',0),(151,1,'2013-04-23 23:34:40','2013-04-23 23:34:40','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"we_sell1();\" style=\"cursor: pointer;\">Necklaces</span>\r\n-<span onmouseover=\"we_sell2();\" style=\"cursor: pointer;\">Rings</span>\r\n-<span onmouseover=\"we_sell3();\" style=\"cursor: pointer;\">Anklets</span>\r\n-<span onmouseover=\"we_sell4();\" style=\"cursor: pointer;\">Jewels and Gemstones</span>\r\n-<span onmouseover=\"we_sell5();\" style=\"cursor: pointer;\">Precious Metals</span>','We Sell','','inherit','open','open','','23-revision-23','','','2013-04-23 23:34:40','2013-04-23 23:34:40','',23,'http://www.marcusjewelryny.com//?p=151',0,'revision','',0),(152,1,'2013-04-23 23:46:05','2013-04-23 23:46:05','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"we_sell1();\" onmouseout=\"we_sell6();\" style=\"cursor: pointer;\">Necklaces</span>\r\n-<span onmouseover=\"we_sell2();\" style=\"cursor: pointer;\">Rings</span>\r\n-<span onmouseover=\"we_sell3();\" style=\"cursor: pointer;\">Anklets</span>\r\n-<span onmouseover=\"we_sell4();\" style=\"cursor: pointer;\">Jewels and Gemstones</span>\r\n-<span onmouseover=\"we_sell5();\" style=\"cursor: pointer;\">Precious Metals</span>','We Sell','','inherit','open','open','','23-revision-24','','','2013-04-23 23:46:05','2013-04-23 23:46:05','',23,'http://www.marcusjewelryny.com//?p=152',0,'revision','',0),(153,1,'2013-04-23 23:48:05','2013-04-23 23:48:05','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"we_sell1();\" onmouseout=\"we_sell6();\" style=\"cursor: pointer;\">Necklaces</span>\r\n-<span onmouseover=\"we_sell2();\" onmouseout=\"we_sell7();\" style=\"cursor: pointer;\">Rings</span>\r\n-<span onmouseover=\"we_sell3();\" onmouseout=\"we_sell8();\" style=\"cursor: pointer;\">Anklets</span>\r\n-<span onmouseover=\"we_sell4();\" style=\"cursor: pointer;\">Jewels and Gemstones</span>\r\n-<span onmouseover=\"we_sell5();\" style=\"cursor: pointer;\">Precious Metals</span>','We Sell','','inherit','open','open','','23-revision-25','','','2013-04-23 23:48:05','2013-04-23 23:48:05','',23,'http://www.marcusjewelryny.com//?p=153',0,'revision','',0),(154,1,'2013-04-23 23:52:13','2013-04-23 23:52:13','<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span onmouseover=\"we_sell1();\" onmouseout=\"we_sell60();\"  style=\"cursor: pointer;\">Necklaces</span>\r\n-<span onmouseover=\"we_sell2();\" onmouseout=\"we_sell70();\"  style=\"cursor: pointer;\">Rings</span>\r\n-<span onmouseover=\"we_sell3();\" onmouseout=\"we_sell80();\"  style=\"cursor: pointer;\">Anklets</span>\r\n-<span onmouseover=\"we_sell4();\" onmouseout=\"we_sell9();\"  style=\"cursor: pointer;\">Jewels and Gemstones</span>\r\n-<span onmouseover=\"we_sell5();\" onmouseout=\"we_sell10();\" style=\"cursor: pointer;\">Precious Metals</span>','We Sell','','inherit','open','open','','23-revision-26','','','2013-04-23 23:52:13','2013-04-23 23:52:13','',23,'http://www.marcusjewelryny.com//?p=154',0,'revision','',0),(155,1,'2013-03-25 21:42:26','2013-03-25 21:42:26','<b>Top Dollar Paid For:</b>\r\n<br>\r\n-Gold\r\n-Silver\r\n-Platinum\r\n-Diamonds\r\n-Estate Jewelry\r\n-Contemporary Pieces\r\n-Precious Jewels, Gemstones and metals, from Amethyst to Zirconium\r\n-Miscellaneous Items are purchased if there is a positive ROI.','We Buy','','inherit','open','open','','20-revision-6','','','2013-03-25 21:42:26','2013-03-25 21:42:26','',20,'http://www.marcusjewelryny.com//?p=155',0,'revision','',0),(156,1,'2013-04-24 16:11:45','2013-04-24 16:11:45','<b>Top Dollar Paid For:</b>\r\n<br>\r\n-<span onmouseover=\"we_sell1();\" onmouseout=\"\"  style=\"cursor: pointer;\">Gold</span>\r\n-Silver\r\n-Platinum\r\n-Diamonds\r\n-Estate Jewelry\r\n-Contemporary Pieces\r\n-Precious Jewels, Gemstones and metals, from Amethyst to Zirconium\r\n-Miscellaneous Items are purchased if there is a positive ROI.','We Buy','','inherit','open','open','','20-revision-7','','','2013-04-24 16:11:45','2013-04-24 16:11:45','',20,'http://www.marcusjewelryny.com//?p=156',0,'revision','',0),(157,1,'2013-04-24 16:12:59','2013-04-24 16:12:59','<b>Top Dollar Paid For:</b>\r\n<br>\r\n-<span onmouseover=\"we_buy1();\" onmouseout=\"\"  style=\"cursor: pointer;\">Gold</span>\r\n-Silver\r\n-Platinum\r\n-Diamonds\r\n-Estate Jewelry\r\n-Contemporary Pieces\r\n-Precious Jewels, Gemstones and metals, from Amethyst to Zirconium\r\n-Miscellaneous Items are purchased if there is a positive ROI.','We Buy','','inherit','open','open','','20-revision-8','','','2013-04-24 16:12:59','2013-04-24 16:12:59','',20,'http://www.marcusjewelryny.com//?p=157',0,'revision','',0),(158,1,'2013-04-24 16:14:19','2013-04-24 16:14:19','<b>Top Dollar Paid For:</b>\r\n<br>\r\n-<span onmouseover=\"we_buy1();\" style=\"cursor: pointer;\">Gold</span>\r\n-Silver\r\n-Platinum\r\n-Diamonds\r\n-Estate Jewelry\r\n-Contemporary Pieces\r\n-Precious Jewels, Gemstones and metals, from Amethyst to Zirconium\r\n-Miscellaneous Items are purchased if there is a positive ROI.','We Buy','','inherit','open','open','','20-revision-9','','','2013-04-24 16:14:19','2013-04-24 16:14:19','',20,'http://www.marcusjewelryny.com//?p=158',0,'revision','',0),(159,1,'2013-04-24 17:59:25','2013-04-24 17:59:25','<b>Top Dollar Paid For:</b>\r\n<br>\r\n-<span onmouseover=\"we_buy1();\" style=\"cursor: pointer;\">\r\nGold\r\n</span>\r\n-<span onmouseover=\"we_buy2();\" style=\"cursor: pointer;\">Silver\r\n-<span onmouseover=\"we_buy3();\" style=\"cursor: pointer;\">Platinum\r\n-<span onmouseover=\"we_buy4();\" style=\"cursor: pointer;\">Diamonds\r\n-<span onmouseover=\"we_buy5();\" style=\"cursor: pointer;\">Estate Jewelry\r\n-<span onmouseover=\"we_buy6();\" style=\"cursor: pointer;\">Contemporary Pieces\r\n-<span onmouseover=\"we_buy7();\" style=\"cursor: pointer;\">Precious Jewels, Gemstones and metals, from Amethyst to Zirconium\r\n-<span onmouseover=\"we_buy8();\" style=\"cursor: pointer;\">Miscellaneous Items are purchased if there is a positive ROI.','We Buy','','inherit','open','open','','20-revision-10','','','2013-04-24 17:59:25','2013-04-24 17:59:25','',20,'http://www.marcusjewelryny.com//?p=159',0,'revision','',0),(160,1,'2013-04-24 18:00:19','2013-04-24 18:00:19','<b>Top Dollar Paid For:</b>\r\n<br>\r\n-<span onmouseover=\"we_buy1();\" style=\"cursor: pointer;\">Gold/span>\r\n-<span onmouseover=\"we_buy2();\" style=\"cursor: pointer;\">Silver\r\n-<span onmouseover=\"we_buy3();\" style=\"cursor: pointer;\">Platinum\r\n-<span onmouseover=\"we_buy4();\" style=\"cursor: pointer;\">Diamonds\r\n-<span onmouseover=\"we_buy5();\" style=\"cursor: pointer;\">Estate Jewelry\r\n-<span onmouseover=\"we_buy6();\" style=\"cursor: pointer;\">Contemporary Pieces\r\n-<span onmouseover=\"we_buy7();\" style=\"cursor: pointer;\">Precious Jewels, Gemstones and metals, from Amethyst to Zirconium\r\n-<span onmouseover=\"we_buy8();\" style=\"cursor: pointer;\">Miscellaneous Items are purchased if there is a positive ROI.','We Buy','','inherit','open','open','','20-revision-11','','','2013-04-24 18:00:19','2013-04-24 18:00:19','',20,'http://www.marcusjewelryny.com//?p=160',0,'revision','',0),(161,1,'2013-03-25 22:06:31','2013-03-25 22:06:31','-Repairs\r\n-Vocal and Written Appraisals & Quotes\r\n-Engravings\r\n\r\nand others','We Do','','inherit','open','open','','2-revision-4','','','2013-03-25 22:06:31','2013-03-25 22:06:31','',2,'http://www.marcusjewelryny.com//?p=161',0,'revision','',0),(192,1,'2013-06-11 18:38:13','2013-06-11 18:38:13','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-22','','','2013-06-11 18:38:13','2013-06-11 18:38:13','',1,'http://www.marcusjewelryny.com/?p=192',0,'revision','',0),(191,1,'2013-04-15 23:31:16','2013-04-15 23:31:16','<div id=\"banner0\">\r\n                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-21','','','2013-04-15 23:31:16','2013-04-15 23:31:16','',1,'http://www.marcusjewelryny.com/?p=191',0,'revision','',0),(170,1,'2013-05-20 15:45:43','2013-05-20 15:45:43','_\r\n<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell1();\" onmouseout=\"we_sell6();\">Necklaces</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell2();\" onmouseout=\"we_sell7();\">Rings</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell3();\" onmouseout=\"we_sell8();\">Anklets</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell4();\" onmouseout=\"we_sell9();\">Jewels and Gemstones</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell5();\" onmouseout=\"we_sell10();\">Precious Metals</span>','We Sell ','','publish','open','open','','we-sell','','','2013-05-20 16:20:11','2013-05-20 16:20:11','',0,'http://www.marcusjewelryny.com/?page_id=170',0,'page','',0),(171,1,'2013-05-20 15:43:24','2013-05-20 15:43:24','<ul>\n	<li>New + Estate Jewelry</li>\n	<li>Diamond Rings, Diamond Bracelets, Diamond Stud Earrings, Diamond Necklaces</li>\n	<li>Loose Diamonds</li>\n	<li>G/A Certified Diamonds</li>\n	<li>Gold only bracelets, chains, earrings + rings sold by the lowest per gram prices</li>\n	<li>religious medals</li>\n	<li>medical alert jewelry</li>\n	<li>18 years at the same location</li>\n	<li>Top quality at the lowest prices.</li>\n	<li>Warranty on all products + services.</li>\n</ul>','We Sell ','','inherit','open','open','','170-revision','','','2013-05-20 15:43:24','2013-05-20 15:43:24','',170,'http://www.marcusjewelryny.com/?p=171',0,'revision','',0),(172,1,'2013-05-20 16:18:47','2013-05-20 16:18:47','<ul>\n	<li>New + Estate Jewelry</li>\n	<li>Diamond Rings, Diamond Bracelets, Diamond Stud Earrings, Diamond Necklaces</li>\n	<li>Loose Diamonds</li>\n	<li>G/A Certified Diamonds</li>\n	<li>Gold only bracelets, chains, earrings + rings sold by the lowest per gram prices</li>\n	<li>religious medals</li>\n	<li>medical alert jewelry</li>\n</ul>\n&nbsp;\n\n-18 years at the same location.\n-Top quality at the lowest prices.\n-Warranty on all products + services.\n\n_\n<b>We sell Jewelry of all types, including:</b>\n\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell1();\" onmouseout=\"we_sell6();\">Necklaces</span>\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell2();\" onmouseout=\"we_sell7();\">Rings</span>\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell3();\" onmouseout=\"we_sell8();\">Anklets</span>\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell4();\" onmouseout=\"we_sell9();\">Jewels and Gemstones</span>\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell5();\" onmouseout=\"we_sell10();\">Precious Metals</span>','We Sell ','','inherit','open','open','','170-autosave','','','2013-05-20 16:18:47','2013-05-20 16:18:47','',170,'http://www.marcusjewelryny.com/?p=172',0,'revision','',0),(173,1,'2013-05-20 15:45:43','2013-05-20 15:45:43','<ul>\r\n	<li>New + Estate Jewelry</li>\r\n	<li>Diamond Rings, Diamond Bracelets, Diamond Stud Earrings, Diamond Necklaces</li>\r\n	<li>Loose Diamonds</li>\r\n	<li>G/A Certified Diamonds</li>\r\n	<li>Gold only bracelets, chains, earrings + rings sold by the lowest per gram prices</li>\r\n	<li>religious medals</li>\r\n	<li>medical alert jewelry</li>\r\n	<li>18 years at the same location</li>\r\n	<li>Top quality at the lowest prices.</li>\r\n	<li>Warranty on all products + services.</li>\r\n</ul>','We Sell ','','inherit','open','open','','170-revision-2','','','2013-05-20 15:45:43','2013-05-20 15:45:43','',170,'http://www.marcusjewelryny.com/?p=173',0,'revision','',0),(177,1,'2013-05-20 16:19:34','2013-05-20 16:19:34','\r\n_\r\n<b>We sell Jewelry of all types, including:</b>\r\n\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell1();\" onmouseout=\"we_sell6();\">Necklaces</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell2();\" onmouseout=\"we_sell7();\">Rings</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell3();\" onmouseout=\"we_sell8();\">Anklets</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell4();\" onmouseout=\"we_sell9();\">Jewels and Gemstones</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_sell5();\" onmouseout=\"we_sell10();\">Precious Metals</span>','We Sell ','','inherit','open','open','','170-revision-4','','','2013-05-20 16:19:34','2013-05-20 16:19:34','',170,'http://www.marcusjewelryny.com/?p=177',0,'revision','',0),(178,1,'2013-05-20 16:19:29','2013-05-20 16:19:29','<ul>\r\n	<li>New + Estate Jewelry</li>\r\n	<li>Diamond Rings, Diamond Bracelets, Diamond Stud Earrings, Diamond Necklaces</li>\r\n	<li>Loose Diamonds</li>\r\n	<li>G/A Certified Diamonds</li>\r\n	<li>Gold only bracelets, chains, earrings + rings sold by the lowest per gram prices</li>\r\n	<li>religious medals</li>\r\n	<li>medical alert jewelry</li>\r\n</ul>\r\n&nbsp;\r\n\r\n-18 years at the same location.\r\n-Top quality at the lowest prices.\r\n-Warranty on all products + services.\r\n','We Sell','','inherit','open','open','','23-revision-28','','','2013-05-20 16:19:29','2013-05-20 16:19:29','',23,'http://www.marcusjewelryny.com/?p=178',0,'revision','',0),(179,1,'2013-04-24 18:20:07','2013-04-24 18:20:07','-<span onmouseover=\"we_do1();\" onmouseout=\"we_do4();\" style=\"cursor: pointer;\">Repairs</span>\r\n-<span onmouseover=\"we_do2();\" onmouseout=\"we_do5();\" style=\"cursor: pointer;\">Vocal and Written Appraisals & Quotes</span>\r\n-<span onmouseover=\"we_do3();\" onmouseout=\"we_do6();\" style=\"cursor: pointer;\">Engravings</span>\r\n\r\nand others','We Do','','inherit','open','open','','2-revision-5','','','2013-04-24 18:20:07','2013-04-24 18:20:07','',2,'http://www.marcusjewelryny.com/?p=179',0,'revision','',0),(180,1,'2013-05-20 16:36:59','2013-05-20 16:36:59','-<span onmouseover=\"we_do1();\" onmouseout=\"we_do4();\" style=\"cursor: pointer;\">Repairs</span>\r\n-<span onmouseover=\"we_do2();\" onmouseout=\"we_do5();\" style=\"cursor: pointer;\">Vocal and Written Appraisals & Quotes</span>\r\n-<span onmouseover=\"we_do3();\" onmouseout=\"we_do6();\" style=\"cursor: pointer;\">Engravings</span>\r\n\r\nand others','We Do','','publish','open','open','','services','','','2013-05-20 16:46:46','2013-05-20 16:46:46','',0,'http://www.marcusjewelryny.com/?page_id=180',0,'page','',0),(181,1,'2013-05-20 16:36:46','2013-05-20 16:36:46','<ul>\n	<li>New settings for your old diamonds/gemstones.</li>\n	<li>Gems replaced or tightened</li>\n	<li>Clasps replaced</li>\n	<li>Chains + Bracelets repaired + shortened</li>\n	<li>Rings sized</li>\n	<li>Prongs fixed</li>\n	<li>Rhodium Plating</li>\n	<li>Watch Batteries</li>\n	<li>Engraving</li>\n	<li>Pearls + Beads restrung</li>\n	<li>Appraisals for insurance</li>\n</ul>\n&nbsp;\n<ul>\n	<li>All types of repairs done on site</li>\n	<li>Jeweler has 39 years of experience</li>\n	<li>Low Prices - High Quality Work</li>\n	<li>Same Day service for many jobs</li>\n	<li>18 years at the same location.</li>\n</ul>','Services','','inherit','open','open','','180-revision','','','2013-05-20 16:36:46','2013-05-20 16:36:46','',180,'http://www.marcusjewelryny.com/?p=181',0,'revision','',0),(182,1,'2013-05-20 16:43:10','2013-05-20 16:43:10','<b>Top Dollar Paid For:</b>\r\n\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_buy1();\" onmouseout=\"we_buy9();\">Gold</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_buy2();\" onmouseout=\"we_buy10();\">Silver</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_buy3();\" onmouseout=\"we_buy11();\">Platinum</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_buy4();\" onmouseout=\"we_buy12();\">Diamonds</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_buy5();\" onmouseout=\"we_buy13();\">Estate Jewelry</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_buy6();\" onmouseout=\"we_buy14();\">Contemporary Pieces</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_buy7();\" onmouseout=\"we_buy15();\">Precious Jewels, Gemstones and metals, from Amethyst to Zirconium</span>\r\n-<span style=\"cursor: pointer;\" onmouseover=\"we_buy8();\" onmouseout=\"we_buy16();\">Miscellaneous Items are purchased if there is a positive ROI.</span>','We Buy','','publish','open','open','','we-buy','','','2013-05-20 16:44:26','2013-05-20 16:44:26','',0,'http://www.marcusjewelryny.com/?page_id=182',0,'page','',0),(183,1,'2013-05-20 16:39:07','2013-05-20 16:39:07','<ul>\n	<li><span style=\"line-height: 13px;\">Anything Gold, Platinum, Silver, Diamonds</span></li>\n	<li>No amount too small or too large</li>\n	<li>Cash Paid</li>\n	<li>Discreet + Friendly Buyers</li>\n	<li>We pay top dollar. We want you to be satisfied + tell your friends about us</li>\n	<li>18 years at the same location</li>\n</ul>','We Buy','','inherit','open','open','','182-revision','','','2013-05-20 16:39:07','2013-05-20 16:39:07','',182,'http://www.marcusjewelryny.com/?p=183',0,'revision','',0),(184,1,'2013-05-20 16:43:10','2013-05-20 16:43:10','<ul>\r\n	<li><span style=\"line-height: 13px;\">Anything Gold, Platinum, Silver, Diamonds</span></li>\r\n	<li>No amount too small or too large</li>\r\n	<li>Cash Paid</li>\r\n	<li>Discreet + Friendly Buyers</li>\r\n	<li>We pay top dollar. We want you to be satisfied + tell your friends about us</li>\r\n	<li>18 years at the same location</li>\r\n</ul>','We Buy','','inherit','open','open','','182-revision-2','','','2013-05-20 16:43:10','2013-05-20 16:43:10','',182,'http://www.marcusjewelryny.com/?p=184',0,'revision','',0),(185,1,'2013-04-24 18:02:38','2013-04-24 18:02:38','<b>Top Dollar Paid For:</b>\r\n<br>\r\n-<span onmouseover=\"we_buy1();\" onmouseout=\"we_buy9();\" style=\"cursor: pointer;\">Gold</span>\r\n-<span onmouseover=\"we_buy2();\" onmouseout=\"we_buy10();\" style=\"cursor: pointer;\">Silver</span>\r\n-<span onmouseover=\"we_buy3();\" onmouseout=\"we_buy11();\" style=\"cursor: pointer;\">Platinum</span>\r\n-<span onmouseover=\"we_buy4();\" onmouseout=\"we_buy12();\" style=\"cursor: pointer;\">Diamonds</span>\r\n-<span onmouseover=\"we_buy5();\" onmouseout=\"we_buy13();\" style=\"cursor: pointer;\">Estate Jewelry</span>\r\n-<span onmouseover=\"we_buy6();\" onmouseout=\"we_buy14();\" style=\"cursor: pointer;\">Contemporary Pieces</span>\r\n-<span onmouseover=\"we_buy7();\" onmouseout=\"we_buy15();\" style=\"cursor: pointer;\">Precious Jewels, Gemstones and metals, from Amethyst to Zirconium</span>\r\n-<span onmouseover=\"we_buy8();\" onmouseout=\"we_buy16();\" style=\"cursor: pointer;\">Miscellaneous Items are purchased if there is a positive ROI.</span>','We Buy','','inherit','open','open','','20-revision-12','','','2013-04-24 18:02:38','2013-04-24 18:02:38','',20,'http://www.marcusjewelryny.com/?p=185',0,'revision','',0),(187,1,'2013-05-20 16:33:41','2013-05-20 16:33:41','-<span onmouseover=\"we_do1();\" onmouseout=\"we_do4();\" style=\"cursor: pointer;\">Repairs</span>\r\n-<span onmouseover=\"we_do2();\" onmouseout=\"we_do5();\" style=\"cursor: pointer;\">Vocal and Written Appraisals & Quotes</span>\r\n-<span onmouseover=\"we_do3();\" onmouseout=\"we_do6();\" style=\"cursor: pointer;\">Engravings</span>\r\n\r\nand others','We Do','','inherit','open','open','','2-revision-6','','','2013-05-20 16:33:41','2013-05-20 16:33:41','',2,'http://www.marcusjewelryny.com/?p=187',0,'revision','',0),(188,1,'2013-05-20 16:36:59','2013-05-20 16:36:59','<ul>\r\n	<li>New settings for your old diamonds/gemstones.</li>\r\n	<li>Gems replaced or tightened</li>\r\n	<li>Clasps replaced</li>\r\n	<li>Chains + Bracelets repaired + shortened</li>\r\n	<li>Rings sized</li>\r\n	<li>Prongs fixed</li>\r\n	<li>Rhodium Plating</li>\r\n	<li>Watch Batteries</li>\r\n	<li>Engraving</li>\r\n	<li>Pearls + Beads restrung</li>\r\n	<li>Appraisals for insurance</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n	<li>All types of repairs done on site</li>\r\n	<li>Jeweler has 39 years of experience</li>\r\n	<li>Low Prices - High Quality Work</li>\r\n	<li>Same Day service for many jobs</li>\r\n	<li>18 years at the same location.</li>\r\n</ul>','Services','','inherit','open','open','','180-revision-2','','','2013-05-20 16:36:59','2013-05-20 16:36:59','',180,'http://www.marcusjewelryny.com/?p=188',0,'revision','',0),(193,1,'2013-06-11 18:38:15','2013-06-11 18:38:15','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-23','','','2013-06-11 18:38:15','2013-06-11 18:38:15','',1,'http://www.marcusjewelryny.com/?p=193',0,'revision','',0),(194,1,'2013-06-11 18:38:16','2013-06-11 18:38:16','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-24','','','2013-06-11 18:38:16','2013-06-11 18:38:16','',1,'http://www.marcusjewelryny.com/?p=194',0,'revision','',0),(195,1,'2013-06-11 18:38:17','2013-06-11 18:38:17','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-25','','','2013-06-11 18:38:17','2013-06-11 18:38:17','',1,'http://www.marcusjewelryny.com/?p=195',0,'revision','',0),(196,1,'2013-06-11 18:38:19','2013-06-11 18:38:19','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-26','','','2013-06-11 18:38:19','2013-06-11 18:38:19','',1,'http://www.marcusjewelryny.com/?p=196',0,'revision','',0),(197,1,'2013-06-11 18:38:20','2013-06-11 18:38:20','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-27','','','2013-06-11 18:38:20','2013-06-11 18:38:20','',1,'http://www.marcusjewelryny.com/?p=197',0,'revision','',0),(198,1,'2013-06-11 18:38:21','2013-06-11 18:38:21','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-28','','','2013-06-11 18:38:21','2013-06-11 18:38:21','',1,'http://www.marcusjewelryny.com/?p=198',0,'revision','',0),(199,1,'2013-06-11 18:38:23','2013-06-11 18:38:23','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-29','','','2013-06-11 18:38:23','2013-06-11 18:38:23','',1,'http://www.marcusjewelryny.com/?p=199',0,'revision','',0),(200,1,'2013-06-11 18:38:24','2013-06-11 18:38:24','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-30','','','2013-06-11 18:38:24','2013-06-11 18:38:24','',1,'http://www.marcusjewelryny.com/?p=200',0,'revision','',0),(201,1,'2013-06-11 18:38:25','2013-06-11 18:38:25','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-31','','','2013-06-11 18:38:25','2013-06-11 18:38:25','',1,'http://www.marcusjewelryny.com/?p=201',0,'revision','',0),(202,1,'2013-06-11 18:38:26','2013-06-11 18:38:26','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-32','','','2013-06-11 18:38:26','2013-06-11 18:38:26','',1,'http://www.marcusjewelryny.com/?p=202',0,'revision','',0),(203,1,'2013-06-11 18:38:27','2013-06-11 18:38:27','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-33','','','2013-06-11 18:38:27','2013-06-11 18:38:27','',1,'http://www.marcusjewelryny.com/?p=203',0,'revision','',0),(204,1,'2013-06-11 18:38:28','2013-06-11 18:38:28','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-34','','','2013-06-11 18:38:28','2013-06-11 18:38:28','',1,'http://www.marcusjewelryny.com/?p=204',0,'revision','',0),(205,1,'2013-06-11 18:38:29','2013-06-11 18:38:29','<div id=\"banner0\">\r\n<div style=\"display: none\"><a href=\'http://cashhloan.com/\' title=\'instant cash loans\'>instant cash loans</a></div>                    <div id=\"txtdes\">\r\n                        <b>MARCUS JEWELRY<br /></b>\r\n                        Low Prices - High Quality<br />\r\n                        Repairs, Alterations, Appraisals<br />\r\n                        <i>Same Day Service When Possible<br /></i>\r\n                        \r\n                        <span style=\"color: red;\">WE BUY: Scrap Gold, Diamonds, Coins and Collectibles</span>\r\n                    </div>\r\n                </div>\r\n<strong>\r\n<img class=\"alignnone size-full wp-image-84\" alt=\"btnContactUS\" src=\"http://www.marcusjewelryny.com//wp-content/uploads/2013/03/btnContactUS.png\" width=\"175\" height=\"65\" />\r\n</strong> <div style=\"display: none\">zp8497586rq</div>','Jewelry Store  Tonawanda, NY','','inherit','open','open','','1-revision-35','','','2013-06-11 18:38:29','2013-06-11 18:38:29','',1,'http://www.marcusjewelryny.com/?p=205',0,'revision','',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=MyISAM DEFAULT CHARSET=utf8;
/*!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),(119,2,0),(120,2,0),(121,2,0),(124,2,0),(122,2,0),(123,2,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) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!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),(2,2,'nav_menu','',0,6);
/*!40000 ALTER TABLE `wp_term_taxonomy` 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) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!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','uncategorized',0),(2,'menu','menu',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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8;
/*!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,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','admin'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','207'),(15,1,'wp_user-settings','libraryContent=browse&editor=tinymce&hidetb=1'),(16,1,'wp_user-settings-time','1369774796'),(17,1,'closedpostboxes_post','a:1:{i:0;s:12:\"et_post_meta\";}'),(18,1,'metaboxhidden_post','a:6:{i:0;s:13:\"trackbacksdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";i:5;s:12:\"revisionsdiv\";}'),(19,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(20,1,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(21,1,'closedpostboxes_page','a:0:{}'),(22,1,'metaboxhidden_page','a:5:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";i:4;s:12:\"revisionsdiv\";}'),(23,1,'al2fb_like_faces','1'),(24,1,'nav_menu_recently_edited','2'),(25,1,'closedpostboxes_dashboard','a:0:{}'),(26,1,'metaboxhidden_dashboard','a:0:{}');
/*!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) NOT NULL DEFAULT '',
  `user_pass` varchar(64) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(60) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!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,'admin','$P$Blvx7QOWuBwkXhmRiUOTsKKA9HqK.M/','admin','william.rsw@gmail.com','','2013-03-23 18:09:13','',0,'admin');
/*!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 2013-08-03 13:45:59
