-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.sql
481 lines (424 loc) · 313 KB
/
database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
-- phpMyAdmin SQL Dump
-- version 3.5.2.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 08, 2013 at 04:06 PM
-- Server version: 5.1.67-0ubuntu0.10.04.1
-- PHP Version: 5.3.2-1ubuntu4.19
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `atelierweb`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
CREATE TABLE IF NOT EXISTS `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 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Monsieur WordPress', '', 'http://wordpress.org/', '', '2013-04-08 13:41:27', '2013-04-08 13:41:27', 'Bonjour, ceci est un commentaire.\nPour supprimer un commentaire, connectez-vous et affichez les commentaires de cet article. Vous pourrez alors les modifier ou les supprimer.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE IF NOT EXISTS `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 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=140 ;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://atelierweb.localhost', 'yes'),
(2, 'blogname', 'Atelier Web - Seizam', 'yes'),
(3, 'blogdescription', 'Un site utilisant WordPress', 'yes'),
(4, 'users_can_register', '0', 'yes'),
(5, 'admin_email', '[email protected]', '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', '[email protected]', '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', 'j F Y', 'yes'),
(23, 'time_format', 'G \\h i \\m\\i\\n', 'yes'),
(24, 'links_updated_date_format', 'j F Y, G \\h i \\m\\i\\n', '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:0:{}', 'yes'),
(36, 'home', 'http://atelierweb.localhost', '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', '1', 'yes'),
(42, 'default_email_category', '1', 'yes'),
(43, 'recently_edited', '', 'no'),
(44, 'template', 'twentytwelve', 'yes'),
(45, 'stylesheet', 'twentytwelve', '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:2;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:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'sidebars_widgets', 'a:5:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(99, 'cron', 'a:2:{i:1365471689;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;}}}s:7:"version";i:2;}', 'yes'),
(106, '_site_transient_timeout_browser_eafe0a3d101b0cad46f484c41dad867f', '1366033297', 'yes'),
(101, '_site_transient_update_core', 'O:8:"stdClass":3:{s:7:"updates";a:2:{i:0;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:49:"http://fr.wordpress.org/wordpress-3.5.1-fr_FR.zip";s:6:"locale";s:5:"fr_FR";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:49:"http://fr.wordpress.org/wordpress-3.5.1-fr_FR.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;}s:7:"current";s:5:"3.5.1";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:0:"";}i:1;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:40:"http://wordpress.org/wordpress-3.5.1.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.1.zip";s:10:"no_content";s:51:"http://wordpress.org/wordpress-3.5.1-no-content.zip";s:11:"new_bundled";s:52:"http://wordpress.org/wordpress-3.5.1-new-bundled.zip";s:7:"partial";b:0;}s:7:"current";s:5:"3.5.1";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:0:"";}}s:12:"last_checked";i:1365428495;s:15:"version_checked";s:5:"3.5.1";}', 'yes'),
(103, '_site_transient_timeout_theme_roots', '1365430296', 'yes'),
(102, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1365428495;s:7:"checked";a:2:{s:19:"akismet/akismet.php";s:5:"2.5.7";s:9:"hello.php";s:3:"1.6";}s:8:"response";a:0:{}}', 'yes'),
(104, '_site_transient_theme_roots', 'a:3:{s:12:"twentyeleven";s:7:"/themes";s:9:"twentyten";s:7:"/themes";s:12:"twentytwelve";s:7:"/themes";}', 'yes'),
(105, '_site_transient_update_themes', 'O:8:"stdClass":3:{s:12:"last_checked";i:1365428496;s:7:"checked";a:3:{s:12:"twentyeleven";s:3:"1.5";s:9:"twentyten";s:3:"1.5";s:12:"twentytwelve";s:3:"1.1";}s:8:"response";a:0:{}}', 'yes'),
(107, '_site_transient_browser_eafe0a3d101b0cad46f484c41dad867f', 'a:9:{s:8:"platform";s:5:"Linux";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"25.0.1364.160";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'),
(108, '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:27:"http://atelierweb.localhost";s:4:"link";s:103:"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://atelierweb.localhost/";s:3:"url";s:136:"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://atelierweb.localhost/";s:5:"items";i:10;s:9:"show_date";b:0;}s:17:"dashboard_primary";a:7:{s:4:"link";s:28:"http://www.wordpress-fr.net/";s:3:"url";s:48:"http://feeds.feedburner.com/WordpressFrancophone";s:5:"title";s:14:"Blog WordPress";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:35:"http://www.wordpress-fr.net/planet/";s:3:"url";s:55:"http://feeds2.feedburner.com/WordpressFrancophonePlanet";s:5:"title";s:46:"Autres actualités de WordPress (en français)";s:5:"items";i:5;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:0;}}', 'yes'),
(109, 'can_compress_scripts', '0', 'yes'),
(110, '_transient_timeout_feed_d289af8214fe5ff3acb0bc15db2e6ba1', '1365471700', 'no'),
(111, '_transient_feed_d289af8214fe5ff3acb0bc15db2e6ba1', '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:83:"\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:4:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"link:http://atelierweb.localhost/ - 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:91:"http://www.google.com/search?ie=utf-8&q=link:http://atelierweb.localhost/&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:16:"About 41 results";s:7:"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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:60:"[Ghi Đĩa] Nero 12-Phần mềm gi đĩa | Blog.FPTclub.net";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.fptclub.net/?p=599";s: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:314:"5. Sau khi khởi động lại ứng dụng sẻ tự động cài đặt nên bạn phải đợi 6. Sau đó thoát khỏi nero và dùng patch đã cung cấp. Download Nero 12 Full Crack <em>Link</em> 4share.vn <em>http</em>://up.4share.vn/f/4e7c797a7d777b….full.rar.file. <em>Link</em> fshare.vn <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:16:"Blog.fptclub.net";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"phampro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Tue, 22 Jan 2013 12:58:16 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:84:"Deploy WordPress to Windows 2008R2 – Part III - OSPV . Open <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://www.ospv.com/2012/09/23/deploy-wordpress-to-windows-2008r2-part-iii/";s: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:534:"Point your web browser to <em>http</em>://www.iis.net/downloads/microsoft/url-rewrite, and by the end of that web page, select one of the x64 variants, according to your language. <b>...</b> Install URL Rewrite 2.0, then follow the instructions on the above referenced <em>links</em> to set the web.config manually and you will be done. <b>...</b> Navigate to <em>http</em>://<em>localhost</em>/phpmyadmin, type root for user name and the password should be the same used when you set up the mySQL software (Part II of this tutorial).";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:73:"OSPV » OSPV . Open Source Penguindow Valley, Windows and DOS Open Source";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Jose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sun, 23 Sep 2012 12:12:34 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:83:"Deploy WordPress to Windows 2008R2 – Part II - OSPV . Open <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://www.ospv.com/2012/09/10/deploy-wordpress-to-windows-2008r2-part-ii/";s: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:278:"Time to confirm if PHP is working. With Notepad, make a text file called phpinfo.php with just one line of text: <?php phpinfo(); ?> Place phpinfo.php in c:\\inetpub\\wwwroot, launch your web browser and point it to: <em>http</em>://<em>localhost</em>/phpinfo.php <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:73:"OSPV » OSPV . Open Source Penguindow Valley, Windows and DOS Open Source";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Jose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Mon, 10 Sep 2012 03:44:51 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:"Drupal 7 sur un serveur mutualité OVH, eZoulou.be : Création <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.ezoulou.be/blog/archive/2012/06/06/drupal-7-sur-un-serveur-mutualite-ovh.html";s: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:565:"chmod_R($fullpath, $filemode,$dirmode); } } closedir($dh); } else { if (is_link($path)) { print "<em>link</em> '$path' is skipped\\n"; return; } if (!chmod($path, $filemode)) { $filemode_str=decoct($filemode); print "Failed applying filemode '$filemode_str' on file '$ path'\\n"; return; } } }. Base de données. Enfin, pour vos paramètres de connection à la base de données, vous devez utiliser comme serveur non pas <em>localhost</em> mais l'adresse du serveur qui vous a été attribué. par ex :mysql51-65.perso.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:81:"eZoulou.be : Création, developpement & maintenance de site internet à Bruxelles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"florent Claude";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Wed, 06 Jun 2012 10:14:02 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:75:"[Video] Phẫu thuật đục thủy tinh thể | Ngoc-PhamPro.blogspot.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:75:"http://ngoc-phampro.blogspot.com/2011/08/video-phau-thuat-uc-thuy-tinh.html";s: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:307:"<em>Atelier Web</em> Remote Commander (full crack). Nếu thích thử qua nhiều sản phẩm <b>...</b> Autoit · no image. Đầu tiên các bạn phải down chương trình về tại đây AutoIt Script Home Page <em>Link</em> direct: <em>http</em>://www.autoitscript.com/cgi-bin/...t-v3-setup.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:25:"Ngoc-PhamPro.blogspot.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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:20:"Phạm Đức Ngọc";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sun, 21 Aug 2011 14:57:00 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:98:"Tài liệu hay về Opencart-Hướng dẫn thiết kế template opencart <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:80:"http://ngoc-phampro.blogspot.com/2011/06/tai-lieu-hay-ve-opencart-huong-dan.html";s: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:660:"<b>...</b> rõ hơn chút đi.Chứ như thế này thì chỉ có ai bị rồi mới biết.Như bạn cài ở đâu.trên host hay <em>localhost</em>.và một số cái liên quan :( :( :( <b>...</b> <em>Atelier Web</em> Remote Commander (full crack). Nếu thích thử qua nhiều sản phẩm quản trị từ xa, bạn hãy ghé mắt xem thử <em>Atelier Web</em> Remote Commander, với đặc điểm không cần cài đặt trên m. <b>...</b> Autoit · no image. Đầu tiên các bạn phải down chương trình về tại đây AutoIt Script Home Page <em>Link</em> direct: <em>http</em>://www.autoitscript.com/cgi-bin/...t-v3-setup.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:25:"Ngoc-PhamPro.blogspot.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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:26:"Đam Mê Số @dammeso.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:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Mon, 13 Jun 2011 17:08:00 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:41:"Cyber-Usoftware: Tutorial Install AppServ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://cyber-usoftware.blogspot.com/2011/03/tutorial-install-appserv.html";s: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:289:"Yaitu : Apache <em>Http</em> Server , MySQL Database , PHP Hypertext Preprocessor , phpMyAdmin. Artinya anda tinggal <b>...</b> <em>Localhost</em>:8010 atau <em>Localhost</em>:8010 sesuai port yang sudah anda masukan tadi. Kemudian Tekan <b>...</b> Pengikut. <em>Link</em> Teman <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:15:"Cyber-Usoftware";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Zhenren92";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Wed, 16 Mar 2011 07:25:00 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:78:"How to view or track the IP addresses | Blog <b>links</b> articles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://fatoerblogs.wordpress.com/2011/01/05/how-to-view-or-track-the-ip-addresses/";s: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:268:"Try to open <em>http</em>://www.domainwhitepages.com Just enter the IP address of this site, or enter the site address and you will get complete info about the server from the site of which is the location of the state and city. 3. Tracking IP addresses are <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:19:"Blog links articles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"FatoerBlogs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Wed, 05 Jan 2011 05:02:08 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:"Ketip&#39;s Blog: Cara Melacak IP ADDRESS dan REAL ADDRESS <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://zoga-x.blogspot.com/2010/12/cara-melacak-ip-address-dan-real.html";s: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:288:"<em>http</em>://evalsoftware.<em>atelierweb</em>.com/awrc62.zip source: <em>http</em>://har3165.blogsome.com/2007/05/23/cara-masuk-di-komputer-lain-lewat-dos-windows-xp-2000/ <b>....</b> Received: from mweb.co.id (<em>localhost</em> [127.0.0.1]) by mailsrv1.mweb.co.id (iPlanet <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:12:"Ketip''s 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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"rocker";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Mon, 13 Dec 2010 18:29:00 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_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:29:"Namaku Marshall: Agustus 2007";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://marshall-indrian.blogspot.com/2007_08_01_archive.html";s: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:580:"satunya adalah dengan menggunakan <em>Atelier Web</em> Remote Commander atau dikenal juga <b>...</b> lengkapnya tentang software ini, bisa dilihat di www.<em>atelierweb</em>.com atau <b>......</b> <em>http</em>://target.com/yabbse/plugins/auto-acronyms.php <b>...</b> $dbhost = " <em>localhost</em>"; $dbuname = "target"; $dbpass = "password_target"; $dbname = "db_target"; ---snip---- menginggat kebanyakan permission untuk file configurasi di set 755 atau 644, artinya userlain/nobody diijinkan untuk membaca file tersebut (:p) <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:15:"Namaku Marshall";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Dave Marshall";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Thu, 30 Aug 2007 07:00:00 GMT";s: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:2:"41";s: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:"Mon, 08 Apr 2013 13:41:40 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=8f01bcf085624120:FF=0:TM=1365428500:LM=1365428500:S=4b5Dins2S_lOmDo5; expires=Wed, 08-Apr-2015 13:41:40 GMT; path=/; domain=.google.com";i:1;s:212:"NID=67=a5xhsl_mvYeIlMDTTHi6wiaFwvFEocey86zsSMZGxtQoeFK18rDnj278Vz3FiRAoCwkb5016_XyR5q8rjN910lHka4Us0c_gi9VvdePT87XvHHg-Neoo_c1jr68wYViY; expires=Tue, 08-Oct-2013 13:41:40 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:"20121202164312";}', 'no'),
(112, '_transient_timeout_feed_mod_d289af8214fe5ff3acb0bc15db2e6ba1', '1365471700', 'no'),
(113, '_transient_feed_mod_d289af8214fe5ff3acb0bc15db2e6ba1', '1365428500', 'no'),
(114, '_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f', '1365471700', 'no'),
(115, '_transient_dash_20494a3d90a6669585674ed0eb8dcd8f', '<ul>\n <li><strong>phampro</strong> a fait un lien vers ce site <a href="http://blog.fptclub.net/?p=599">en écrivant</a> « 5. Sau khi khởi động lại ứng dụng sẻ tự động cài đ ... »</li>\n <li><strong>Jose</strong> a fait un lien vers ce site <a href="http://www.ospv.com/2012/09/23/deploy-wordpress-to-windows-2008r2-part-iii/">en écrivant</a> « Point your web browser to http://www.iis.net/downl ... »</li>\n <li><strong>Jose</strong> a fait un lien vers ce site <a href="http://www.ospv.com/2012/09/10/deploy-wordpress-to-windows-2008r2-part-ii/">en écrivant</a> « Time to confirm if PHP is working. With Notepad, m ... »</li>\n <li><strong>florent Claude</strong> a fait un lien vers ce site <a href="http://www.ezoulou.be/blog/archive/2012/06/06/drupal-7-sur-un-serveur-mutualite-ovh.html">en écrivant</a> « chmod_R($fullpath, $filemode,$dirmode); } } closed ... »</li>\n <li><strong>Phạm Đức Ngọc</strong> a fait un lien vers ce site <a href="http://ngoc-phampro.blogspot.com/2011/08/video-phau-thuat-uc-thuy-tinh.html">en écrivant</a> « Atelier Web Remote Commander (full crack). Nếu thí ... »</li>\n <li><strong>Đam Mê Số @dammeso.com</strong> a fait un lien vers ce site <a href="http://ngoc-phampro.blogspot.com/2011/06/tai-lieu-hay-ve-opencart-huong-dan.html">en écrivant</a> « ... rõ hơn chút đi.Chứ như thế này thì chỉ có ai b ... »</li>\n <li><strong>Zhenren92</strong> a fait un lien vers ce site <a href="http://cyber-usoftware.blogspot.com/2011/03/tutorial-install-appserv.html">en écrivant</a> « Yaitu : Apache Http Server , MySQL Database , PHP ... »</li>\n <li><strong>FatoerBlogs</strong> a fait un lien vers ce site <a href="http://fatoerblogs.wordpress.com/2011/01/05/how-to-view-or-track-the-ip-addresses/">en écrivant</a> « Try to open http://www.domainwhitepages.com Just e ... »</li>\n <li><strong>rocker</strong> a fait un lien vers ce site <a href="http://zoga-x.blogspot.com/2010/12/cara-melacak-ip-address-dan-real.html">en écrivant</a> « http://evalsoftware.atelierweb.com/awrc62.zip sour ... »</li>\n <li><strong>Dave Marshall</strong> a fait un lien vers ce site <a href="http://marshall-indrian.blogspot.com/2007_08_01_archive.html">en écrivant</a> « satunya adalah dengan menggunakan Atelier Web Remo ... »</li>\n</ul>\n', 'no'),
(116, '_transient_timeout_feed_66a70e9599b658d5cc038e8074597e7c', '1365471700', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(117, '_transient_feed_66a70e9599b658d5cc038e8074597e7c', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:49:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a: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:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"WordPress Francophone";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:27:"http://www.wordpress-fr.net";s: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:66:"La communauté francophone autour du CMS WordPress et WordPress Mu";s: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:"Tue, 02 Apr 2013 05:27: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:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"fr-FR";s:7:"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:78:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"L’Hebdo WordPress n°180 : WordCamp Europe – BuddyPress – bbPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/I7SaMrIMQWk/";s: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:105:"http://www.wordpress-fr.net/2013/04/02/lhebdo-wordpress-n180-wordcamp-europe-buddypress-bbpress/#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, 02 Apr 2013 05:27: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:13:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:14:"Développement";s: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:11:"Evènements";s: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:8:"WordCamp";s: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:5:{s:4:"data";s:9:"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:"";}i:5;a:5:{s:4:"data";s:21:"WordPress underground";s: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:5:{s:4:"data";s:7:"android";s: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:5:{s:4:"data";s:7:"bbPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:8;a:5:{s:4:"data";s:10:"BuddyPress";s: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:5:{s:4:"data";s:5:"Hebdo";s: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:5:{s:4:"data";s:7:"Jetpack";s: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:5:{s:4:"data";s:11:"underground";s: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:5:{s:4:"data";s:8:"wordcamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=5659";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:324:"WordCamp Europe : Le site web WordCamp Europe possède son site web officiel. BuddyPress 1.7 RC 1 La première release candidate de BuddyPress 1.7 (en) est sortie, essayez-là et dites ce que vous en pensez. bbPress 2.3 RC 1 Afin de suivre le développement de BuddyPress 1.7, bbPress se met également à jour et sort [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:5133:"<h3>WordCamp Europe : Le site web</h3>\n<p><a href="http://2013.europe.wordcamp.org/">WordCamp Europe</a> possède son site web officiel.</p>\n<h3>BuddyPress 1.7 RC 1</h3>\n<p>La <a href="http://buddypress.org/2013/03/buddypress-1-7-release-candidate-1/">première release candidate de BuddyPress 1.7 (en) </a>est sortie, essayez-là et dites ce que vous en pensez.</p>\n<h3>bbPress 2.3 RC 1</h3>\n<p><a href="http://wprealm.com/blog/bbpress-decides-to-tandem-with-buddypress-and-also-does-a-release-candidate/">Afin de suivre le développement de BuddyPress 1.7</a>, bbPress se met également à jour et<a href="http://bbpress.org/blog/2013/03/bbpress-2-3-release-candidate-1/"> sort aussi sa release candidate 1</a> (en).</p>\n<h3>Jetpack 2.2.1</h3>\n<p>L’extension Jetpack évolue encore et propose cette fois un mode de développement <a href="http://jetpack.me/2013/03/28/jetpack-dev-mode-release/">dans cette version 2.2.1 (en)</a>.</p>\n<h3>WordPress pour Android 2.3 beta</h3>\n<p>L<a href="http://dev.android.wordpress.org/2013/03/29/its-about-time-for-the-2-3-beta-which/">a nouvelle version de WordPress pour Android passe en beta</a> (en), il s’agit de la 2.3.</p>\n<h3>Compter les articles selon leur langue</h3>\n<p>Dans un site multilingues, il peut être intéressant d’avoir la possibilité de compter le nombre d’article selon les langues utilisés. <a href="http://wpchannel.com/compter-articles-langue-wpml-wordpres/">WP Channel nous indique la marche à suivre</a> avec WPML.</p>\n<h3>Pourquoi ne pas utiliser Jetpack</h3>\n<p>Jetpack est une extension très riche mais certains la trouve trop complète et donc trop « usine à gaz ». <a href="http://jupiterjimsmarketingteam.com/2013/03/07/why-i-dont-use-wordpress-jetpack/">Un avis allant en ce sens est à découvrir (en)</a>.</p>\n<h3>Un thème à partir de Twenty Eleven</h3>\n<p>Manooweb propose de <a href="http://blog.manooweb.fr/wordpress-construire-son-theme-a-partir-de-twenty-eleven/">réaliser un thème à partir de Twenty Eleven</a>.</p>\n<h3>Faire du vélo habillé en WordPress</h3>\n<p>Si vous aimez faire du vélo et que vous êtes fan de WordPress, <a href="http://cyclingkit.wordpress.com/">alors voici une tenue pour vous (en)</a>.</p>\n<h3>Afficher les articles les plus commentés sans extensions</h3>\n<p>La méthode pour afficher les <a href="http://wpchannel.com/afficher-articles-plus-commentes-wordpress/">articles les plus commentés</a> de votre site.</p>\n<h3>Se souvenir de sa connexion</h3>\n<p>Si vous souhaitez que la case « se souvenir de moi » de la page de connexion soit toujours cochée, <a href="http://www.geekpress.fr/wordpress/astuce/cocher-souvenir-moi-page-connexion-1844/">la solution à cette problématique est chez GeekPress</a>.</p>\n<h3>Une banque de thème</h3>\n<p>Winithemes est une banque de thèmes WordPress, <a href="http://www.ballajack.com/banque-theme#more-21190">Ballajack vous en parle</a>.</p>\n<h3>WordPress Business : un nouveau service wordpress.com</h3>\n<p>WordPress.com dévoile son nouveau service pour les pro : <a href="http://store.wordpress.com/premium-upgrades/wordpress-business/">WordPress Business</a> (en).</p>\n<h3>Trop d’extensions tuent les extensions ?</h3>\n<p>La question de savoir s’il est convenable d’utiliser beaucoup d’extensions se pose régulièrement. <a href="http://wphacks.com/how-using-too-many-wordpress-plugins-can-kill-your-website/">Voici un élément de réponse</a>.</p>\n<h3>Nouvelle enseigne chez Automattic</h3>\n<p><a href="http://www.youtube.com/watch?v=EgYFfA4rlQE&feature=youtu.be">Un timelapse a été réalisé </a>lors du changement d’enseignement du bâtiment de bureau d’Automattic.</p>\n<h3>Cacher l’extrait</h3>\n<p>Si vous souhaitez <a href="http://tweetpress.fr/faqs/noteaser-wordpress/">cacher l’extrait</a> lors de la lecture de l’article voici comment faire.</p>\n<h3>BuddyPress : pas-à-pas – Episode 5</h3>\n<p><a href="http://wpformation.com/buddypress-episode-5/">Voici déjà le 5e épisode </a>du mode pas-à-pas engagé par iMath chez WP Formation.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=I7SaMrIMQWk:RZzysBnP6js:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=I7SaMrIMQWk:RZzysBnP6js:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=I7SaMrIMQWk:RZzysBnP6js:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=I7SaMrIMQWk:RZzysBnP6js:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=I7SaMrIMQWk:RZzysBnP6js:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=I7SaMrIMQWk:RZzysBnP6js:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/I7SaMrIMQWk" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:101:"http://www.wordpress-fr.net/2013/04/02/lhebdo-wordpress-n180-wordcamp-europe-buddypress-bbpress/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:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:96:"http://www.wordpress-fr.net/2013/04/02/lhebdo-wordpress-n180-wordcamp-europe-buddypress-bbpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:66:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:72:"L’Hebdo WordPress n°179 : WordPress.tv – WP et BP Beta – WordSesh";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/ZGsNXteab9I/";s: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:103:"http://www.wordpress-fr.net/2013/03/20/lhebdo-wordpress-n179-wordpress-tv-wp-bp-beta-wordsesh/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 20 Mar 2013 21:57:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:9:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:14:"Développement";s: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:15:"Référencement";s: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:9:"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:"";}i:4;a:5:{s:4:"data";s:10:"BuddyPress";s: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:5:{s:4:"data";s:11:"communauté";s: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:5:{s:4:"data";s:5:"Hebdo";s: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:5:{s:4:"data";s:13:"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:"";}i:8;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:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=5635";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:"En retard et plein de liens en anglais… je m’excuse platement. :/ En route pour WordPress 3.6 beta 1 La beta 1 de WordPress 3.6 (en) est déjà en ligne de mire. WordPress.tv est ouvert Dorénavant vous pouvez publier vos vidéos WordPress vous-mêmes sur wordpress.tv. BuddyPress 1.7 beta 2 La version de BuddyPress que tout [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:4651:"<p>En retard et plein de liens en anglais… je m’excuse platement. :/</p>\n<h3>En route pour WordPress 3.6 beta 1</h3>\n<p>La <a href="http://make.wordpress.org/core/2013/03/13/the-road-to-3-6-beta-1/">beta 1 de WordPress 3.6 (en)</a> est déjà en ligne de mire.</p>\n<h3>WordPress.tv est ouvert</h3>\n<p><a href="http://www.wphub.com/wordpress-tv-video-submissions/">Dorénavant </a>vous pouvez publier<a href="http://wptvblog.wordpress.com/2013/03/18/get-involved/"> vos vidéos WordPress vous-mêmes sur wordpress.tv</a>.</p>\n<h3>BuddyPress 1.7 beta 2</h3>\n<p>La version de BuddyPress que tout le monde attend avec impatience est presque prête. <a href="http://buddypress.org/2013/03/buddypress-1-7-beta-2/">La beta 2 a été lancée dans la semaine dernière (en)</a>. A vous de tester !</p>\n<h3>BP Code Snippets est prêt pour BP 1.7</h3>\n<p>iMath <a href="http://imathi.eu/2013/03/15/bp-code-snippets-2-1/">annonce que l’extension BP Code Snippets</a> est parée pour BuddyPress 1.7.</p>\n<h3>WordSesh : 24 H de live WordPress</h3>\n<p><a href="http://wordsesh.org/">WordSesh (en) </a>est un projet qui va voir se relayer durant 24 heures des orateurs qui vont aborder WordPress. Ce sera le 13 avril prochain.</p>\n<h3>Premier meetup de développeurs de Genève</h3>\n<p>La semaine dernière a eu lieu le premier meetup de développeurs à Genève. <a href="http://ms-studio.net/notes/first-wp-developer-meetup-in-geneva/">Retour sur l’événement par Manuel (en)</a>. Rejoignez la <a href="http://www.meetup.com/geneva-wordpress/">communauté locale</a>.</p>\n<h3>Un stage chez Automattic ?</h3>\n<p>Si vous êtes intéressés par un stage cet été, envoyé un CV à Automattic. <a href="http://vip.wordpress.com/2013/03/13/intern-201/">Ils recherchent un stagiaire pour l’été (en).</a></p>\n<h3>De Google Reader vers WordPress.com</h3>\n<p>Si Google vous laisse orphelin après la fermeture annoncée de son Reader… <a href="http://en.blog.wordpress.com/2013/03/15/google-reader/">WordPress.com vous propose de le remplacer (en)</a>.</p>\n<h3>45 tutos pour designers</h3>\n<p>Un récapitulatif de 45 tutoriels pour Designer dans WordPress <a href="http://www.creativebloq.com/web-design/wordpress-tutorials-designers-1012990">peut toujours servir (en)</a>.</p>\n<h3>Des thèmes WooCommerce multilingues</h3>\n<p>Pour les utilisateurs de WooCommerce à la recherche de thèmes multilingues, <a href="http://wp-multilingual.com/fr/themes-wordpress-multilingue/themes-woocommerce-multilingue/">votre bonheur est derrière ce lien</a> (en).</p>\n<h3>Pourquoi utiliser WordPress ?</h3>\n<p><a href="http://kimgarst.com/why-oh-why-should-use-wordpress">Les réponses ici (en)</a>.</p>\n<h3>Les champs personnalisés : attention à la performance</h3>\n<p>Marie-Aude explique <a href="http://www.lumieredelune.com/encrelune/champs-personnalises-performance-wordpres,2013,03">comment utiliser efficacement les champs personnalisés</a>.</p>\n<h3>2 requêtes SQL pour faire le ménage</h3>\n<p>Toujours en quête d’optimisation, voici une astuce qui peut<a href="http://tweetpress.fr/codewp/nettoyer-transients/"> s’avérer utile en 2 requêtes SQL</a>.</p>\n<h3>Meilleur référencement avec les flux RSS</h3>\n<p>GeekPress explique comment <a href="http://www.geekpress.fr/wordpress/extension/backlinks-flux-rss-1827/">mieux utiliser les flux RSS</a> afin de gagner en référencement.</p>\n<h3>Utiliser les conditions dans le contenu des billets</h3>\n<p>C’est une extension qui va permettre cela et <a href="http://www.echodesplugins.fr/plugins/wp-conditional-shortcodes/">c’est l’écho des plugins qui vous en parle</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ZGsNXteab9I:2RFyhCZ7htY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ZGsNXteab9I:2RFyhCZ7htY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=ZGsNXteab9I:2RFyhCZ7htY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ZGsNXteab9I:2RFyhCZ7htY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ZGsNXteab9I:2RFyhCZ7htY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=ZGsNXteab9I:2RFyhCZ7htY:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/ZGsNXteab9I" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:99:"http://www.wordpress-fr.net/2013/03/20/lhebdo-wordpress-n179-wordpress-tv-wp-bp-beta-wordsesh/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"8";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:94:"http://www.wordpress-fr.net/2013/03/20/lhebdo-wordpress-n179-wordpress-tv-wp-bp-beta-wordsesh/";s: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:63:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"L’Hebdo WordPress n°178 : Apéro Lille – WordCamp Europe – 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:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/81ngebJIp0c/";s: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:70:"http://www.wordpress-fr.net/2013/03/12/lhebdo-wordpress-n178/#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, 12 Mar 2013 06:49: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:8:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:4:"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:"";}i:2;a:5:{s:4:"data";s:14:"Développement";s: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:9:"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:"";}i:4;a:5:{s:4:"data";s:10:"Extensions";s: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:5:{s:4:"data";s:9:"glotpress";s: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:5:{s:4:"data";s:5:"Hebdo";s: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:5:{s:4:"data";s:13:"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:35:"http://www.wordpress-fr.net/?p=5616";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:347:"Apéro WP à Lille Jeudi aura lieu à Lille une rencontre autour de WordPress. Toutes les informations sont consultables ici. Le WordCamp Europe est annoncé Une date et un lieu sont enfin annoncés pour le WordCamp Europe. Toutes les infos à connaitre sont sur cette page (en). Générateur de fichiers Utile lorsque l’on veut créer [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:3609:"<h3>Apéro WP à Lille</h3>\n<p>Jeudi aura lieu à Lille une rencontre autour de WordPress. Toutes les informations sont <a href="https://www.facebook.com/events/331874123579646/?fref=ts">consultables ici</a>.</p>\n<h3>Le WordCamp Europe est annoncé</h3>\n<p>Une date et un lieu sont enfin annoncés pour le WordCamp Europe. <a href="http://2013.europe.wordcamp.org/wordcamp-europe-date-and-location/">Toutes les infos à connaitre sont sur cette page (en)</a>.</p>\n<h3>Générateur de fichiers</h3>\n<p>Utile lorsque l’on veut créer des fichiers WordPress rapidement, découvrez ce <a href="http://generatewp.com">générateur de fichiers (en)</a> en ligne.</p>\n<h3>WordPress 3.6</h3>\n<p>Le développement se poursuit et on découvre une nouvelle fonctionnalité annoncée, celle de l’amélioration de la sauvegarde automatique et surtout le <a href="http://make.wordpress.org/core/2013/03/06/autosave-and-post-locking-35/">blocage de la rédaction (en)</a> lorsqu’un autre rédacteur est déjà sur l’article en cours. Une fenêtre apparaitra pour signaler cela.</p>\n<p>On parle aussi de l’avenir de l’<a href="http://wprealm.com/blog/admin-panel-what-does-the-future-hold/">interface d’administration (en)</a>.</p>\n<h3>GlotPress revient</h3>\n<p><a href="http://blog.glotpress.org/2013/03/08/a-few-hours-ago-we-had-our-first/">Les discussions (en) </a>autour du projet de traduction GlotPress sont de retour.</p>\n<h3>Cacher le nom d’admin</h3>\n<p>C’est maintenant possible de cacher le nom d’admin afin de sécuriser davantage votre installation. <a href="http://wordpress.org/extend/plugins/user-name-security/ ">Ceci grâce à l’extension de Daniel Roch (en)</a>.</p>\n<h3>Débusquer les thèmes cryptés</h3>\n<p><a href="http://www.apprentiphotographe.ch/debusquez-les-themes-wordpress-cryptes/">Une méthode simple et pratique </a>pour débusquer les thèmes cryptés qui passe par l’installation d’une extension.</p>\n<p>WordPress en mode « debug »</p>\n<p><a href="http://tweetpress.fr/screencast/debug-wordpress/">Comment utiliser WordPress en mode débogage</a>, Julien nous explique tout.</p>\n<h3>Rétablir le javascript dans l’admin</h3>\n<p>Si le javascript a disparu de votre admin, <a href="http://wpchannel.com/corriger-bug-aucun-javascript-administration-wordpress/">voici la solution</a>.</p>\n<h3>Wysija : la newsletter facile</h3>\n<p>Wysija est une extension permettant la gestion de newsletter. <a href="http://wpformation.com/wysija-newsletter-plugin-wordpress/">Présentation par Fabrice Ducarme</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=81ngebJIp0c:h3Fma4JnQqY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=81ngebJIp0c:h3Fma4JnQqY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=81ngebJIp0c:h3Fma4JnQqY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=81ngebJIp0c:h3Fma4JnQqY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=81ngebJIp0c:h3Fma4JnQqY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=81ngebJIp0c:h3Fma4JnQqY:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/81ngebJIp0c" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:66:"http://www.wordpress-fr.net/2013/03/12/lhebdo-wordpress-n178/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:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:61:"http://www.wordpress-fr.net/2013/03/12/lhebdo-wordpress-n178/";s: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:60:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:63:"L’Hebdo WordPress n°177 : AgoraCMS – Jetpack – DZWebdays";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/xZBh24i-qro/";s: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:87:"http://www.wordpress-fr.net/2013/03/05/lhebdo-n177-agoracms-jetpack-dzwebdays/#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, 05 Mar 2013 06:14:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:7:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:"Evènements";s: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:15:"Référencement";s: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:9:"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:"";}i:4;a:5:{s:4:"data";s:5:"hacks";s: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:5:{s:4:"data";s:5:"Hebdo";s: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:5:{s:4:"data";s:7:"Jetpack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=5608";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:431:"AgoraCMS : Appel à conférenciers Le 15 mai 2013 aura lieu l’AgoraCMS. Des conférences autours de tous les CMS seront au programme. L’appel aux orateurs est lancé. Dépêchez-vous, c’est jusqu’au 15 mars ! Jetpack 2.2 se facebookise Jetpack 2.2 (en) inaugure effectivement la fonction qui a rendu Facebook célèbre, le fameux « Like » ou « j’aime » 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:5761:"<h3>AgoraCMS : Appel à conférenciers</h3>\n<p><a href="http://www.agoracms.com/appel-a-conferenciers-agoracms/">Le 15 mai 2013 aura lieu l’AgoraCMS</a>. Des conférences autours de tous les CMS seront au programme. L’appel aux orateurs est lancé. Dépêchez-vous, c’est jusqu’au 15 mars !</p>\n<h3>Jetpack 2.2 se facebookise</h3>\n<p><a href="http://jetpack.me/2013/02/26/jetpack-2-2-likes/">Jetpack 2.2 (en)</a> inaugure effectivement la fonction qui a rendu Facebook célèbre, le fameux « Like » ou « j’aime » en français. Il est désormais possible « d’aimer » tous les articles de blogs équipés par cette fonctionnalité. Les Gravatars des likers seront même affichés.</p>\n<h3>Les DZWebdays</h3>\n<p>Il y a quelques jours se sont déroulés les <a href="http://www.youtube.com/watch?v=kv-xtLSHcrU">DZWebdays en Algérie</a>. Un moyen pour la communauté WordPress algérienne de faire parler d’elle. Des français étaient présents.</p>\n<h3>WordPress en cuisine</h3>\n<p><a href="http://blog.whodunit.fr/2013/02/comment-wordpress-fonctionne/">Une infographie récapitule </a>façon recette de cuisine le fonctionnement de WordPress.</p>\n<h3>Des hacks pour améliorer la section commentaires</h3>\n<p>Si vous souhaitez apporter des modifications à la section des commentaires de votre site, jetez un œil<a href="http://www.catswhocode.com/blog/wordpress-snippets-hacks-and-tips-to-enhance-your-comments-section"> sur cet article (en)</a>.</p>\n<h3>WooCommerce, branche 2.X en français</h3>\n<p>WooCommerce 2.0 vient de sortir, <a href="http://www.absoluteweb.net/blog/woocommerce-2-en-francais-french-version">la version française arrive également</a> parle même chemin.</p>\n<h3>La gestion des médias depuis WordPress 3.5</h3>\n<p>Grégoire revient sur la <a href="http://www.gregoirenoyelle.com/tuto/wordpress-gestion-medias-version-3-5/">nouvelle interface du gestionnaire de média,</a> apparu depuis la version 3.5.</p>\n<h3>Afficher le lien de l’article dans l’extrait</h3>\n<p>Si vous avez besoin d’afficher <a href="http://wpchannel.com/afficher-lien-extrait-wordpress/">le lien de l’article dans l’extrait</a> de ce dernier, voici la méthode selon WP Channel.</p>\n<h3>Role Scoper : une extension qui gère les droits et rôles</h3>\n<p><a href="http://www.absoluteweb.net/blog/role-scoper-extension-wordpress">Explications concrètes de l’utilisation de l’extension Role Scoper</a> pour un site d’une école par AbsoluteWeb.</p>\n<h3>Optimiser WordPress : Checklist après installation</h3>\n<p>L’installation de WordPress n’est que le début d’une procédure qui doit respecter quelques étapes pour assurer une efficacité. <a href="http://wpformation.com/optimiser-wordpress-checklist-installation/">Fabrice nous en dit plus</a>.</p>\n<h3>Désignez votre site sur WordPress préféré</h3>\n<p><a href="http://tooply.com/top/UDMQ5441?item=3920">Un top de 13 sites parlant de WordPress</a> a été créé. Vous pouvez voter pour votre ou vos sites préférés. Allez-y… votez !</p>\n<h3>Afficher la date de péremption d’un article</h3>\n<p>Il peut être intéressant parfois d’indiquer à ses lecteurs que l’<a href="http://tweetpress.fr/codewp/eviter-deprecated/">article qu’ils ont sous les yeux n’est pas de première jeunesse</a>, les explications sont données par Julien.</p>\n<h3>Ajouter un forum bbPress à son site</h3>\n<p>WPBeginner explique <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-a-forum-in-wordpress-with-bbpress/">comment intégrer bbPress (en)</a> pour créer un forum sur son site WordPress.</p>\n<h3>WordPress en mode communautaire</h3>\n<p><a href="http://4h18.com/buddypress/">4h18 présente ce qu’est BuddyPress</a>.</p>\n<h3>BuddyPress : l’interface des groupes d’admin</h3>\n<p>Dans sa nouvelle version 1.7, BuddyPress va intégrer <a href="http://codex.buddypress.org/developer/plugin-development/extend-groups-admin-ui/">les groupes d’admin, revue de fonction (en)</a>.</p>\n<h3>Interview de Daniel Roch</h3>\n<p>On ne présente plus Daniel Roch de SEOMix, cependant Alexandra Martin pense que cela va mieux en le disant <a href="http://www.miss-seo-girl.com/daniel-roch-et-le-seo-wordpress/">donc elle a interviewé Daniel.</a></p>\n<h3>Les shortcodes</h3>\n<p>On n’en entend pas beaucoup parler, et pourtant ils sont très pratiques dans l’utilisation d’un site WordPress. <a href="http://wpformation.com/puissance-shortcodes-wordpress/">Les shortcodes vont permettre l’application de diverses fonctions</a> très facilement juste en saisissant quelques caractères.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=xZBh24i-qro:az-Qcb9tkDU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=xZBh24i-qro:az-Qcb9tkDU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=xZBh24i-qro:az-Qcb9tkDU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=xZBh24i-qro:az-Qcb9tkDU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=xZBh24i-qro:az-Qcb9tkDU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=xZBh24i-qro:az-Qcb9tkDU:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/xZBh24i-qro" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:83:"http://www.wordpress-fr.net/2013/03/05/lhebdo-n177-agoracms-jetpack-dzwebdays/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"14";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:78:"http://www.wordpress-fr.net/2013/03/05/lhebdo-n177-agoracms-jetpack-dzwebdays/";s: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:57:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:55:"L’Hebdo WordPress n°176 : iOS – Battle – Twitter";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/Dm4gzlEST-w/";s: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:90:"http://www.wordpress-fr.net/2013/02/26/lhebdio-wordpress-n176-ios-battle-twitter/#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, 26 Feb 2013 06:13:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:6:{i:0;a:5:{s:4:"data";s:4:"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:"";}i:1;a:5:{s:4:"data";s:7:"Astuces";s: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:5:"Hebdo";s: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:9:"interview";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:3:"iOS";s: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:5:{s:4:"data";s:17:"responsive design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=5592";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:351:"WordPress pour iOS 3.5 L’application pour mobile iOS évolue encore et passe en version 3.5. (en) 9 extensions pour bien intégrer les réseaux sociaux Daniel Roch intervient sur le JDN pour présenter 9 extensions pour bien intégrer les réseaux sociaux. WordPress vs Joomla! Hier à la Cantine de Nantes se tenait la première battle de [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:4250:"<h3>WordPress pour iOS 3.5</h3>\n<p>L’application pour mobile iOS évolue encore et<a href="http://wpiphone.wordpress.com/2013/02/22/version-3-5-is-here-draft-previews-autosave-and-more/"> passe en version 3.5. (en)</a></p>\n<h3>9 extensions pour bien intégrer les réseaux sociaux</h3>\n<p><a href="http://www.journaldunet.com/solutions/saas-logiciel/wordpress-extensions-pour-les-reseaux-sociaux/">Daniel Roch intervient sur le JDN</a> pour présenter 9 extensions pour bien intégrer les réseaux sociaux.</p>\n<div id="attachment_5593" class="wp-caption alignleft" style="width: 220px"><a href="http://www.wordpress-fr.net/wp-content/uploads/2013/02/wordpress-vs-joomla.jpg"><img class=" wp-image-5593 " alt="WordPress contre Joomla!" src="http://www.wordpress-fr.net/wp-content/uploads/2013/02/wordpress-vs-joomla.jpg" width="210" height="314" /></a><p class="wp-caption-text">Les voies des CMS sont impénétrables</p></div>\n<h3>WordPress vs Joomla!</h3>\n<p>Hier à la Cantine de Nantes se tenait la première battle de CMS organisée par la communauté WordPress de Nantes. <a href="http://cantine.atlantic2.org/evenements/wordpress-vs-joomla/">WordPress contre Joomla!</a> ! Le combat entre les deux CMS concurrents a eu lieu. A l’heure où j’écris ces lignes je ne connais pas les scores ni le résultat final. WordPress a forcément toutes ses chances. Si un résumé de l’événement est réalisé par la communauté WP-Nantes, je vous en parlerais ici la semaine prochaine. Restez connectés !</p>\n<h3>WordPress Classrooms</h3>\n<p><a href="http://www.wphub.com/wordpress-com-classrooms/">WordPress.com met en place un nouveau service premium (en)</a> destiné aux écoles. Il est question de créer un site web, ou plutôt une interface de travail, d’échange entre les professeurs, les parents et les élèves : <a href="http://en.blog.wordpress.com/2013/02/20/classrooms/">WordPress Classrooms (en).</a></p>\n<h3>Migration d’un serveur vers un autre</h3>\n<p style="text-align: left;">La migration d’un site d’un serveur vers au autre est toujours une opération délicate. <a href="http://www.icollec.com/wwSplashgeek/migration-site-blog-wordpress-serveur-vers-nouveau-serveur/">Un peu d’aide est forcément la bienvenue</a>.</p>\n<h3 style="text-align: left;">10 solutions pour faire du « responsive »</h3>\n<p style="text-align: left;"><a href="http://speckyboy.com/2013/01/30/more-responsive-navigation-solutions/">10 solutions pour faire de votre site un site responsive (en)</a> se trouve dans cette page.</p>\n<h3 style="text-align: left;">Interview d’un best seller</h3>\n<p style="text-align: left;"><a href="http://remicorson.com/interview-of-codecanyon-best-seller/">Rémi Corson interview un des best seller (en)</a> du site CodeCanyon.</p>\n<h3 style="text-align: left;">Twitter et WordPress : nouvelles régles en 2013</h3>\n<p style="text-align: left;">Twitter évolue et change quelques règles du jeu. <a href="http://wpformation.com/twitter-wordpress-regles-2013">WordPress doit donc suivre le mouvement</a> pour rester le meilleur ami de Twitter.</p>\n<p style="text-align: left;"><em><strong>Crédit dessin</strong> </em>: Panix</p>\n<p style="text-align: left;">\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Dm4gzlEST-w:QEMV7XOM3bI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Dm4gzlEST-w:QEMV7XOM3bI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=Dm4gzlEST-w:QEMV7XOM3bI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Dm4gzlEST-w:QEMV7XOM3bI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Dm4gzlEST-w:QEMV7XOM3bI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=Dm4gzlEST-w:QEMV7XOM3bI:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/Dm4gzlEST-w" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:86:"http://www.wordpress-fr.net/2013/02/26/lhebdio-wordpress-n176-ios-battle-twitter/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"16";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:81:"http://www.wordpress-fr.net/2013/02/26/lhebdio-wordpress-n176-ios-battle-twitter/";s: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:57:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:78:"L’Hebdo WordPress n°175 : Twenty Thirteen – Interview – WordCamp Suisse";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/AdgTzwDjsPc/";s: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:102:"http://www.wordpress-fr.net/2013/02/19/lhebdo-wordpress-buddypress-interview-wordcamp-suisse/#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, 19 Feb 2013 06:27:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:6:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:14:"Développement";s: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:9:"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:"";}i:3;a:5:{s:4:"data";s:10:"BuddyPress";s: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:5:{s:4:"data";s:5:"Hebdo";s: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:5:{s:4:"data";s:9:"interview";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=5577";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:368:"175e Hebdo WordPress Si j’ai bien compté, aujourd’hui, il s’agit de mon 175e hebdo. C’est en effet, depuis avril 2009, que je fourni l’information WordPress sous cette forme régulière et sous ce nom d’Hebdo WordPress. Si l’on enlève les quelques semaines de pause par ci par là, le compte est bon ! Merci pour votre [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:5226:"<h3>175e Hebdo WordPress</h3>\n<p>Si j’ai bien compté, aujourd’hui, il s’agit de mon 175e hebdo. C’est en effet, depuis avril 2009, que je fourni l’information WordPress sous cette forme régulière et sous ce nom d’Hebdo WordPress. Si l’on enlève les quelques semaines de pause par ci par là, le compte est bon !<br />\nMerci pour votre fidélité, amis lecteurs !</p>\n<h3>Twenty Thirteen se révèle</h3>\n<p><a href="http://make.wordpress.org/core/2013/02/18/introducing-twenty-thirteen/">WordPress 3.6 aura son thème : Twenty Thirteen (en)</a>. Une démo est <a href="http://twentythirteendemo.wordpress.com/">déjà disponible en ligne</a>.</p>\n<h3>BuddyPress 1.7 beta 1</h3>\n<p>La version tant attendue de BuddyPress,<a href="http://buddypress.org/2013/02/buddypress-1-7-beta-1/"> c’est-à-dire la 1.7 arrive en beta (en)</a>.</p>\n<h3>Un logo pour le WordCamp Suisse</h3>\n<p>Un logo pour le WordCamp Suisse 2013 est né de l’imagination de Francis Chouquet. <a href="http://dribbble.com/shots/897277-WordCamp-Switzerland-2013">Sympa le couteau suisse (en)</a> !</p>\n<h3>Autoriser la prévisualisation des articles</h3>\n<p>Un article en cours de rédaction peut être visualisé par les administrateurs du site… comment rendre ce brouillon lisible par un tiers ?<a href="http://www.geekpress.fr/wordpress/astuce/autoriser-previsualisation-articles-visiteurs-1798/"> La réponse de Julio</a>.</p>\n<h3>Un développeur WordPress à la Une</h3>\n<p>Rémi Corson, récent orateur du WordCamp paris 2013, se dévoile un peu plus au travers d’une <a href="http://wpformation.com/developpeur-wordpress-a-la-une/">interview chez Fabrice Ducarme</a>, autre récent orateur du même WordCamp. <em>Au passage, Fabrice… ne désespère pas, c’est pour bientôt !</em></p>\n<h3>Du local au distant</h3>\n<p>Des tutoriels expliquant la démarche pour porter un site développé en local vers son hébergement distant définitif, il en existe beaucoup, et j’en ai même déjà diffusé plusieurs ici, mais cela est touours utile, <a href="http://wplift.com/move-wordpress-from-localhost-to-server">donc en voici un autre (en)</a>.</p>\n<h3>Utiliser les catégories et tags pour les Custom Posts Types</h3>\n<p>WPChannel propose d’expliquer <a href="http://wpchannel.com/utiliser-tags-categories-custom-post-type-wordpress/">comment intégrer les catégories et les tags dans les CPT</a>.</p>\n<h3>Regénérer une taille d’image ou de vignettes</h3>\n<p><a href="http://www.wpbeginner.com/plugins/regenerate-thumbnails-new-image-sizes-wordpress/">Voici comment régénérer la taille de vos vignettes (en)</a> ou d’une taille d’image particulière.</p>\n<h3>Les transients dans WordPress</h3>\n<p>Un mot barbare, ça vous dit ? Eh bien en voilà un pas mal : Transient… <a href="http://www.seomix.fr/transient-wordpress/">c’est Daniel Roch qui vous dit tout à leur sujet</a>. (<em>Pour rassurer les petits du fonds… même moi je savais pas de quoi il s’agissait avant le WordCamp !</em>)</p>\n<h3>Pourquoi ne jamais uploader une vidéo dans WordPress</h3>\n<p>On le sait tous, héberger ses propres vidéos sur ses propres hébergeurs, n’est pas toujours une bonne idée. <a href="http://www.wpbeginner.com/beginners-guide/why-you-should-never-upload-a-video-to-wordpress/">On vous dit pourquoi (en)</a>.</p>\n<h3>VaultPress vous aide à mieux vous protéger</h3>\n<p>VaultPress, service premium d’Automattic propose dès à présent de <a href="http://blog.vaultpress.com/2013/02/18/vaultpress-salts/">sécuriser automatiquement (en)</a> les sites web.</p>\n<h3>Démarrer sa place de marché WordPress</h3>\n<p>Si vous voulez vous lancer dans la création d’une place de marché avec WordPress, <a href="http://mattreport.com/how-to-start-your-own-wordpress-marketplace/">consultez cet article (en)</a>.</p>\n<p><em>NB : Je commence une nouvelle « expérimentation » dans cet hebdo, à savoir le marquage des liens anglais en indiquant (en). N’hésitez pas à dire si cela convient pour mieux déterminer les contenus anglophones. Les liens français n’ont pas de précisions.</em></p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=AdgTzwDjsPc:XgaUnpjvjGY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=AdgTzwDjsPc:XgaUnpjvjGY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=AdgTzwDjsPc:XgaUnpjvjGY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=AdgTzwDjsPc:XgaUnpjvjGY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=AdgTzwDjsPc:XgaUnpjvjGY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=AdgTzwDjsPc:XgaUnpjvjGY:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/AdgTzwDjsPc" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:98:"http://www.wordpress-fr.net/2013/02/19/lhebdo-wordpress-buddypress-interview-wordcamp-suisse/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"26";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:93:"http://www.wordpress-fr.net/2013/02/19/lhebdo-wordpress-buddypress-interview-wordcamp-suisse/";s: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:69:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:55:"L’Hebdo WordPress : Mobile – VaultPress – bbPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/Xs6taUZaoZM/";s: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:91:"http://www.wordpress-fr.net/2013/02/12/lhebdo-wordpress-mobile-vaultpress-bbpress/#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, 12 Feb 2013 06:27: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:8:"category";a:10:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:10:"Extensions";s: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:7:"Thèmes";s: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:21:"WordPress underground";s: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:5:{s:4:"data";s:7:"bbPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:10:"blackberry";s: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:5:{s:4:"data";s:10:"BuddyPress";s: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:5:{s:4:"data";s:5:"Hebdo";s: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:5:{s:4:"data";s:3:"iOS";s: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:5:{s:4:"data";s:7:"Jetpack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=5563";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:371:"WordPress pour iOS 3.4 La version 3.4 de WordPress pour iOS est dans les bacs. Parmi les nouveautés, un système de notifications. WordPress pour BlackBerry et Playbook en version 2.2.6 Possesseur de mobiles BlackBerry et/ou de tablettes Playbook, réjouissez-vous, WordPress est mis à jour pour vous avec la version 2.2.6 qui est disponible. Offre d’emploi [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:7906:"<div id="attachment_5564" class="wp-caption alignleft" style="width: 310px"><a href="http://www.wordpress-fr.net/wp-content/uploads/2013/02/wordpress-sur-smartphone.jpg"><img class="size-medium wp-image-5564" alt="wordpress sur smartphone" src="http://www.wordpress-fr.net/wp-content/uploads/2013/02/wordpress-sur-smartphone-300x272.jpg" width="300" height="272" /></a><p class="wp-caption-text">WordPress depuis votre téléphone évolue…</p></div>\n<h3>WordPress pour iOS 3.4</h3>\n<p><a href="http://ios.wordpress.org/2013/02/04/version-3-4/">La version 3.4 de WordPress pour iOS </a>est dans les bacs. Parmi les nouveautés, <a href="http://en.blog.wordpress.com/2013/02/11/mobile-notifications/">un système de notifications</a>.</p>\n<h3>WordPress pour BlackBerry et Playbook en version 2.2.6</h3>\n<p>Possesseur de mobiles BlackBerry et/ou de tablettes Playbook, réjouissez-vous, <a href="http://blackberry.wordpress.org/2013/02/05/version-2-2-6/">WordPress est mis à jour pour vous avec la version 2.2.6 </a>qui est disponible.</p>\n<h3>Offre d’emploi chez Automattic</h3>\n<p><a href="http://automattic.com/jobs/mobile-ui-designer/">Automattic recherche un « mobile UI designer »</a>. Autrement dit un designer pour interface utilisateur des applications mobiles.</p>\n<h3>bbPress 2.3 enchaine les betas</h3>\n<p><a href="http://bbpress.org/blog/2013/01/bbpress-2-3-beta-1/">Après la beta 1</a>, la <a href="http://bbpress.org/blog/2013/02/bbpress-2-3-beta-2/">beta 2</a> arrive dans la foulée.</p>\n<h3>VaultPress : Restaurer une sauvegarde sur un nouveau site</h3>\n<p>VaultPress, le service de sauvegarde premium fourni par Automattic vient de lancer une nouvelle fonctionnalité. <a href="http://blog.vaultpress.com/2013/02/05/restore-to-a-new-site/">Il est désormais possible de restaurer une sauvegarde sur un nouveau site</a>.</p>\n<h3>Jetpack 2.1.2</h3>\n<p><a href="http://jetpack.me/2013/02/04/jetpack-2-1-2/">Jetpack arrive en version 2.1.2</a>. Parmi les nouveautés, vous pourrez découvrir le défilement infini de votre page d’accueil.</p>\n<h3>2012, une année de tous les records pour les WordCamps</h3>\n<p><a href="http://www.wphub.com/wordcamp-2012-stats-another-record-year/">2012 aura été l’année de tous les records en terme d’organisation de WordCamps</a> tout autour du monde. Tout le monde s’y met. La communauté se renforce chaque jour.</p>\n<h3>La traduction de BuddyPress progresse</h3>\n<p>Le travail de traduction de BuddyPress avance… <a href="http://byotos.com/2013/02/11/buddypress-translations-1-6f/">et il n’y en a pas que pour le français</a>.</p>\n<h3>BuddyPress pas-à-pas : partie 3</h3>\n<p>La semaine dernière nous avions vu les 2 premières parties de BuddyPress pas-à-pas par Mathieu Viet, <a href="http://wpformation.com/buddypress-tutorial-pas-a-pas-3/">voici la 3e partie</a>.</p>\n<h3>BuddyPress 1.7 arrive avec de bonnes nouvelles</h3>\n<p>C’est ce que veux nous dire WP Realm dans son article qui <a href="http://wprealm.com/blog/buddypress-1-7-comes-with-shiny-new-features/?fb_source=pubv1">présentent les nouveautés </a>du futur de l’extension sociale de WordPress.</p>\n<h3>WordPress by Dre</h3>\n<p>Cela faisait bien longtemps que WordPress n’avait pas eu les honneurs d’un rap. <a href="http://wprealm.com/blog/dont-forget-about-dre-the-wordpress-edition/">Et quand cela est fait par Dre</a>, on peut dire que c’est le must ? … ou presque car non, ce n’est pas le Dre auquel vous pensez, mais <a href="http://dre.im/">celui-ci</a>. (<em>attention, il semble que Firefox rencontre des problèmes pour lire le son</em>)</p>\n<h3>Chargez vos scripts en asynchrone</h3>\n<p>Daniel Roch et Willy Bahuaud <a href="http://www.seomix.fr/wp-deferred-javascript/">viennent de réaliser une extension</a> qui va vous permettre de ne charger les javascripts que lorsqu’ils sont utiles.</p>\n<h3>11 extensions utiles en 2013</h3>\n<p>Voici une liste de<a href="http://www.instantshift.com/2013/02/07/11-wordpress-plugins-that-will-get-your-site-ready-for-2013/"> 11 extensions </a>qui vous feront gagner du temps en 2013.</p>\n<h3>10 thèmes responsives et gratuits de janvier 2013</h3>\n<p><a href="http://wptheme.fr/10-themes-wordpress-responsive-gratuit-janvier-2013/">Une liste de thèmes gratuits</a> est déjà une bonne nouvelle, mais si les thèmes proposés sont responsives c’est une excellente nouvelle.</p>\n<h3>Comment suivre les liens vers votre site avec Google Analytics</h3>\n<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-track-links-in-wordpress-using-google-analytics/">Cet article explique comment configurer Google Analytics </a>pour mieux suivre les liens vers votre site. Quelques conseils de SEO donc.</p>\n<h3>WordPress vs Joomla! en 2013</h3>\n<p><a href="http://redgiantdesign.co.za/rg-design-blog/wordpress-vs-joomla-2013-infographic.html">Une infographie essaie de dresser un bilan </a>comparatif entre WordPress et Joomla!.</p>\n<h3>Que devons-nous attendre de WordPress 3.6 ?</h3>\n<p><a href="http://www.webdesignerdepot.com/2013/02/what-we-can-expect-from-wordpress-3-6/">Un nouvel article</a> propose un récapitulatif de ce que sera WordPress 3.6.</p>\n<h3>Quelles extensions sont utilisées sur un site ?</h3>\n<p><a href="http://www.wpjedi.com/how-to-find-out-what-wordpress-plugins-a-site-is-using/">Découvrez quelles extensions sont utilisées </a>par les sites que vous visitez en vous servant de cette astuce.</p>\n<h3>Rediriger automatiquement par une 301</h3>\n<p>Si une page ou un contenu de votre site vient a être indisponible pour une raison données, afin d’éviter les erreurs 404, pensez à <a href="http://wordpress.org/extend/plugins/auto-redirect-404/">mettre une redirection automatique</a> via une redirection 301.</p>\n<h3>Un système de réservation en ligne.</h3>\n<p>Si vous avez besoin de mettre en place un système de réservation en ligne, <a href="http://wpformation.com/systeme-reservation-ligne-wordpress/">suivez les explications de Fabrice</a>.</p>\n<h3>Les 30 plus populaires extensions de WordPress</h3>\n<p>Une infographie qui retracent les 30 plus populaires extensions de WordPress, ça vous intéresse ? Eh bien, <a href="http://www.crack-net.com/2013/02/infographie-les-30-meilleurs-plugins-wordpress.html">suivez ce lien</a> !</p>\n<h3>Comment migrer de wordpress.com vers WordPress ?</h3>\n<p>La question se pose beaucoup par les personnes ayant commencer à trvailler sur un blog ouvert sur le service wordpress.com et qui se rendent compte bien vite que les murs sont trop étroits. Il faut alors penser à déménager vers une solution hébergée par ses soins et installer WordPress soi-même. <a href="http://wptribe.net/how-to-move-wordpress-to-self-hosted-domain/">La migration peut alors commencer.</a></p>\n<p><em><strong>Crédit dessin</strong> : Panix</em></p>\n<p> </p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Xs6taUZaoZM:IGSYGPe9iqw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Xs6taUZaoZM:IGSYGPe9iqw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=Xs6taUZaoZM:IGSYGPe9iqw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Xs6taUZaoZM:IGSYGPe9iqw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Xs6taUZaoZM:IGSYGPe9iqw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=Xs6taUZaoZM:IGSYGPe9iqw:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/Xs6taUZaoZM" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:87:"http://www.wordpress-fr.net/2013/02/12/lhebdo-wordpress-mobile-vaultpress-bbpress/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:82:"http://www.wordpress-fr.net/2013/02/12/lhebdo-wordpress-mobile-vaultpress-bbpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:60:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"L’Hebdo WordPress : BuddyPress – Communauté – Titres";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/Tg0M6PabNZY/";s: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:94:"http://www.wordpress-fr.net/2013/02/05/lhebdo-wordpress-buddypress-communaute-titres/#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, 05 Feb 2013 06:42:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:7:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:10:"Extensions";s: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:7:"Thèmes";s: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:9:"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:"";}i:4;a:5:{s:4:"data";s:10:"BuddyPress";s: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:5:{s:4:"data";s:11:"communauté";s: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:5:{s:4:"data";s:5:"Hebdo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=5497";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:368:"Du bon usage des titres Julien de TweetPress donne son avis sur l’utilisation des titres et de leur balise HTML <Hn>. BuddyPress : pas à pas Mathieu propose une série de tutoriels dédiés à BuddyPress. Découvrez les 2 premières parties. BuddyPress 1.7 : qu’en attendre ? Découvrez une présentation du futur BuddyPress 1.7 par WPCandy. [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:4313:"<h3>Du bon usage des titres</h3>\n<p>Julien de TweetPress donne son avis sur l’<a href="http://tweetpress.fr/codewp/usage-hn-wordpress/">utilisation des titres et de leur balise HTML <Hn></a>.</p>\n<div id="attachment_5498" class="wp-caption alignleft" style="width: 262px"><a href="http://www.wordpress-fr.net/wp-content/uploads/2013/02/buddypress-communaute.jpg"><img class=" wp-image-5498 " alt="Une communauté avec BuddyPress" src="http://www.wordpress-fr.net/wp-content/uploads/2013/02/buddypress-communaute.jpg" width="252" height="256" /></a><p class="wp-caption-text">Une communauté… avec BuddyPress</p></div>\n<h3>BuddyPress : pas à pas</h3>\n<p>Mathieu propose une série de tutoriels dédiés à BuddyPress. Découvrez les 2 <a href="http://wpformation.com/buddypress-en-mode-pas-a-pas/">premières</a> <a href="http://wpformation.com/buddypress-tutorial-pas-a-pas-2/">parties</a>.</p>\n<h3>BuddyPress 1.7 : qu’en attendre ?</h3>\n<p>Découvrez une présentation du futur <a href="http://wpcandy.com/reports/what-to-expect-from-buddypress-1-7/">BuddyPress 1.7 par WPCandy</a>.</p>\n<h3>Quand la communauté offre des conseils</h3>\n<p>Smashing Magazine nous offre une <a href="http://wp.smashingmagazine.com/2013/02/01/wordpress-community-offers-advice-beginners/">belle leçon de partage et de communautarisme</a> au bon sens du terme.</p>\n<h3>La pensée WordPress selon Julio</h3>\n<p>Nous connaissions la communauté WordPress… <a href="http://wpformation.com/la-pensee-wordpress/">découvrez la pensée WordPress</a>… selon Julio. Qui a dit que WordPress n’est pas une religion ? <img src=''http://www.wordpress-fr.net/wp-includes/images/smilies/icon_biggrin.gif'' alt='':D'' class=''wp-smiley'' /> </p>\n<h3>Des thèmes WordPress HTML5</h3>\n<p>Une liste de thèmes HTML5, ça faisait longtemps hein ? <em>(lien retiré pour cause d’affiliation)</em></p>\n<h3>La table périodique des extensions</h3>\n<p>Vous connaissez la table périodique des éléments qui regroupe les principaux éléments chimiques ? Et si on vous proposait la même chose avec les extensions WordPress… <a href="http://plugintable.com/">Vous y croiriez </a>?</p>\n<h3>20 extensions pro</h3>\n<p>Une sélection des 20 « meilleures » extensions pro.<em> (lien retiré pour cause d’affiliation)</em></p>\n<h3>Voyager et bloguer, ça vous dit ?</h3>\n<p>Haydée est une mordue de voyages. Elle a décidé de partager ses expériences touristiques en bloguant. Comme elle a aimé cela, elle a même décidé de retranscrire ses astuces de blogging dans un guide gratuit qu’elle met à disposition des internautes. <a href="http://www.travelplugin.com/guide-gratuit/">Tout le guide est construit à partir de WordPress</a>. Pour avoir rencontré (trop ?) brièvement cette aventurière lors du dernier WordCamp, je ne peux que vous inciter à le télécharger. Elle le mérite.</p>\n<p>(Aparté : « <em>Au fait, Haydée ? le retour en vélo sous la neige s’est bien passé ? »</em>)</p>\n<p><em><strong>Crédit dessin</strong> : <a href="http://panixdrawings.com/">Panix </a><br />\nRencontré au WordCamp Paris, Panix s’est proposé de réaliser quelques illustrations pour mon hebdo. Sympa la communauté WordPress non ? Merci à lui.</em></p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Tg0M6PabNZY:fMS9f-ON9c8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Tg0M6PabNZY:fMS9f-ON9c8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=Tg0M6PabNZY:fMS9f-ON9c8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Tg0M6PabNZY:fMS9f-ON9c8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=Tg0M6PabNZY:fMS9f-ON9c8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=Tg0M6PabNZY:fMS9f-ON9c8:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/Tg0M6PabNZY" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:90:"http://www.wordpress-fr.net/2013/02/05/lhebdo-wordpress-buddypress-communaute-titres/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"24";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:85:"http://www.wordpress-fr.net/2013/02/05/lhebdo-wordpress-buddypress-communaute-titres/";s: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:60:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"WordCamp Paris 2013 : retour sur un succès";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/7poiGcfVquc/";s: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:86:"http://www.wordpress-fr.net/2013/02/03/wordcamp-paris-2013-retour-sur-succes/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 03 Feb 2013 18:09:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:7:{i:0;a:5:{s:4:"data";s:7:"Barcamp";s: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:4:"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:"";}i:2;a:5:{s:4:"data";s:8:"WordCamp";s: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:9:"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:"";}i:4;a:5:{s:4:"data";s:21:"WordPress Francophone";s: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:5:{s:4:"data";s:8:"wordcamp";s: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:5:{s:4:"data";s:13:"wordcampparis";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=5465";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:352:"Deux semaines (déjà !) se sont écoulées depuis la fin du 2e WordCamp Paris. Cet événement, qui est centré sur WordPress et son écosystème, s’est tenu sur 2 jours les 18 et 19 janvier dernier entre la Maison des Associations de Solidarité et les Studios Singuliers à Paris. Nous tenons, d’ailleurs, à remercier les équipes [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:23426:"<div class="wp-caption alignright" style="width: 190px"><img alt="WordCamp Paris 2013" src="https://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash4/187792_543846355643039_1753116372_n.jpg" width="180" height="262" /><p class="wp-caption-text">WordCamp Paris 2013</p></div>\n<p>Deux semaines (déjà !) se sont écoulées depuis la fin du<a href="http://2013.paris.wordcamp.org/"> 2e WordCamp Paris</a>. Cet événement, qui est centré sur WordPress et son écosystème, s’est tenu sur 2 jours les 18 et 19 janvier dernier entre la Maison des Associations de Solidarité et les Studios Singuliers à Paris. Nous tenons, d’ailleurs, à remercier les équipes de ces 2 lieux pour leur disponibilité et leur accueil.</p>\n<p>La première journée s’est organisée autour de 7 conférences tandis que le deuxième jour se voulait plus orienté communautaire avec un barcamp, des lightnings talks, des ateliers et beaucoup de discussions entre passionnés. Voici un résumé de ces 2 jours ainsi qu’un tour des réactions de participants trouvées ici et là sur la Toile…</p>\n<p>De l’aveu de toutes et tous, cet événement a été un véritable succès. En terme de fréquentation, nous avons presque triplé l’audience, en comparaison avec la première édition, fin 2011. Ce sont en effet plus de 250 personnes qui sont venues ce weekend, dont un peu plus de 200 juste pour la journée du vendredi. Qualitativement parlant, le contenu des conférences et de la journée communautaire ont été salués de tous. Il semble donc que nous ayons atteint nos objectifs de ce côté. Ceci associé à toutes les critiques positives et les encouragements que beaucoup ont su manifester, en tant qu’organisateurs, nous ne pouvons qu’être satisfaits. Et je vous assure que cela fait plaisir, que c’est motivant pour continuer. Merci à tout le monde !</p>\n<p>Notons que ces 2 jours ont été placés sur un coup du hasard sous le signe de la girafe… mais aussi sous celui du canard… Eh oui ! Chez WordPress Francophone nous aimons aussi les animaux ! Explications… mais surtout retour sur un weekend aux nombreux souvenirs :</p>\n<p><span id="more-5465"></span></p>\n<h3>Jeudi 17 janvier 2013 : une soirée « #wpcanard »</h3>\n<div class="wp-caption alignleft" style="width: 350px"><a href="https://pbs.twimg.com/media/BA15-RWCMAI1peD.jpg:large"><img class=" " title="Le canard pékinois" alt=" #wpcanard" src="https://pbs.twimg.com/media/BA15-RWCMAI1peD.jpg:small" width="340" height="255" /></a><p class="wp-caption-text">Le canard pékinois (et Gilles Vauvarin) – #wpcanard</p></div>\n<p>Initialement prévu pour regrouper les orateurs et les organisateurs autour d’un bon repas, la soirée de la veille de la conférence s’est transformée en retrouvailles avec également quelques orateurs de l’année passée et des membres de la communauté, le tout organisé de main de maître par Benjamin Lupu (orateur du WordCamp 2011). Réunis autour d’une table du Village Tao Tao, un restaurant chinois non loin de la place d’Italie dans le 13e arrondissement de Paris.</p>\n<p>Cette soirée entre connaissances a eu droit à ses petites plaisanteries, et fut rapidement placée sous le hashtag (oups… maintenant il faut dire « mot-dièse », <a href="http://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000026972451">c’est l’Académie qui l’a dit</a>) <a href="https://twitter.com/search?q=wpcanard&src=typd">#WPcanard</a>… Pourquoi ? Simplement parce que la spécialité des lieux est le canard pékinois. La motivation du groupe est telle que ce sont pas moins de 4 canards entiers qui ont été commandés… et engloutis… laissant les tenanciers de l’établissement sans voix ! Oui, certains passionnés de WordPress sont des gros mangeurs ! Il faut le savoir !</p>\n<p>Une manière sympathique et collégiale de mettre les orateurs dans le bain… même si certains ont dû se coucher vers 1h30 pour ensuite devoir être à l’ouverture de la salle à 7h… <img src=''http://www.wordpress-fr.net/wp-includes/images/smilies/icon_smile.gif'' alt='':)'' class=''wp-smiley'' /> </p>\n<h3>Vendredi 18 janvier 2013 : 7 conférences</h3>\n<div class="wp-caption alignright" style="width: 350px"><a href="https://pbs.twimg.com/media/BA4pwmeCAAA1YQ4.jpg:large"><img class=" " title="Une girafe à la MAS" alt="#wpgirafe" src="https://pbs.twimg.com/media/BA4pwmeCAAA1YQ4.jpg:small" width="340" height="255" /></a><p class="wp-caption-text">La girafe dans le hall de la MAS</p></div>\n<p>Petit apparté sur la sélection des orateurs… Le WordCamp, c’est avant tout une journée de conférences. Pour cela, il fallait réunir 7 orateurs pour autant de conférences — malheureusement, l’organisation de la journée ne permettait pas d’avoir plus de sessions, notamment la table ronde qui avait clôt le WordCamp Paris 2011. Un appel à donc été lancé sur wordpress-fr.net afin de recevoir des propositions de conférences. Ce sont quasiment 30 propositions qui ont été reçues ! Autant dire que la sélection s’annonçaient serrées… et elle l’a été ! Afin d’être le plus objectif possible, nous avons mis en place un mode opératoire basé sur une notation individuelle de chaque demande. Ainsi, une note de 0 à 3 a été attribuée à chacune des conférences par chaque membre de l’équipe. L’addition des 3 notes donnait la note finale. Un classement a été réalisé et les 7 premiers ont été sélectionnés.</p>\n<p>La journée s’est déroulée au sein de la <a href="http://www.mas-paris.fr/">Maison des Associations de Solidarité</a>, dans le 13e arrondissement de Paris. Un lieu qui aura surpris par sa dimension et une salle « impressionnante » (dixit les orateurs)… mais aussi qui aura laissé un souvenir improbable à chacun d’entre nous : une girafe empaillée trônait dans le hall d’entrée !</p>\n<p>Les conférences sélectionnées étaient les suivantes :</p>\n<ul>\n<ul>\n<li><a href="http://2013.paris.wordcamp.org/orateurs/#mathieu-viet-2">Mathieu Viet</a> : « <a href="http://2013.paris.wordcamp.org/session/buddypress-lutilisateur-au-coeur/">BuddyPress, l’utilisateur au cœur</a> »</li>\n</ul>\n</ul>\n<p><iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://fr.slideshare.net/slideshow/embed_code/16084137" height="356" width="427" allowfullscreen="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>\n<div style="margin-bottom: 5px;"><strong> <a title="BuddyPress, l&rsquo;utilisateur au coeur" href="http://fr.slideshare.net/imath/buddypress-lutilisateur-au-coeur" target="_blank">BuddyPress, l&rsquo;utilisateur au coeur</a> </strong> from <strong><a href="http://fr.slideshare.net/imath" target="_blank">imath </a></strong></div>\n<ul>\n<li><a href="http://2013.paris.wordcamp.org/orateurs/#daniel-roch">Daniel Roch</a> : « <a href="http://2013.paris.wordcamp.org/session/wordpress-et-le-referencement-naturel/">WordPress et le référencement naturel</a> »</li>\n</ul>\n<p><iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://fr.slideshare.net/slideshow/embed_code/16123058" height="356" width="427" allowfullscreen="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>\n<div style="margin-bottom: 5px;"><strong> <a title="Wordpress et referencement naturel - WordCamp Paris 2013, Daniel Roch" href="http://fr.slideshare.net/SeoMix/wordpress-et-referencement-naturel-wordcamp-paris-2013-daniel-roch" target="_blank">WordPress et referencement naturel – WordCamp Paris 2013, Daniel Roch</a> </strong> from <strong><a href="http://fr.slideshare.net/SeoMix" target="_blank">Daniel Roch</a></strong></div>\n<ul>\n<li><a href="http://2013.paris.wordcamp.org/orateurs/#remi-corson">Rémi Corson</a> : « <a href="http://2013.paris.wordcamp.org/session/utilisation-de-lexistant-sous-wordpress/">Utilisation de l’existant sous WordPress</a> »</li>\n</ul>\n<p><iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://fr.slideshare.net/slideshow/embed_code/16080505" height="356" width="427" allowfullscreen="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>\n<div style="margin-bottom: 5px;"><strong> <a title="Wordcamp Paris 2013" href="http://fr.slideshare.net/corsonr/wordcamp-paris-2013" target="_blank">Wordcamp Paris 2013</a> </strong> from <strong><a href="http://fr.slideshare.net/corsonr" target="_blank">corsonr</a></strong></div>\n<ul>\n<li><a href="http://2013.paris.wordcamp.org/orateurs/#gilles-vauvarin">Gilles Vauvarin</a> : « <a href="http://2013.paris.wordcamp.org/session/demystifier-wordpress-multisite/">Démystifier WordPress Multisite</a> »</li>\n</ul>\n<p><iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://fr.slideshare.net/slideshow/embed_code/16085361" height="356" width="427" allowfullscreen="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>\n<div style="margin-bottom: 5px;"><strong> <a title="Demystifier wordpress multisite" href="http://fr.slideshare.net/vauvarin/demystifier-wordpress-multisite" target="_blank">Demystifier wordpress multisite</a> </strong> from <strong><a href="http://fr.slideshare.net/vauvarin" target="_blank">Gilles Vauvarin</a></strong></div>\n<ul>\n<li><a href="http://2013.paris.wordcamp.org/orateurs/#fabrice-ducarme">Fabrice Ducarme</a> : « <a href="http://2013.paris.wordcamp.org/session/wordpress-et-le-e-commerce/">WordPress et le e-commerce</a> »</li>\n</ul>\n<p><iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://fr.slideshare.net/slideshow/embed_code/16097963" height="356" width="427" allowfullscreen="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>\n<div style="margin-bottom: 5px;"><strong> <a title="Conférence WordPress & E-commerce" href="http://fr.slideshare.net/ducarmefabrice/confrence-wordpress-ecommerce-16097963" target="_blank">Conférence WordPress & E-commerce</a> </strong> from <strong><a href="http://fr.slideshare.net/ducarmefabrice" target="_blank">Fabrice Ducarme</a></strong></div>\n<ul>\n<li><a href="http://2013.paris.wordcamp.org/orateurs/#julio-potier">Julio Potier</a> : « <a href="http://2013.paris.wordcamp.org/session/10-facons-de-casser-son-site-wordpress-et-de-le-reparer/">10 façons de casser son site WordPress et de le réparer</a> »</li>\n</ul>\n<p><iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://fr.slideshare.net/slideshow/embed_code/16113611" height="356" width="427" allowfullscreen="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>\n<div style="margin-bottom: 5px;"><strong> <a title="10 façons de casser son site WordPress ... et de le réparer !" href="http://fr.slideshare.net/Boiteaweb/10-faons-de-casser-son-site-wordpress-et-de-le-rparer" target="_blank">10 façons de casser son site WordPress … et de le réparer !</a> </strong> from <strong><a href="http://fr.slideshare.net/Boiteaweb" target="_blank">Boiteaweb</a></strong></div>\n<ul>\n<li><a href="http://2013.paris.wordcamp.org/orateurs/#fred-neau">Fred Neau</a> : « <a href="http://2013.paris.wordcamp.org/session/un-nuage-de-politique/">Un nuage de politique</a> »</li>\n</ul>\n<p><iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://www.slideshare.net/slideshow/embed_code/16172495" height="356" width="427" allowfullscreen="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>\n<div style="margin-bottom: 5px;"><strong> <a title="Wordcamp Paris 2013 - Un nuage de politique" href="http://www.slideshare.net/fredneau/wordcamp-paris-2013-un-nuage-de-politique" target="_blank">Wordcamp Paris 2013 – Un nuage de politique</a> </strong> from <strong><a href="http://www.slideshare.net/fredneau" target="_blank">Frédéric Neau</a></strong></div>\n<p>Plus de 200 personnes ont assisté à ces présentations.</p>\n<p>Ces 7 conférences seront disponibles dès que possible sur WordPress.tv afin que chacun puisse revivre l’intégralité de ces grands moments. On ne le dira jamais assez, mais encore un grand merci à chacun d’eux pour leur prestation de qualité !</p>\n<p>Cette première journée s’est achevée dans la joie et la bonne humeur autour d’un verre… une poignée irréductibles s’est en effet retrouvé au pub « The Frog » à Bercy. Là où certains en ont profité pour poursuivre les conversations sur WordPress, d’autres ont carrément entamés une partie de poker durant presque 2 heures. Après une journée pareille, ça fait du bien ! La neige nous a même surpris. En sortant quelques centimètres recouvraient déjà le sol.</p>\n<h3>Samedi 19 janvier 2013 : une journée communautaire</h3>\n<p>Là encore, toutes les places mises en vente sont parties très rapidement. Le nombre était limité du fait de la capacité d’accueil des<a href="http://www.studios-singuliers.fr/"> Studios Singuliers</a>. La journée s’est déroulée selon plusieurs modalités : des <em>lightning talks</em> représentaient un exercice de rapidité difficile mais néanmoins original, des ateliers de 45 min ont permis de découvrir des thématiques précises, un barcamp et des échanges informels. Notons qu’une autre girafe nous attendait dans la salle des Studios Singuliers. Est-ce un signe ?</p>\n<div class="wp-caption aligncenter" style="width: 610px"><a href="https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-snc6/774503_4942393969979_1211948984_o.jpg"><img class=" " alt="WordCamp Paris 2013 - le samedi" src="https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-snc6/774503_4942393969979_1211948984_o.jpg" width="600" height="450" /></a><p class="wp-caption-text">WordCamp Paris 2013 – le samedi (en présence de la girafe)</p></div>\n<h4>Les Lightning Talks</h4>\n<p>La journée s’est ouverte avec les lightning talks. <a href="http://www.paris-web.fr/2012/conferences/lightning-talks.php">D’après Paris-Web</a>, à qui nous avons emprunté la formule, un lightning talk est une mini-conférence de « <em>4 minutes [...] et pas une seconde de plus</em>« . C’est ainsi que quelques personnes nous ont proposé de telles petites présentations flash pour démarrer la journée.</p>\n<p>C’est <strong>Manuel Schmalstieg</strong> qui a ouvert les hostilités avec une bref description d’une manière de soumettre un bug sur le trac et sa prise en compte par l’équipe de développement, le tout sans toucher au code. Puis est venu le tour de <strong>Michel</strong> de Xiligroup de nous parler de la fonction <em>get_terms().</em> <strong>Grégoire Noyelle</strong> a fait un point sur l’extension très appréciée ACF (Advanced Custom Fields). Enfin, <strong>Julio Potier</strong> nous a parlé de sécurité comme il le fait si bien.</p>\n<p>Une session courte donc, mais qui a eu un très grand succès. La formule a plu, c’est évident. A refaire !</p>\n<h4>Les ateliers</h4>\n<p>3 ateliers avaient été choisis pour animés l’après-midi.</p>\n<ol>\n<li><strong>Olivier Gobet</strong> a refait le site du 1er ministre anglais, 10 Downing Street, en utilisant le thème premium Canvas. Une démonstration qui a permis de découvrir un thème premium très complet et surtout de comprendre avec quelle facilité on peut parvenir à un résultat très complexe. Ainsi, mettre une image d’en-tête personnalisée et un slider devient un jeu d’enfant.</li>\n<li><strong>Michel de Xiligroup</strong> a enchainé avec la présentation de son extension Xililanguage qui permet de rendre un site web multilingue de manière simple et rapide. Un exemple de cas concret mis en application qui aura retenu l’attention du public présent. Passer d’un contenu en anglais à sa traduction en français est réalisable en un clic.</li>\n<li><strong>Julio Potier</strong> a terminé l’après midi en proposant de réaliser en direct une série de démonstrations d’utilisation de failles de sécurité dans des extensions WordPress. Ceci dans le but de montrer combien les mises à jour de sécurité de WordPress et des extensions ne sont pas superflues. Un atelier époustouflant qui a su convaincre tout le public présent. Julio aura non seulement montré comment découvrir un mot de passe d’administration, mais aussi comment accéder à la base de données d’un site… et d’autres choses très « sympathiques ».</li>\n</ol>\n<h4>Le barcamp</h4>\n<p>Une fois les lightning talks terminées, et en parallèle avec les ateliers de l’après-midi, un barcamp s’est déroulé jusqu’au bout de la journée : des sujets étaient proposés le matin, les organisateurs ont regroupé l’ensemble par thématique, et les discussions ont été lancées…</p>\n<p>La session barcamp pour les développeurs a été très prisée. En effet, les sujets choisis par les participants avaient cela en commun d’être sommes toutes très techniques, précis. Aussi, tous les développeurs se sont installés dans une salle à part pour échanger.</p>\n<p>Cependant, afin de permettre aux plus novices de participer à des sessions, nous avons mis en place une table pour les débutants.</p>\n<p>Par ailleurs, parmi les propositions, il en est une qui sortait un peu de l’ordinaire et qui a rendu un grand service à la communauté francophone, c’est la reprise de la traduction du Codex en français. Durant l’après midi, plusieurs pages ont ainsi été traduites et il semble qu’un groupe se soit mis en place avec une méthodologie pour poursuivre l’effort. Merci à eux pour avoir pris du temps sur leur journée pour améliorer le projet WordPress !</p>\n<h3>Les compte-rendus sur le web</h3>\n<p>Plutôt que de répéter ce qui a déjà été dit partout sur Internet, voici quelques résumés trouvés ici et là :</p>\n<ul>\n<li><a href="http://wpformation.com/compte-rendu-wordcamp-2013-paris/">Fabrice Ducarme</a></li>\n<li><a href="http://imathi.eu/2013/01/20/wordcampparis-2013/">Mathieu Viet</a></li>\n<li><a href="http://www.seomix.fr/amazing-wordcamp-paris-2013/">Daniel Roch</a></li>\n<li><a href="http://wpchannel.com/retour-wordcamp-paris-2013">Aurélien Denis</a></li>\n<li><a href="http://www.boiteaweb.fr/wordcamp-paris-2013-review-6390.html">Julio Potier</a></li>\n<li><a href="http://2012.wpmu.xilione.com/483/wordcamp-barcamp-paris-2013-wp_giraffe-variable-globale-du-local">Michel de dev.xiligroup.com</a></li>\n<li><a href="http://pixelys.net/2013/01/wordcamp-2013-vous-avez-osez-rater-ca/">Pix&Lys</a></li>\n<li><a href="http://ecolosites.eelv.fr/eelv-au-wordcamp-paris-2013/">Fred Neau</a></li>\n<li><a href="http://www.insitaction.com/solutions-development/bref-on-etait-au-wordcamp-2013.html">Insitaction</a></li>\n<li><a href="https://twitter.com/search/realtime?q=wordcampparis&src=savs">#wordcampparis sur Twitter</a></li>\n</ul>\n<h3>Compte-rendu en image</h3>\n<ul>\n<li><a href="http://www.flickr.com/photos/morgansotter/sets/72157632572523763/"><span style="color: #000000;">Galerie de Morgan Sotter</span></a></li>\n<li><a href="https://plus.google.com/u/0/events/c60cs80t1rdel8n6579rk1khar4?cfem=1">Galerie d’Olivier Gobet</a></li>\n<li><a href="https://plus.google.com/u/0/events/c60cs80t1rdel8n6579rk1khar4?cfem=1">Photos sur Google+</a></li>\n<li><a href="https://www.facebook.com/media/set/?set=a.492486920803975.126685.175270875858916&type=1">Galerie de Daniel Roch</a></li>\n<li><a href="https://www.facebook.com/media/set/?set=a.517637368281060.116640.111114048933396&type=1">Galerie de WordPress Channel</a></li>\n<li><a href="http://photosynth.net/view.aspx?cid=b821eee4-ff45-4ed8-85c1-18b6fcccddf2">La MAS en 360°</a></li>\n<li><a href="https://twitter.com/i/#!/wordpress_fr/media/slideshow?url=pic.twitter.com%2FiD9KmycM">Galerie de WPFR</a></li>\n</ul>\n<h3>Des projets de rencontres WordPress fleurissent en province</h3>\n<p>Voici les quelques régions qui ont annoncés lors de ce WordCamp Paris leur volonté de lancer une rencontre WordPress, par l’intermédiaire d’une personne (ou plusieurs) originaire(s) de cette dernière. Encore à l’état de projet plus ou moins avancés, les régions sont les suivantes. WordPress Francophone sera bien entendu à l’écoute et encouragera vivement ces initiatives locales.</p>\n<ul>\n<li>Nantes : La communauté WordPress nantaise est déjà très prolifique et active, on le sait… et Daniel Roch, orateur lors de notre WordCamp a relancé l’idée d’un WordCamp nantais. Idée qui a du sens au vue de la communauté locale.</li>\n<li>Sud-Ouest : Aurélien Denis, actif dans la communauté WordPress Francophone au travers de son site WP Channel, propose lui aussi de rassembler les forces en présence du Sud Ouest de la France pour commencer à réfléchir à des événements locaux… et pourquoi pas un WordCamp si des motivés le suivent ?</li>\n<li>Lyon : 2 éléments de la communauté francophone originaire de Lyon ont émis la volonté de monter un événement local, Jonathan Buttigieg de GeekPress.fr ainsi que <a href="https://twitter.com/xknown_wp/statuses/293422754303180800">Alex Concha</a> d’Automattic. Ils savent la communauté lyonnaise nombreuse : d’autres locaux se sont fait connaitre lors de ce WordCamp : Benoît de Rue du Thèmes ou encore Caroline Faisant et d’autres que j’oublie surement…</li>\n</ul>\n<p>Cette année, on sent un réel engouement pour la communauté francophone en général et française en particulier… les efforts que nous fournissons depuis des années commenceraient-ils à porter leur fruit ? C’est une excellente nouvelle ! … et tout cela c’est grâce à vous qui faites la communauté tous les jours. Un grand Merci à toutes et tous et à bientôt pour de nouveaux événements.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7poiGcfVquc:lOkrts_ATXc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7poiGcfVquc:lOkrts_ATXc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=7poiGcfVquc:lOkrts_ATXc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7poiGcfVquc:lOkrts_ATXc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7poiGcfVquc:lOkrts_ATXc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=7poiGcfVquc:lOkrts_ATXc:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/7poiGcfVquc" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:82:"http://www.wordpress-fr.net/2013/02/03/wordcamp-paris-2013-retour-sur-succes/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"26";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:77:"http://www.wordpress-fr.net/2013/02/03/wordcamp-paris-2013-retour-sur-succes/";s: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:60:"\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:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:56:"L’Hebdo WordPress : 10 ans – WordPress 3.6 – Codex";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressFrancophone/~3/v9A_30la4bM/";s: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:92:"http://www.wordpress-fr.net/2013/01/29/lhebdo-wordpress-10-ans-wordpress-3-6-codex/#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, 29 Jan 2013 06:26:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:7:{i:0;a:5:{s:4:"data";s:7:"Astuces";s: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:14:"Développement";s: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:9:"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:"";}i:3;a:5:{s:4:"data";s:7:"android";s: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:5:{s:4:"data";s:7:"bbPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:10:"BuddyPress";s: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:5:{s:4:"data";s:5:"Hebdo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://www.wordpress-fr.net/?p=5472";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:360:"10 ans déjà ! Le 25 janvier le projet WordPress fêtait son 10e anniversaire. Le 25 janvier 2003, les premières discussions étaient lancées ! Point sur WordPress 3.6 Tous les jours de nouvelles discussions démarrent ou se poursuivre concernant le développement de WordPress 3.6 sur le blog de l’équipe de développement, plutôt que de vous [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s: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:5116:"<h3>10 ans déjà !</h3>\n<p><a href="https://twitter.com/photomatt/statuses/294852866575826944">Le 25 janvier</a> le projet WordPress fêtait son 10e anniversaire. <a href="http://zed1.com/journalized/archives/2013/01/25/wordpress-a-10-year-journey/">Le 25 janvier 2003, les premières discussions étaient lancées </a>!</p>\n<h3>Point sur WordPress 3.6</h3>\n<ul>\n<li>Tous les jours de nouvelles discussions démarrent ou se poursuivre concernant le développement de WordPress 3.6 sur le blog de l’équipe de développement, plutôt que de vous faire le résumé point par point, <a href="http://make.wordpress.org/core/">je vous invite à suivre les progressions ici.</a></li>\n<li>WordPress VIP <a href="http://vip.wordpress.com/2013/01/25/whats-coming-up-with-wordpress-3-6/">présente WordPress 3.6</a>.</li>\n</ul>\n<h3>La traduction du Codex</h3>\n<p>Lors du WordCamp Paris 2013, Manuel S. a lancé un effort de traduction du Codex en français. L’<a href="https://www.dropbox.com/sh/g9jhq5etacqitqq/5hl4f0eQJd">avancée des travaux est mise à disposition</a>.</p>\n<h3>WordPress pour Android 2.2.6</h3>\n<p><a href="http://android.wordpress.org/2013/01/24/2-2-6-update/">La version Android passe en 2.2.6</a>, mettez à jour !</p>\n<h3>BuddyPress 1.6.4</h3>\n<p><a href="http://buddypress.org/2013/01/buddypress-1-6-4-maintenance-and-security-release/">BuddyPress débarque en version 1.6.4 </a>pour une version de sécurité et de maintenance.</p>\n<h3>bbPress 2.2.4</h3>\n<p><a href="http://bbpress.org/blog/2013/01/bbpress-2-2-4-maintenance-and-security-release/">bbPress 2.2.4 est sortie</a>, pensez à mettre à jour vos installations.</p>\n<h3>Activer/Désactiver les modules Jetpack</h3>\n<p><a href="http://wpchannel.com/desactiver-modules-jetpack-wordpress/">Quelques explications pour apprivoiser Jetpack</a> et ses nombreux modules.</p>\n<h3>Afficher la météo sur son blog</h3>\n<p>Fabrice propose <a href="http://wpformation.com/afficher-meteo-blog/">d’intégrer la météo </a>sur son site grâce à une extension.</p>\n<h3>Automattic rachète Simperium</h3>\n<p>Simperium, <a href="http://allthingsd.com/20130124/automattic-buys-simpermium-maker-of-simplenote/?mod=tweet">start-up spécialisée dans la synchronisation de données </a>a été <a href="http://pro.clubic.com/actualite-e-business/investissement/actualite-537538-automattic-maison-mere-wordpress-simperium.html">acquise par Automattic</a>.</p>\n<h3>WordPress : un CMS pour les gouverner tous !</h3>\n<p><a href="http://www.guerillaweb.ca/cms-wordpress-infographie/">Une infographie sympathique</a> sur le thème du Seigneur des Anneaux expliquant l’évolution de WordPress.</p>\n<h3>Retirer les menus du tableau de bord</h3>\n<p>Si vous avez besoin pour votre projet de <a href="http://wpmu.org/how-to-remove-menus-from-the-wordpress-dashboard/">retirer les menus du tableau de bord de WordPress</a>, suivi cette procédure.</p>\n<h3>Un intranet avec WordPress</h3>\n<p><a href="http://blog.teamtreehouse.com/a-new-way-to-use-wordpress-to-kill-your-competition">Un petit tutoriel rapide pour créer un intranet</a> avec WordPress.</p>\n<h3>Conseils pour développer sa communauté</h3>\n<p><a href="http://blog.pingomatic.com/2013/01/24/engagement/">Ping-O-Matic présente quelques points </a>de bon sens pour développer sa propre communauté.</p>\n<h3>Intégrer des panoramas Photo-Sphere</h3>\n<p>Avec Android 4.0 il est possible de réaliser des panoramas, mais leurs utilisations en dehors du téléphone est délicate, <a href="http://www.fredzone.org/integrer-panoramas-photo-sphere-wordpress-119">voici une astuce pour contourner le problème.</a></p>\n<h3>Supprimer la balise p pour category_description.</h3>\n<p>WPChannel propose de <a href="http://wpchannel.com/supprimer-balise-p-category_description-wordpress/">vous aider à supprimer un paragraphe gênant</a> dans certaines parties de WordPress.</p>\n<h3>Trier des articles selon une période</h3>\n<p>GeekPress va vous permettre de <a href="http://www.geekpress.fr/wordpress/extension/posts-date-ranges-1591/">trier des articles selon une période grâce à cette extension</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=v9A_30la4bM:8UJVdUdT0BY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=v9A_30la4bM:8UJVdUdT0BY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=v9A_30la4bM:8UJVdUdT0BY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=v9A_30la4bM:8UJVdUdT0BY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=v9A_30la4bM:8UJVdUdT0BY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=v9A_30la4bM:8UJVdUdT0BY:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/v9A_30la4bM" 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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:88:"http://www.wordpress-fr.net/2013/01/29/lhebdo-wordpress-10-ans-wordpress-3-6-codex/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"31";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:83:"http://www.wordpress-fr.net/2013/01/29/lhebdo-wordpress-10-ans-wordpress-3-6-codex/";s:7:"attribs";a:0:{}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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:2:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";s:4:"href";s:48:"http://feeds.feedburner.com/WordpressFrancophone";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:4:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:20:"wordpressfrancophone";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:14:"emailServiceId";a:1:{i:0;a:5:{s:4:"data";s:20:"WordpressFrancophone";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:18:"feedburnerHostname";a:1:{i:0;a:5:{s:4:"data";s:28:"http://feedburner.google.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:9:"feedFlare";a:9:{i:0;a:5:{s:4:"data";s:24:"Subscribe with NewsGator";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:112:"http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:42:"http://www.newsgator.com/images/ngsub1.gif";}}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:24:"Subscribe with Bloglines";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:77:"http://www.bloglines.com/sub/http://feeds.feedburner.com/WordpressFrancophone";s:3:"src";s:48:"http://www.bloglines.com/images/sub_modern11.gif";}}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:23:"Subscribe with Netvibes";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:98:"http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:44:"http://www.netvibes.com/img/add2netvibes.gif";}}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:21:"Subscribe with Google";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:93:"http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:51:"http://buttons.googlesyndication.com/fusion/add.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:25:"Subscribe with Pageflakes";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:101:"http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:87:"http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&fileName=ATP_blu_91x17.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:21:"Subscribe with Plusmo";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:86:"http://www.plusmo.com/add?url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:43:"http://plusmo.com/res/graphics/fbplusmo.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:6;a:5:{s:4:"data";s:23:"Subscribe with Live.com";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:81:"http://www.live.com/?add=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:141:"http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:7;a:5:{s:4:"data";s:25:"Subscribe with Mon Yahoo!";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:98:"http://add.my.yahoo.com/content?lg=fr&url=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:60:"http://us.i1.yimg.com/us.yimg.com/i/us/my/bn/intatm_fr_1.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:8;a:5:{s:4:"data";s:25:"Subscribe with Excite MIX";s:7:"attribs";a:1:{s:0:"";a:2:{s:4:"href";s:89:"http://mix.excite.eu/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FWordpressFrancophone";s:3:"src";s:42:"http://image.excite.co.uk/mix/addtomix.gif";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:52:"http://backend.userland.com/creativeCommonsRssModule";a:1:{s:7:"license";a:1:{i:0;a:5:{s:4:"data";s:49:"http://creativecommons.org/licenses/by-nc-sa/3.0/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"TF/xfzYwCQo2Do8ECUturrNsUtI";s:13:"last-modified";s:29:"Mon, 08 Apr 2013 13:17:51 GMT";s:4:"date";s:29:"Mon, 08 Apr 2013 13:41:40 GMT";s:7:"expires";s:29:"Mon, 08 Apr 2013 13:41:40 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}s:5:"build";s:14:"20121202164312";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(118, '_transient_timeout_feed_mod_66a70e9599b658d5cc038e8074597e7c', '1365471700', 'no'),
(119, '_transient_feed_mod_66a70e9599b658d5cc038e8074597e7c', '1365428500', 'no'),
(120, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1365471700', 'no'),
(121, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/WordpressFrancophone/~3/I7SaMrIMQWk/'' title=''WordCamp Europe : Le site web WordCamp Europe possède son site web officiel. BuddyPress 1.7 RC 1 La première release candidate de BuddyPress 1.7 (en) est sortie, essayez-là et dites ce que vous en pensez. bbPress 2.3 RC 1 Afin de suivre le développement de BuddyPress 1.7, bbPress se met également à jour et sort […]''>L’Hebdo WordPress n°180 : WordCamp Europe – BuddyPress – bbPress</a> <span class="rss-date">2 avril 2013</span><div class=''rssSummary''>WordCamp Europe : Le site web WordCamp Europe possède son site web officiel. BuddyPress 1.7 RC 1 La première release candidate de BuddyPress 1.7 (en) est sortie, essayez-là et dites ce que vous en pensez. bbPress 2.3 RC 1 Afin de suivre le développement de BuddyPress 1.7, bbPress se met également à jour et sort […]</div></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/WordpressFrancophone/~3/ZGsNXteab9I/'' title=''En retard et plein de liens en anglais… je m’excuse platement. :/ En route pour WordPress 3.6 beta 1 La beta 1 de WordPress 3.6 (en) est déjà en ligne de mire. WordPress.tv est ouvert Dorénavant vous pouvez publier vos vidéos WordPress vous-mêmes sur wordpress.tv. BuddyPress 1.7 beta 2 La version de BuddyPress que tout […]''>L’Hebdo WordPress n°179 : WordPress.tv – WP et BP Beta – WordSesh</a> <span class="rss-date">20 mars 2013</span><div class=''rssSummary''>En retard et plein de liens en anglais… je m’excuse platement. :/ En route pour WordPress 3.6 beta 1 La beta 1 de WordPress 3.6 (en) est déjà en ligne de mire. WordPress.tv est ouvert Dorénavant vous pouvez publier vos vidéos WordPress vous-mêmes sur wordpress.tv. BuddyPress 1.7 beta 2 La version de BuddyPress que tout […]</div></li></ul></div>', 'no'),
(122, '_transient_timeout_feed_2fb9572e3d6a42f680e36370936a57ae', '1365471700', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(123, '_transient_feed_2fb9572e3d6a42f680e36370936a57ae', 'a:4:{s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"feed";a:1:{i:0;a:6:{s:4:"data";s:281:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:27:"http://www.w3.org/2005/Atom";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"WordPress Francophone : 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:8:"subtitle";a:1:{i:0;a:5:{s:4:"data";s: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:2:"id";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/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:3:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:9:"alternate";s:4:"type";s:9:"text/html";s:4:"href";s:35:"http://www.wordpress-fr.net/planet/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:20:"application/atom+xml";s:4:"href";s:54:"http://feeds.feedburner.com/WordpressFrancophonePlanet";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"updated";a:1:{i:0;a:5:{s:4:"data";s:20:"2013-04-08T15:31:25Z";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:6:"Author";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:5:"entry";a:18:{i:0;a:6:{s:4:"data";s:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:81:"Lumière de Lune : Corriger les défauts de base pour améliorer l’optimisation";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:80:"http://www.lumieredelune.com/encrelune/optimiser-wordpress-referencement,2013,04";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:80:"http://www.lumieredelune.com/encrelune/optimiser-wordpress-referencement,2013,04";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-04-08T02:16:27+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:412:"<div>Oui, WordPress est, à la base, plutôt bien conçu pour le référencement. Non, WordPress n’est pas, en version standard, totalement optimisé. Et cela peut être empiré par des thèmes mal construits, ou par des erreurs dans l’organisation et la structure de son blog. (On ne parlera pas ici de la performance, qui est aussi un [...]</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"GD6D : Découverte du thème « TwentyThirteen »";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:51:"http://feedproxy.google.com/~r/Gd6d/~3/CGu869F9Xus/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:51:"http://feedproxy.google.com/~r/Gd6d/~3/CGu869F9Xus/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-04-05T23:15:11+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:10247:"<div>\n<h2>Le nouveau thème par défaut est arrivé !</h2>\n<p>Livré avec la prochaine version de WordPress numérotée 3.6, ce nouveau thème marque un retour à une approche plus « blog », tout en conservant une facilité d’utilisation et graphique soigné. Voyons cela en détail et en démo à l’adresse : <a rel="nofollow" title="Voir la démo de TwentyThirteen" target="_blank" href="http://twentythirteen.gd6d.fr/">http://twentythirteen.gd6d.fr/</a>.</p>\n<h2>Un thème plutôt « blog »</h2>\n\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/page-accueil/" title="page-accueil"><img src="http://i2.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/page-accueil.jpeg?fit=150%2C150" class="attachment-thumbnail" alt="Le démo sous le signe de la girafe..."></a>\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/menu-statique/" title="menu-statique"><img src="http://i0.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/menu-statique.jpeg?fit=150%2C150" class="attachment-thumbnail" alt="Menu statique avec le titre du site et le moteur de recherche"></a>\n\n<p>Par défaut, le thème se présente sur une seule colonne sur pratiquement toute la largeur de l’écran (1600px).<br>\nLa page d’accueil affiche des blocs de couleur distincts selon le type de contenu, ce qui donne à l’ensemble un dynamisme et un bon focus sur le contenu.<br>\nOn retrouve un header classique, avec une fonction recherche amusante sous forme de tiroir dynamique. Lorsque l’on scrolle vers le bas, un bandeau reste statique en haut de page avec le titre du site et le formulaire de recherche.</p>\n<p>Les couleurs sont tendances et originales, et non modifiable dans ses options de thème. Il faut intervenir sur sa feuille de style (CSS) pour changer toute la palette.</p>\n<p>D’ailleurs, il n’y a presque pas d’options de thème, seulement les réglages de header et de menu. On est là très très loin des options de thèmes Premium !!! La simplicité d’utilisation alliée à la nouvelle interface d’édition est un argument certain pour qui veut se concentrer sur le contenu !</p>\n<p>On trouve des commandes introduites avec l’HTML5, comme <mark> pour mettre en valeur du texte et <button>. <a rel="nofollow" title="Les styles de Twentythirteen" target="_blank" href="http://twentythirteen.gd6d.fr/?p=46">Regardez cette page pour visualiser les différents styles</a>. Il y a 2 polices de caractères « Source sans pro » et « Bitter » appelées via GoogleFont, l’instruction se trouvant dans le fichier functions.php</p>\n<p>Les auteurs sont mis en avant. Dès lors que plusieurs auteurs ont publié des articles, un bloc « biographie » s’affiche à la fin des articles et <a rel="nofollow" title="Page author.php de Twentythirteen" target="_blank" href="http://twentythirteen.gd6d.fr/?author=1">dans la page « auteur »</a>.</p>\n<p>Enfin, le thème est naturellement responsive. On retrouve d’ailleurs 6 styles supplémentaires selon les formats d’écran !!</p>\n<div class="woo-sc-hr"></div>\n<h2>Les formats d’articles en avant</h2>\n<p>Selon le type d’article, la présentation et la couleur du fond de bloc s’adapte. Prenons par exemple une galerie d’images, on retrouve automatiquement la nouvelle présentation de type « mosaïque » introduite par <a rel="nofollow" title="Les options de galerie avec JetPack" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/diaporama-slideshow-mosaique-images-avec-plugin-jetpack/">JetPack.</a></p>\n\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/citation-video/" title="citation-video"><img src="http://i2.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/citation-video.jpeg?fit=150%2C150" class="attachment-thumbnail" alt="Une citation et une vidéo"></a>\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/galerie-images/" title="galerie-images"><img src="http://i1.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/galerie-images.jpeg?fit=150%2C150" class="attachment-thumbnail" alt="La galerie d''imagges"></a>\n\n<p>A noter que la vidéo (au format FLV) est directement intégrée dans l’article et s’affiche grâce au nouveau lecteur de vidéo intégré.</p>\n<div class="woo-sc-hr"></div>\n<h2>Images avec légendes et page « attachment »</h2>\n<p>Pour mettre en valeur les visuels et casser la mise en page rectangulaire, les images avec légendes s’affichent en « marge négative » et sortent de l’alignement à gauche ou ou droite. A noter que enfin les pages « attachment » deviennent attractives, par exemple pour créer un diaporama commenté.</p>\n\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/image-avec-legende/" title="image-avec-legende"><img src="http://i2.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/image-avec-legende.jpeg?fit=150%2C150" class="attachment-thumbnail" alt="Les images avec légendes débordent à gauche et à droite"></a>\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/page-attachment/" title="page-attachment"><img src="http://i0.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/page-attachment.jpg?fit=150%2C150" class="attachment-thumbnail" alt=''La page "attachment", avec accès précédent / suivant, lien vers image originale''></a>\n\n<div class="woo-sc-hr"></div>\n<h2>Personnaliser le thème TwentyThirteen</h2>\n<p>Comme indiqué précédemment, le thème est extrêmement limité en terme d’options :</p>\n<ul>\n<li>On ne retrouve que le changement d’image de fond du header et l’affichage ou non du titre et slogan.</li>\n<li>On peut changer la couleur du titre</li>\n<li>Il n’y a que la zone de menu principal</li>\n<li>Il n’y a pas de modèle de page (template)</li>\n<li>Il n’y a que 2 zones de widgets : colonne latérale et footer.\n<ul>\n<li>En colonne latérale, l’activation d’un widget modifie l’apparence des pages / articles de TOUT le site.</li>\n<li>Dans le footer, les widgets se repartissent harmonieusement horizontalement</li>\n</ul>\n</li>\n</ul>\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/image-header/" title="image-header"><img src="http://i1.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/image-header.jpeg?fit=150%2C150" class="attachment-thumbnail" alt="Choix d''une image, d''images aléatoires dans une sélection et options d''affichage du texte"></a>\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/zone-widget/" title="zone-widget"><img src="http://i1.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/zone-widget.jpeg?fit=150%2C150" class="attachment-thumbnail" alt="Les 2 zones de widgets"></a>\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/affichage-avec-sidebar/" title="affichage-avec-sidebar"><img src="http://i2.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/affichage-avec-sidebar.jpeg?fit=150%2C150" class="attachment-thumbnail" alt=''Affichage de la page avec des widgets dans la zone "Main Widget Area"''></a>\n<a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/attachment/footer/" title="footer"><img src="http://i0.wp.com/www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/footer.jpeg?fit=150%2C150" class="attachment-thumbnail" alt="Les 5 widgets du footer s''affichent harmonieusement"></a>\n\n<div class="woo-sc-hr"></div>\n<h2>Modifier le thème TwentyThirteen</h2>\n<p>Dès lors que l’on veut modifier le thème, je vois conseille de faire un thème enfant. Dans le fichier style.css, vous allez pouvoir modifier toutes les couleurs du thème. Si vous voulez changer les polices, c’est aussi ici que vous allez pouvoir le faire.Pour ce faire, vous pouvez télécharger le <a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/wp-content/uploads/2013/04/stylecss.txt">fichier .txt</a> pour récupérer le contenu du fichier style.css du thème enfant.</p>\n<div class="woo-sc-divider"></div>\n<h3>Conclusion</h3>\n<p>Encore un joli thème proposé par WordPress, qui permet de s’initier aisément au logiciel. Après<a rel="nofollow" title="Thème TwentyTwelve" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/test-de-twenty-twelve/"> TwentyTwelve</a> plutôt orienté « Business », on trouve cette fois un vrai thème de « blogger ». A vous de jouer !</p>\n<p>Cet article <a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr/blog/theme-twentythirteen-wordpress/">Découverte du thème « TwentyThirteen »</a> est apparu en premier sur <a rel="nofollow" target="_blank" href="http://www.gd6d.fr/wordpressfr">Gd6d - spécialiste WordPress</a>.</p>\n<img src="http://feeds.feedburner.com/~r/Gd6d/~4/CGu869F9Xus" height="1" width="1">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"WordPress Channel : WordPress 3.6 Beta 1 à télécharger";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wpchannel.com/wordpress-3-6-beta-1-telecharger/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:54:"http://wpchannel.com/wordpress-3-6-beta-1-telecharger/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-04-05T16:38:44+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:914:"<div>\n<p>WordPress 3.6 Beta 1 est disponible au téléchargement… à des fins de tests uniquement ! Ne l’utilisez surtout pas pour un site en production. Comme à l’accoutumée, testez et retestez vos thèmes, vos plugins et vos configurations serveurs et reportez les bugs. Les nouveautés annoncées dans cette version 3.6 de WordPress sont particulièrement intéressantes pour l’utilisateur ...</p>\n<p><a rel="nofollow" target="_blank" href="http://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" target="_blank" href="http://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" target="_blank" href="http://wpchannel.com/wordpress-3-6-beta-1-telecharger/">WordPress 3.6 Beta 1 à télécharger</a> </p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"SEOMix : 6 bonnes pratiques pour l’indexation et le SEO";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:39:"http://www.seomix.fr/indexation-google/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:39:"http://www.seomix.fr/indexation-google/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-04-04T08:00:32+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:1380:"<div>\n<div><img width="180" height="135" src="http://www.seomix.fr/wp-content/uploads/2013/04/travail-indexation-google-180x135.jpg" class="attachment-thumbnail wp-post-image" alt="Indexation sur Google"></div>6 bonnes pratiques pour indexer correctement et efficacement tout type de site Internet : l''arborescence, le maillage interne, le sitemap et bien plus.\n <p><strong>Article original :</strong> <a rel="nofollow" target="_blank" href="http://www.seomix.fr/indexation-google/">6 bonnes pratiques pour l’indexation et le SEO</a>.</p>\n <p><strong>Debut du contenu :</strong> Pour avoir du trafic, il faut être bien positionné dans Google. Mais encore faut-il que les différentes pages du site soient bien présentes dans l''index de Google. Pour cela, il existe un certains nombre de bonnes pratiques basiques à mettre en place sur son site Internet. Attention, elles ne se valent pas toutes et ne sont pas systématiquement obligatoires. Ces techniques de base vous assurent cependant un bon maillage interne et une indexation correcte de vos différents contenus dans Google et dans les autres moteurs de recherche. Indexation et structure du site N°1- La structure des contenus C''est la base [...]</p>\n<hr>\n<img src="http://feeds.feedburner.com/~r/seomix-wordpress/~4/Ri9UAgLLtME" height="1" width="1">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"L''écho des plugins WordPress : WP Mailfrom II";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:52:"http://www.echodesplugins.fr/plugins/wp-mailfrom-ii/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:52:"http://www.echodesplugins.fr/plugins/wp-mailfrom-ii/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-04-04T01:00:00+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:70:"<div>Modifier les en-têtes de vos mails issus de Wordpress</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:95:"WordPress Francophone : L’Hebdo WordPress n°180 : WordCamp Europe – BuddyPress – bbPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/I7SaMrIMQWk/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/I7SaMrIMQWk/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-04-02T07:27:55+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:6117:"<div>\n<h3>WordCamp Europe : Le site web</h3>\n<p><a rel="nofollow" target="_blank" href="http://2013.europe.wordcamp.org/">WordCamp Europe</a> possède son site web officiel.</p>\n<h3>BuddyPress 1.7 RC 1</h3>\n<p>La <a rel="nofollow" target="_blank" href="http://buddypress.org/2013/03/buddypress-1-7-release-candidate-1/">première release candidate de BuddyPress 1.7 (en) </a>est sortie, essayez-là et dites ce que vous en pensez.</p>\n<h3>bbPress 2.3 RC 1</h3>\n<p><a rel="nofollow" target="_blank" href="http://wprealm.com/blog/bbpress-decides-to-tandem-with-buddypress-and-also-does-a-release-candidate/">Afin de suivre le développement de BuddyPress 1.7</a>, bbPress se met également à jour et<a rel="nofollow" target="_blank" href="http://bbpress.org/blog/2013/03/bbpress-2-3-release-candidate-1/"> sort aussi sa release candidate 1</a> (en).</p>\n<h3>Jetpack 2.2.1</h3>\n<p>L’extension Jetpack évolue encore et propose cette fois un mode de développement <a rel="nofollow" target="_blank" href="http://jetpack.me/2013/03/28/jetpack-dev-mode-release/">dans cette version 2.2.1 (en)</a>.</p>\n<h3>WordPress pour Android 2.3 beta</h3>\n<p>L<a rel="nofollow" target="_blank" href="http://dev.android.wordpress.org/2013/03/29/its-about-time-for-the-2-3-beta-which/">a nouvelle version de WordPress pour Android passe en beta</a> (en), il s’agit de la 2.3.</p>\n<h3>Compter les articles selon leur langue</h3>\n<p>Dans un site multilingues, il peut être intéressant d’avoir la possibilité de compter le nombre d’article selon les langues utilisés. <a rel="nofollow" target="_blank" href="http://wpchannel.com/compter-articles-langue-wpml-wordpres/">WP Channel nous indique la marche à suivre</a> avec WPML.</p>\n<h3>Pourquoi ne pas utiliser Jetpack</h3>\n<p>Jetpack est une extension très riche mais certains la trouve trop complète et donc trop « usine à gaz ». <a rel="nofollow" target="_blank" href="http://jupiterjimsmarketingteam.com/2013/03/07/why-i-dont-use-wordpress-jetpack/">Un avis allant en ce sens est à découvrir (en)</a>.</p>\n<h3>Un thème à partir de Twenty Eleven</h3>\n<p>Manooweb propose de <a rel="nofollow" target="_blank" href="http://blog.manooweb.fr/wordpress-construire-son-theme-a-partir-de-twenty-eleven/">réaliser un thème à partir de Twenty Eleven</a>.</p>\n<h3>Faire du vélo habillé en WordPress</h3>\n<p>Si vous aimez faire du vélo et que vous êtes fan de WordPress, <a rel="nofollow" target="_blank" href="http://cyclingkit.wordpress.com/">alors voici une tenue pour vous (en)</a>.</p>\n<h3>Afficher les articles les plus commentés sans extensions</h3>\n<p>La méthode pour afficher les <a rel="nofollow" target="_blank" href="http://wpchannel.com/afficher-articles-plus-commentes-wordpress/">articles les plus commentés</a> de votre site.</p>\n<h3>Se souvenir de sa connexion</h3>\n<p>Si vous souhaitez que la case « se souvenir de moi » de la page de connexion soit toujours cochée, <a rel="nofollow" target="_blank" href="http://www.geekpress.fr/wordpress/astuce/cocher-souvenir-moi-page-connexion-1844/">la solution à cette problématique est chez GeekPress</a>.</p>\n<h3>Une banque de thème</h3>\n<p>Winithemes est une banque de thèmes WordPress, <a rel="nofollow" target="_blank" href="http://www.ballajack.com/banque-theme#more-21190">Ballajack vous en parle</a>.</p>\n<h3>WordPress Business : un nouveau service wordpress.com</h3>\n<p>WordPress.com dévoile son nouveau service pour les pro : <a rel="nofollow" target="_blank" href="http://store.wordpress.com/premium-upgrades/wordpress-business/">WordPress Business</a> (en).</p>\n<h3>Trop d’extensions tuent les extensions ?</h3>\n<p>La question de savoir s’il est convenable d’utiliser beaucoup d’extensions se pose régulièrement. <a rel="nofollow" target="_blank" href="http://wphacks.com/how-using-too-many-wordpress-plugins-can-kill-your-website/">Voici un élément de réponse</a>.</p>\n<h3>Nouvelle enseigne chez Automattic</h3>\n<p><a rel="nofollow" target="_blank" href="http://www.youtube.com/watch?v=EgYFfA4rlQE&feature=youtu.be">Un timelapse a été réalisé </a>lors du changement d’enseignement du bâtiment de bureau d’Automattic.</p>\n<h3>Cacher l’extrait</h3>\n<p>Si vous souhaitez <a rel="nofollow" target="_blank" href="http://tweetpress.fr/faqs/noteaser-wordpress/">cacher l’extrait</a> lors de la lecture de l’article voici comment faire.</p>\n<h3>BuddyPress : pas-à-pas – Episode 5</h3>\n<p><a rel="nofollow" target="_blank" href="http://wpformation.com/buddypress-episode-5/">Voici déjà le 5e épisode </a>du mode pas-à-pas engagé par iMath chez WP Formation.</p>\n<div class="feedflare">\n<a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=I7SaMrIMQWk:RZzysBnP6js:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=I7SaMrIMQWk:RZzysBnP6js:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=I7SaMrIMQWk:RZzysBnP6js:V_sGLiPBpWU" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=I7SaMrIMQWk:RZzysBnP6js:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=I7SaMrIMQWk:RZzysBnP6js:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=I7SaMrIMQWk:RZzysBnP6js:gIN9vFwOqvQ" border="0"></a>\n</div>\n<img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/I7SaMrIMQWk" height="1" width="1">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:69:"WP Formation : <div>Nettoyer, optimiser & tweaker WordPress</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wpformation.com/plugins-nettoyer-optimiser-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:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:60:"http://wpformation.com/plugins-nettoyer-optimiser-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-03-29T08:30:55+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:1363:"<div>\n<img width="300" height="284" src="http://wpformation.com/wp-content/uploads/2013/03/tweaks-wordpress-300x284.jpg" class="attachment-medium wp-post-image" alt="tweaks wordpress" style="float:right;margin:0 0 10px 10px;"><p>Vous le savez déjà, l’optimisation de WordPress passe par différentes phases, les réglages avancés, le nettoyage, les astuces ou tweaks & tips, une sorte de tuning pour WordPress que seuls les utilisateurs les plus avancés et familiarisés avec le code, se permettent... En revanche, un utilisateur débutant aura bien du mal avec des termes comme ...</p>\n<p></p>\n<hr>\n<a rel="nofollow" target="_blank" href="http://wpformation.com/plugins-nettoyer-optimiser-wordpress/">Nettoyer, optimiser & tweaker WordPress</a> est un article de <a rel="nofollow" title="Formation Internet WordPress Ecommerce" target="_blank" href="http://wpformation.com/">WP Formation</a><br>\nN''hésitez pas à nous suivre sur : <a rel="nofollow" title="Ajouter sur Facebook" target="_blank" href="http://www.facebook.com/Wibeweb">Facebook</a> - <a rel="nofollow" title="Suivre sur Twitter" target="_blank" href="http://twitter.com/#!/Web_Design_Web">Twitter</a> - <a rel="nofollow" target="_blank" href="http://plus.google.com/107614015687669785725/">Google+</a>\n<hr>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"GeekPress : Cocher « Se souvenir de moi » par défaut sur la page de connexion";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:81:"http://www.geekpress.fr/wordpress/astuce/cocher-souvenir-moi-page-connexion-1844/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:81:"http://www.geekpress.fr/wordpress/astuce/cocher-souvenir-moi-page-connexion-1844/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-03-27T14:02:11+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:225:"<div>Pour gagner un peu de temps à chaque connexion à l''administration de WordPress, nous allons cocher automatiquement la case "Se souvenir de moi" pour ne pas retaper son identifiant et son mot de passe.</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"Here With Me : Ce à quoi pourrait ressembler WordPress 3.6";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:80:"http://www.herewithme.fr/2013/03/09/ce-a-quoi-pourrait-ressembler-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:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:80:"http://www.herewithme.fr/2013/03/09/ce-a-quoi-pourrait-ressembler-wordpress-3-6/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-03-09T20:52:56+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:3922:"<div>\n<p>Ça travaille dur dans la communauté pour améliorer encore et toujours notre CMS préféré ! J’ai évoqué les nouveautés de la version 3.6 dans un <a rel="nofollow" target="_blank" href="http://www.herewithme.fr/2013/01/08/premieres-orientations-pour-wordpress-3-6/">précédent billet</a>, mais depuis certaines fonctionnalités ont été reportées (workflow de publication), et d’autres modifications ont été annoncées.</p>\n<p>C’est notamment le cas de l’apparence de WordPress, aussi bien coté public avec un nouveau thème « Twenty Thirteen » que la console d’administration avec peut-être un restylage.</p>\n<p><a rel="nofollow" target="_blank" href="http://make.wordpress.org/core/2013/02/18/introducing-twenty-thirteen/">Twenty Thirteen</a> est un thème orienté blog, avec l’accent mis sur les posts formats.</p>\n<p><a rel="nofollow" target="_blank" href="http://www.herewithme.fr/wp-content/uploads/2013/03/About-Twenty-Thirteen-e1362858220244.png"><img class="aligncenter size-medium wp-image-1335" alt="About Twenty Thirteen e1362858220244 300x207 Ce à quoi pourrait ressembler WordPress 3.6" src="http://www.herewithme.fr/wp-content/uploads/2013/03/About-Twenty-Thirteen-e1362858220244-300x207.png" width="300" height="207" title="Ce à quoi pourrait ressembler WordPress 3.6"></a></p>\n<p> </p>\n<p>Concernant la console d’administration, un projet d’évolution est disponible sous la forme d’une extension nommée <a rel="nofollow" target="_blank" href="http://wordpress.org/extend/plugins/mp6/">MP6</a>. À ce stade, rien ne garantit que cette évolution de l’interface soit intégrée dans le projet, c’est une extension « laboratoire ». Tous les détails sur le blog <a rel="nofollow" target="_blank" href="http://make.wordpress.org/ui/2013/03/09/as-a-continuation-of-the-work-begun-in/">make UI</a>.</p>\n<p><a rel="nofollow" target="_blank" href="http://www.herewithme.fr/wp-content/uploads/2013/03/Tableau-de-bord-%E2%80%B9-Test-de-plugins-%E2%80%94-WordPress.png"><img class="aligncenter size-medium wp-image-1338" alt="Tableau de bord ‹ Test de plugins — WordPress 274x300 Ce à quoi pourrait ressembler WordPress 3.6" src="http://www.herewithme.fr/wp-content/uploads/2013/03/Tableau-de-bord-%E2%80%B9-Test-de-plugins-%E2%80%94-WordPress-274x300.png" width="274" height="300" title="Ce à quoi pourrait ressembler WordPress 3.6"></a> <a rel="nofollow" target="_blank" href="http://www.herewithme.fr/wp-content/uploads/2013/03/Modifier-l%E2%80%99article-%E2%80%B9-Test-de-plugins-%E2%80%94-WordPress.png"><img class="aligncenter size-medium wp-image-1337" alt="Modifier l’article ‹ Test de plugins — WordPress 182x300 Ce à quoi pourrait ressembler WordPress 3.6" src="http://www.herewithme.fr/wp-content/uploads/2013/03/Modifier-l%E2%80%99article-%E2%80%B9-Test-de-plugins-%E2%80%94-WordPress-182x300.png" width="182" height="300" title="Ce à quoi pourrait ressembler WordPress 3.6"></a> <a rel="nofollow" target="_blank" href="http://www.herewithme.fr/wp-content/uploads/2013/03/R%C3%A9glages-des-m%C3%A9dias-%E2%80%B9-Test-de-plugins-%E2%80%94-WordPress.png"><img class="aligncenter size-medium wp-image-1336" alt="Réglages des médias ‹ Test de plugins — WordPress 300x241 Ce à quoi pourrait ressembler WordPress 3.6" src="http://www.herewithme.fr/wp-content/uploads/2013/03/R%C3%A9glages-des-m%C3%A9dias-%E2%80%B9-Test-de-plugins-%E2%80%94-WordPress-300x241.png" width="300" height="241" title="Ce à quoi pourrait ressembler WordPress 3.6"></a></p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"4h18 : Une session spéciale BuddyPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:48:"http://4h18.com/une-session-speciale-buddypress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:48:"http://4h18.com/une-session-speciale-buddypress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-03-06T09:41:26+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:636:"<div>\n<img width="300" height="227" src="http://4h18.com/wp-content/uploads/photodune-3179667-social-network-xs-300x227.jpg" class="attachment-medium wp-post-image" alt="Social network" style="border:4px solid #ccc;float:right;margin:0 0 10px 10px;"><p>Et si vous appreniez à utiliser BuddyPress ?</p>\n<p></p>\n<p> <a rel="nofollow" target="_blank" href="http://4h18.com/une-session-speciale-buddypress/">Une session spéciale BuddyPress</a> est un article original de <a rel="nofollow" target="_blank" href="http://4h18.com/">4h18</a>.</p>\n<p><a rel="nofollow" target="_blank" href="http://4h18.com/">4h18 - </a></p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:74:"Grégoire Noyelle : WordPress :: Gestion des médias depuis la version 3.5";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:68:"http://www.gregoirenoyelle.com/wordpress-gestion-medias-version-3-5/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:68:"http://www.gregoirenoyelle.com/wordpress-gestion-medias-version-3-5/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-02-26T06:55:19+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:10080:"<div>\n<p><em>Depuis la version 3.5 de WordPress, la gestion des <strong>Médias</strong> a énormément changé. Dans ce tutoriel nous ferons un tour d’horizon des différentes options pour les <strong>images</strong> et les <strong>fichiers PDF</strong>.</em></p>\n<h3>Insérer une image</h3>\n<p><img src="http://cdn.gregoirenoyelle.com/gnm/wp-niv1/wp-niv1-media-3-5-inserer-media.jpg" title="Bouton Ajouter un média dans WordPress 3.5" alt="Capture: Bouton Ajouter un média dans WordPress 3.5" width="601" height="207"></p>\n<h4>Nom de fichier</h4>\n<p><strong>Attention</strong>: Comme tout fichier sur le Web, il est important de respecter cette nomenclature dans le nom des images (ou des fichiers):</p>\n<ul>\n<li>pas d’espace</li>\n<li>pas de signe bizarre (!,?§….) à part le “-” et le “_”</li>\n<li>pas de lettres accentuées</li>\n</ul>\n<p>Par contre, le <strong>titre de l’image ou du fichier</strong> comme nous le verrons accepte toutes ces restrictions.</p>\n<h4>Fenêtre insérer un média</h4>\n<p>Placer d’abord votre curseur à l’emplacement où vous voulez intégrer la photo et cliquer sur le bouton <strong>Ajouter un média</strong>. Une nouvelle fenêtre s’ouvre.</p>\n<p><img src="http://cdn.gregoirenoyelle.com/gnm/wp-niv1/wp-niv1-media-3-5-inserer-fenetre-options.jpg" title="Fenêtre insérer un média dans WordPress 3.5 et ses options" alt="Capture: Fenêtre insérer un média dans WordPress 3.5 et ses options" width="600" height="427"></p>\n<p>Je vais détailler le étapes à respecter pour l’intégration d’un média</p>\n<p><span id="more-6796"></span></p>\n<h4>Type d’insertion</h4>\n<ul>\n<li>\n<strong>Insérer un média</strong>: pour intégrer une image ou un fichier dans votre contenu</li>\n<li>\n<strong>Insérer à partir d’une adresse web</strong>: si vous avez l’URL d’une image (un document sur Picasa, Flickr…)</li>\n<li>\n<strong>Créer une galerie</strong>: en choisissant les images ajoutées ou toute autre image de votre bibliothèque. C’est une des grandes nouveautés de la version 3.5 de WordPress</li>\n<li>\n<strong>Mettre une image à la une</strong>: qui sera utilisé dans votre thème si le support pour ce type d’affichage est accepté. Cette image peut ne pas être dans le contenu et seulement à la une.</li>\n</ul>\n<h4>Source de l’insertion</h4>\n<ul>\n<li>\n<strong>Envoyer des fichiers</strong>: vous pouvez glisser vos fichiers directement dans la zone en glissé/déposé</li>\n<li>\n<strong>Bibliothèque de médias</strong>: tous les fichiers ajoutés à votre bibliothèque seront listés. Un champ de recherche vous permettra de rechercher parmi toutes les images.</li>\n</ul>\n<p><img src="http://cdn.gregoirenoyelle.com/gnm/wp-niv1/wp-niv1-media-3-5-insertion-options-fichiers.jpg" title="Options de WordPress 3.5 au moment de l''insertion des fichiers" alt="Capture: Options de WordPress 3.5 au moment de l''insertion des fichiers" width="600" height="545"></p>\n<p>Pour chaque média, vous pouvez changer à la volée les options de base</p>\n<ul>\n<li>\n<strong>Titre</strong>: contrairement aux noms du fichier, il peut y avoir des accents et des espaces. C’est le contenu qui s’affiche dans une minuscule fenêtre lorsque vous passez le curseur au-dessus d’un lien</li>\n<li>\n<strong>Légende</strong>: affichera une description directement sous l’image qui sera visible</li>\n<li>\n<strong>Texte alternatif</strong>: décris l’image pour les mal voyants. Il est invisible à l’oeil</li>\n<li>\n<strong>Description</strong>: pour décrire l’image si vous décidez d’afficher “Adresse web de l’article” lorsque que l’on clique sur l’image</li>\n<li>\n<strong>Alignement</strong>: pour choisir comment le texte s’aligne par rapport à l’image</li>\n<li>\n<strong>Lier à</strong>: “Aucun” (l’image n’est pas cliquable), “Fichier média” (l’image cliquable est directement liée au fichier), “Page du fichier attaché” (l’image cliquable est liée à la page de type article pour chaque image). Cette dernière option est peu utilisée et non recommandée</li>\n<li>\n<strong>Taille</strong>: choix de tailles standard au moment de l’insertion. À chaque fois que vous chargez une image, WordPress génère autant de tailles de fichier disponibles. Ces réglages peuvent être modifiés dans la partie “Réglages > Médias”</li>\n</ul>\n<p>À tout moment, il est possible de désélectionner ou d’ajouter un média. Si par mégarde, vous avez tout désélectionné, il est possible de faire une <strong>sélection multiple</strong> en appuyant sur la touche majuscule. La <strong>grande nouveauté de WordPress 3.5</strong> permet d’intégrer en une seule fois plusieurs images sans passer par un mode galerie. La sélection facile au simple click est réservée au mode galerie que nous verrons dans un prochain article.</p>\n<p>Une fois intégrée dans votre article, l’image est modifiable en cliquant sur l’icône Photo</p>\n<p><img src="http://cdn.gregoirenoyelle.com/gnm/wp-niv1/wp-niv1-media-3-5-modifier-suprimer-image.jpg" title="Modifier ou supprimer une image dans WordPress" alt="Capture: Modifier ou supprimer une image dans WordPress" width="600" height="236"></p>\n<p>Une nouvelle fenêtre s’ouvre</p>\n<p><img src="http://cdn.gregoirenoyelle.com/gnm/wp-niv1/wp-niv1-media-3-5-options-image-fenetre-ok.jpg" title="Fenêtre pour modifier une image dans WordPress" alt="Capture: Fenêtre pour modifier une image dans WordPress" width="601" height="545"></p>\n<p>Vous constaterez qu’ici le <strong>Titre</strong> accepte tous les caractères à l’inverse du nom du fichier.</p>\n<h4>Changer le lien d’une image</h4>\n<p>L’onglet <strong>Options avancées</strong> sert principalement pour attribuer une nouvelle cible à l’image ou au fichier dans le cas ou ces derniers points vers autre chose que le média lui-même. Dans ce cas, se rendre en bas de la fenêtre avec <strong>Options avancées du lien</strong> et cocher pour <strong>Cible</strong>, <strong>Nouvelle fenêtre</strong>. Dans ce cas, le lien de votre image s’ouvrira dans une nouvelle fenêtre. Dans ce cas, pour rendre votre site plus accessible, il est bien de spécifier ce type d’ouverture dans la partie <strong>Titre</strong>.</p>\n<p>Une autre approche très intéressante pour modifier le lien attribué à une image consiste à simplement:</p>\n<ul>\n<li>cliquer sur l’image</li>\n<li>cliquer sur l’icône lien dans la barre d’outils</li>\n<li>entrer votre lien externe</li>\n<li>cocher “Ouvrir le lien dans une nouvelle fenêtre/un nouvel onglet”</li>\n</ul>\n<p>Et voilà! Un grand merci à <a rel="nofollow" target="_blank" href="http://fr.linkedin.com/pub/jessica-hennequin/40/1b0/726" title="Ouverture du lien dans une nouvelle fenêtre">Jessica</a> pour le truc.</p>\n<h3>Insérer un PDF</h3>\n<p>L’insertion d’un PDF est très similaire à l’insertion d’une image. Vous placez votre curseur et vous cliquez sur le bouton <strong>Insérer un média</strong>.<br>\nNous allons utiliser ce <a rel="nofollow" target="_blank" href="http://cdn.gregoirenoyelle.com/gnm/_ressources/Fichier-PDF-pour-test.zip">PDF pour test</a> à télécharger.</p>\n<h4>Nom des fichiers</h4>\n<p><strong>Attention</strong>: Comme les photos, il est important de respecter cette nomenclature dans le nom des fichiers:</p>\n<ul>\n<li>pas d’espace</li>\n<li>pas de signe bizarre (!,?§….) à part le “-” et le “_”</li>\n<li>pas de lettres accentuées</li>\n</ul>\n<h4>Intégrer le document</h4>\n<p><img src="http://cdn.gregoirenoyelle.com/gnm/wp-niv1/wp-niv1-media-3-5-media-inserer-pdf.jpg" title="Insérer un média PDF dans WordPress" alt="Capture: Insérer un média PDF dans WordPress" width="600" height="587"></p>\n<p>Vous allez glisser votre fichier dans la même fenêtre que pour les photos. Le <strong>Titre</strong> sera le texte qui s’affichera en lien et le fichier devra toujours être lié à <strong>Fichier média</strong>.</p>\n<p><img src="http://cdn.gregoirenoyelle.com/gnm/wp-niv1/wp-niv1-media-3-5-pdf-resultat-en-ligne.jpg" title="Résulat en ligne pour un lien vers un fichier PDF dans WordPress" alt="Capture: Résulat en ligne pour un lien vers un fichier PDF dans WordPress" width="600" height="128"></p>\n<p>Si vous voulez que le lien PDF s’ouvre dans une nouvelle fenêtre, il faudra éditer celui-ci avec le bouton lien dans la barre d’outils et choisir, comme pour n’importe quel autre lien, l’option “Ouvrir le lien dans une nouvelle fenêtre/un nouvel onglet”. N’oubliez pas dans ce cas de préciser cette action dans le titre.</p>\n<p><img src="http://cdn.gregoirenoyelle.com/gnm/wp-niv1/wp-niv1-media-3-5-pdf-lien-target.jpg" title="changer la cible d''un fichier PDF dans WordPress 3.5" alt="Capture: changer la cible d''un fichier PDF dans WordPress 3.5" width="596" height="434"></p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"Insidedaweb : 404, Friends not Found (ou Comment Augmenter ses Fans de 354%)";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:238:"http://www.insidedaweb.com/wordpress-seo/referencement-wordpress-seo/404-friends-not-found-ou-comment-augmenter-ses-fans-de-454/?utm_source=rss&utm_medium=rss&utm_campaign=404-friends-not-found-ou-comment-augmenter-ses-fans-de-454";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:238:"http://www.insidedaweb.com/wordpress-seo/referencement-wordpress-seo/404-friends-not-found-ou-comment-augmenter-ses-fans-de-454/?utm_source=rss&utm_medium=rss&utm_campaign=404-friends-not-found-ou-comment-augmenter-ses-fans-de-454";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-12-08T11:38:02+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:571:"<div>\n<p>Vous aussi vous voulez connaitre notre recette "magique" ? Il suffit de venir lire article ;)</p>\n<p>Cet article <a rel="nofollow" target="_blank" href="http://www.insidedaweb.com/wordpress-seo/referencement-wordpress-seo/404-friends-not-found-ou-comment-augmenter-ses-fans-de-454/">404, Friends not Found (ou Comment Augmenter ses Fans de 354%)</a> est apparu en premier sur <a rel="nofollow" target="_blank" href="http://www.insidedaweb.com/">Blog WordPress, Blog eCommerce, Blog Référencement, Emailing & FOSS. Le site 5 en 1</a>.</p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"2803.fr : WordPress améliore son Jetpack et c’est vraiment bien!";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:99:"http://www.vingthuitzerotrois.fr/wordpress/wordpress-ameliore-son-jetpack-cest-vraiment-bien-14906/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:99:"http://www.vingthuitzerotrois.fr/wordpress/wordpress-ameliore-son-jetpack-cest-vraiment-bien-14906/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-11-09T12:58:05+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:3022:"<div>\n<p>Automatic, la société derrière WordPress, vient d’annoncer la disponibilité de la mise à jour de son extension intitulée Jetpack. Cette extension apporte à tous les blogs hébergés par eux-même des fonctionnalités que l’on a habituellement uniquement sur la plateforme wordpress.com. </p>\n<p><img src="http://images.2803.fr/uploads/2012/11/jetpack-550x347.png" alt="" title="jetpack" width="550" height="347" class="aligncenter size-medium wp-image-14907"></p>\n<p>Avec Jetpack 2.0, l’utilisateur va pouvoir actionner 23 nouvelles extensions dont certaines vraiment intéressantes pour les blogs wordpress. Je l’ai installé hier sur 2803.fr, voici ma sélection de modules Jetpack qui valent le détour, parmi les 23 :</p>\n<blockquote>\n<p><strong>Photon</strong> : est une extension qui permet d’héberger chez wordpress.com toutes les images de vos articles et ainsi de bénéficier du CDN de wordpress, un sacré plus pour augmenter la rapidité de votre site. Reste à savoir où ce situent les CDN de wordpress parce que servir une image en provenance des US ne servira pas à grand chose pour un blog français…</p>\n<p><strong>Publicize</strong> : est un module qui va diffuser instantanément vos nouveaux articles sur votre profil facebook ou la page fan du site, sur Linkedin, Twitter, tumblr ou Yahoo. Un module qui vient donc en remplacement de beaucoup de plugins qui fonctionnaient de manière aléatoire. </p>\n<p><strong>Orthographe et Grammaire</strong> : un moyen de ne plus faire de fautes d’orthographe ou de grammaire!</p>\n<p><strong>Publier par email</strong> : un moyen intéressant pour mettre à jour son blog directement par email avec plus d’options de mise en forme présentées ici</p>\n<p><strong>Infinite scroll</strong> : une option simple pour remplacer la pagination classique par un scroll infini (il faut rendre compatible le thème en revanche), plus d’information ici\n</p>\n</blockquote>\n<p>Plus d’informations sur la page dédiée à cette extension : http://jetpack.me/</p>\n<hr>\n<strong>Vous venez de lire la version freemium de l''article, la version premium (avec les liens) est ici : </strong><a rel="nofollow" target="_blank" href="http://www.vingthuitzerotrois.fr/wordpress/wordpress-ameliore-son-jetpack-cest-vraiment-bien-14906/">WordPress améliore son Jetpack et c’est vraiment bien!</a><br>N''hésitez pas à suivre le compte <a rel="nofollow" target="_blank" href="http://twitter.com/henrilabarre">Twitter</a> et la page <a rel="nofollow" target="_blank" href="http://www.facebook.com/vingt.huit.zero.trois">Facebook</a><br>\n\nCopyright © 2005-2010 <strong><a rel="nofollow" target="_blank" href="http://www.2803media.fr/">2803 MEDIA</a></strong><br><hr>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"The Loop : WordCamp Paris 2013";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:110:"http://the-loop.fr/wordcamp-paris-2013/?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-paris-2013";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:110:"http://the-loop.fr/wordcamp-paris-2013/?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-paris-2013";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-11-02T16:38:02+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:3387:"<div>\n<p><img class="alignleft size-thumbnail wp-image-484" title="WordCamp Paris 2013" src="http://media.the-loop.fr/2012/11/logo-wordcamp-150x150.png" alt="WordCamp Paris 2013" width="150" height="150">Après avoir été initialement prévue pour novembre 2012, puis reportée à une date inconnue, la tenue du <strong>WordCamp Paris</strong> a enfin été confirmée en début de semaine ! Pas en 2012, mais en <strong>2013</strong>, plus précisément le <strong>vendredi 18 janvier</strong>.</p>\n<p><span id="more-482"></span></p>\n<p>Je ne vais pas vous refaire toute la présentation, celle-ci est déjà complète sur cet article du site officiel WordPress francophone : <a rel="nofollow" target="_blank" href="http://www.wordpress-fr.net/2012/10/29/wordcamp-paris-2013-date-appel-a-orateurs/">WordCamp Paris 2013 : date et appel à orateurs</a>. Rappelons seulement que l’équipe organisatrice est à la recherche d’orateurs pour proposer des conférences, bien entendu autour de WordPress, et accessibles à tous. Si vous avez des idées et de la motivation, lancez-vous !</p>\n<p>Julio de Boiteaweb a d’ailleurs mis en ligne <a rel="nofollow" target="_blank" href="https://docs.google.com/spreadsheet/viewform?formkey=dE9IVmw3WXdfNDNhSzZHLThnV2pqbmc6MQ">un petit sondage</a> afin de recueillir les sujets que les personnes aimeraient voir traités, allez donc faire vos propositions, ça peut toujours aider !</p>\n<p>D’un point de vu personnel, je ne me vois pas faire de conférence, (déjà car je n’ai pas vraiment d’idée de sujet, et ensuite car je ne m’en sens pas capable pour une première fois à cet évènement), mais j’ai hâte d’y être et de pouvoir rencontrer les personnes que je côtoie régulièrement sur Twitter principalement, et avec qui j’ai pas mal échangé (voir même travaillé avec) depuis un peu plus d’un an : Julio, Greg, Daniel, Willy…Mais également les autres, ceux que je ne connais pas encore, car en plus du savoir que l’ont peut acquérir grâce aux différentes interventions de la journée, je trouve que les les rencontres que l’on peut y faire tout aussi enrichissantes, à la fois à titre professionnel que personnel.</p>\n<p>Alors les amis (si vous me permettez), je vous donne rendez-vous (sauf accident) dans environ 2 mois, pour cette journée qui je l’espère sera riche en tout point !</p>\n<p>Article original <a rel="nofollow" target="_blank" href="http://the-loop.fr/wordcamp-paris-2013/">WordCamp Paris 2013</a> publié sur <a rel="nofollow" target="_blank" href="http://the-loop.fr/">The Loop</a> par <a rel="nofollow" target="_blank" href="http://the-loop.fr/author/remy/">Rémy</a></p>\n<div class="yarpp-related-rss">\n<p>Ces articles peuvent également vous intéresser : :</p>\n<ol>\n<li><a rel="nofollow" target="_blank" href="http://the-loop.fr/wordcamp-paris-2011-le-25-novembre/" title="WordCamp Paris 2011 le 25 novembre">WordCamp Paris 2011 le 25 novembre</a></li>\n</ol>\n</div>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"Fran6art : Ma veille en détails: historique et outils utilisés.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:61:"http://feedproxy.google.com/~r/Fran6artLeBlog/~3/SqxjR5rCujU/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:61:"http://feedproxy.google.com/~r/Fran6artLeBlog/~3/SqxjR5rCujU/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-10-16T14:35:34+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:14574:"<div>\n<p>Hier, mon ami Aurélien d’All For Design a publié <a rel="nofollow" target="_blank" href="http://all-for-design.com/web-design/les-outils-de-ma-veille/">un article intéressant</a> expliquant comment il fait sa veille. Je trouve la démarche très intéressante parce qu’elle permet à tous de découvrir de nouveaux sites et de nouveaux services. On faisait pas mal ça il y a quelques années, quand le blogging était à son apogée et on a un peu perdu cette habitude. Donc j’ai voulu, d’une certaine manière, répondre à Aurélien en détaillant ici comment je fais ma veille en ligne, comment je me tiens au courant des news du web.</p>\n<p><strong>Une question de temps</strong></p>\n<p>Je crois qu’avant de détailler comment je fais ma veille, il est important de parler du facteur temps. Quand j’ai commencé ce métier en 2005, je blogais beaucoup, je faisais énormément de veille. Je “veillais” jusqu’à 4/5 heures par jour à ce moment-là. Puis ma fille est arrivée en 2007, et tout à changé. La charge de travail a aussi considérablement augmenté, me laissant peu de temps pour me tenir au courant chaque jour.</p>\n<p>Jusqu’à il y a peu, ma veille était très simple. Elle se limitait à Google Reader et à <a rel="nofollow" target="_blank" href="https://twitter.com/Fran6/">Twitter</a>. Un grand classique. J’ai fait le tri dans mes flux RSS mais sans parvenir à tout lire régulièrement. Je me retrouvais donc avec plus de 1000 éléments à lire par moment et au final des articles datant de trop longtemps, sans oublier parfois le fait que je les avais déjà vu passer sur Twitter.</p>\n<p>J’ai donc laissé de côté les flux RSS et ai décidé de concentrer ma veille <a rel="nofollow" target="_blank" href="https://twitter.com/Fran6/">sur Twitter</a>. Je suis 500 personnes environ et j’ai déjà l’impression que c’est trop. Aurélien, dans son article, parle de veille passive et active. La veille sur Twitter est un mélange des deux pour moi. Elle est active parce que je suis là pour ça mais aussi passive parce que je lis globalement ce qui se dit sans pour autant faire vraiment de la veille. J’espère que je me fais bien comprendre ! <img src="http://www.fran6art.com/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" class="wp-smiley"></p>\n<p>Mais là encore, je ne suis pas toujours dispo, donc je loupe pas mal de choses intéressantes aussi sur Twitter. L’info y file à une vitesse grand V.</p>\n<p><strong>L’iPad, compagnon idéal pour la veille</strong></p>\n<p>Tout a commencé à changer quand je me suis acheté un iPad. Je lis énormément de livres mais très peu sur ordinateur. Du coup, la tablette était le bon compromis pour faire de la veille sans pour autant être bloqué derrière mon bureau. J’avais Twitter en poche, puis j’ai adopté <a rel="nofollow" target="_blank" href="http://www.instapaper.com/">Instapaper</a>. Super outil pour bookmarker des articles et les lire plus tard. <strong>A condition de les lire plus tard</strong>. J’ai accumulé, tout comme je faisais auparavant avec mes flux RSS et je n’arrivais pas à m’en sortir. J’ai donc “ressorti” aussi mes flux RSS en nettoyant bien la liste des sites que je suivais pour me concentrer sur le principal: A list Apart, Smashing Magazine, quelques sites d’UX, beaucoup de typo et puis basta. J’ai donc utilisé <a rel="nofollow" target="_blank" href="http://reederapp.com/">Reeder</a>, comme pas mal de monde sur OSX ou iOS, mais l’expérience utilisateur pour moi s’est avérée pas terrible. Je trouve que Reeder est très chouette au niveau style mais n’apporte pas vraiment grand chose de plus que Google Reader comme expérience. Ca reste un lecteur plutôt classique de flux RSS.</p>\n<p>J’ai donc testé <a rel="nofollow" target="_blank" href="http://flipboard.com/">Flipboard</a>. Super interface, on peut y ajouter nos flux RSS. Présentation magazine, c’était génial. J’en ai profité pour utiliser l’application pour d’autres sites que mes flux RSS. J’y ai même installé Twitter pour tout faire au même endroit. Super expérience mais un souci. Flipboard ne marque pas très bien les articles lus sur Google Reader. C’est un peu pénible à gérer. Si on trouve des articles qui nous intéressent pas, il faut quand même les ouvrir pour les “marquer comme lu”.</p>\n<p>Puis sont apparus trois outils qui ont considérablement changé ma manière de faire de la veille.</p>\n<p><strong>1. Zite</strong></p>\n<p><img class="aligncenter size-medium wp-image-1920" title="ipad" src="http://www.fran6art.com/wp-content/uploads/2012/10/ipad-470x396.png" alt="" width="470" height="396"></p>\n<p><a rel="nofollow" target="_blank" href="http://zite.com/">Zite</a> est une application qui vous propose toutes une séries d’articles, selon ce qui vous intéresse. En gros et pour faire simple, vous commencez avec une série d’articles, proposés un peu à la manière de Flipboard et à chaque fois vous avez la possibilité de dire si vous avez aimé l’article ou pas, et l’application vous proposera plus d’articles que vous aimez. Plus vous allez lire, plus les articles proposés seront proches de ce que vous voulez lire. Et pas besoin de compte Google Reader ici, les sources sont proposées par l’application. Donc pas de stress inutile à devoir lire “500 éléments non lus”. Les articles sont globalement de très bonne qualité et correspondent aux nouveautés du jour. Très intéressant quand vous avez un moment tranquille sur votre sofa, on a un peu l’impression de lire son journal sans trop savoir sur quoi on va tomber.</p>\n<p><strong>2. Feedly</strong></p>\n<p> \n</p>\n<p><a rel="nofollow" target="_blank" href="http://vimeo.com/49048256">The New Feedly Mobile</a> from <a rel="nofollow" target="_blank" href="http://vimeo.com/feedly">Feedly</a> on <a rel="nofollow" target="_blank" href="http://vimeo.com/">Vimeo</a>.</p>\n<p>J’avais testé l’application à ses débuts mais c’était trop buggé pour moi et pas assez original par rapport à un Flipboard. Sauf que les dernières versions se sont fortement améliorés et qu’elles apportent quelques nouveautés qui ont changé pas mal de choses pour moi.</p>\n<p>Pour ceux qui ne connaissent pas, Feedly est un lecteur de flux RSS, mais pas seulement, il propose maintenant des flux un peu comme Flipboard.</p>\n<p>Le souci de Feedly au départ était le même, justement, que pour Flipboard. Que faire quand on tombe sur une page avec des articles qu’on n’a pas trop envie de lire ? Il faut les ouvrir un par un pour les marquer comme lu. Relou. Avec la dernière version de Feedly, un swipe vers le bas sur la page marque les articles comme lus. Tip top et super simple. Je lis quelques blogs Apple ou encore The Verge et chez certains la quantité d’articles rédigés par jour est énorme et seulement une partie m’intéresse. Avec Reeder, j’aurais viré le flux parce que ça aurait rapidement été impossible à gérer ou j’aurais tout marqué comme lu. Avec Feedly, je parcoure les pages rapidement sur mon iPad, je swipe vers le bas pour marquer comme lu chaque page et je lis ce qui m’intéresse. Ca peut paraître con mais j’ai retrouvé le plaisir de lire mes flux RSS de manière simple et intuitive grâce à une très belle mise en page magazine. J’en profite aussi pour bookmarker certains articles sur <a rel="nofollow" target="_blank" href="http://http://getpocket.com">Pocket</a> ( qui a remplacé Instapaper chez moi…) même si comme expliqué plus haut, je bookmarke plus que je lis.</p>\n<p>En fait, le souci de ces outils comme Pocket, Instapaper ou même Google Reader, c’est que la plupart du temps, il est publié plus d’articles qu’on ne peut en lire. Donc c’est voué à l’échec d’une certaine manière, sauf si on a du temps…</p>\n<p><strong>3. Pinterest</strong></p>\n<p><img class="aligncenter size-medium wp-image-1921" title="Pinterest-application-ipad-android" src="http://www.fran6art.com/wp-content/uploads/2012/10/Pinterest-application-ipad-android-470x310.jpg" alt="" width="470" height="310"></p>\n<p>Pendant un moment j’ai utilisé <a rel="nofollow" target="_blank" href="https://gimmebar.com/">Gimme Bar</a> comme Aurélien pour toute une veille graphique: sites web, UX, illustration, photo et typo. Mais j’ai quelques soucis avec l’interface et pour bookmarker des sites web, j’utilise Little Snapper, malgré que ce soit loin d’être parfait. Gimme Bar a pourtant sorti une application iPhone mais elle n’est même pas finalisé, certaines fonctions affichent même un message “Coming soon”. Super.</p>\n<p>Et il y a quelques semaines, je décide de rouvrir <a rel="nofollow" target="_blank" href="http://pinterest.com/fran6/">mon compte Pinterest</a> et d’aller à la pêche aux idées. Et là, je suis surpris par la qualité des éléments partagés. C’est clair que si vous y recherchez des exemples de sites web, vous allez être déçus. Il y en a mais pas des masses. Par contre, pour toute autre inspiration, je trouve le site génial.</p>\n<p>Déjà il y a une communauté impressionnante. Difficile même parfois de suivre plus de 100 personnes tellement certaines proposent de nouvelles choses constamment. Les éléments que je préfère sont bien entendu <a rel="nofollow" target="_blank" href="http://pinterest.com/fran6/typography/">la typographie</a>. Je n’ai encore trouvé nulle part ailleurs autant de choses de qualité et aussi diversifiées. Vraiment sympa. Pas mal d’inspiration au niveau déco d’intérieur, print, illustration également. Personnellement, j’aime aussi aller chercher parfois mon inspiration dans des domaines qui sont plus annexes à mon activité. Et là j’y trouve mon compte.</p>\n<p>Un gros plus de Pinterest c’est aussi ses applications iPhone et iPad. Où que je sois, je peux accéder à ce que j’ai bookmarké. Et tout comme Zite par exemple, ici pas de chiffre d’éléments non lus. On surfe sur une page, on peut naviguer aussi selon des catégories. Encore une super veille à faire sur son sofa en soirée ! <img src="http://www.fran6art.com/wp-includes/images/smilies/icon_wink.gif" alt=";-)" class="wp-smiley"></p>\n<p>Enfin, c’est aussi un réseau social donc vous pouvez suivre vos amis ou vos designers préférés.</p>\n<p>Donc, vous l’aurez sûrement compris, je fais maintenant principalement ma veille sur tablette et quasiment plus sur mon ordinateur. Je suis aussi plus disponible pour faire cette veille via la tablette. Sur l’ordi, je ne consulte que Twitter au final, sur lequel je retweete pas mal de choses que je découvre. Le reste se fait le matin après le petit dej ou le soir après le travail. Je consulte rapidement Zite, puis Pinterest et déroule mes flux RSS. Et si j’ai le temps je lis quelques articles bookmarkés sur Pocket. C’est tout, mais c’est déjà pas mal, vu le temps qui m’est donné. Je dois avouer que l’iPad joue un rôle important ici. Sans lui je ne ferai probablement plus beaucoup de veille. A noter aussi que toujours grâce à ma tablette, je suis plus productif dans la journée car je ne fais pas vraiment de veille, hormis un peu Twitter.</p>\n<p>Voici donc ma méthode pour suivre l’actu web. Largement moins d’outils et de services qu’Aurélien mais plutôt un retour d’expérience comme j’aime les faire. Je ne dis pas non plus que c’est la manière idéale de faire de la veille mais c’est celle qui me correspond le mieux, avec le temps qui m’est donné <img src="http://www.fran6art.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley"></p>\n<p>N’hésitez pas à partager vos méthodes pour faire de la veille, que ce soit en commentaire ou, comme j’ai pu le faire après la lecture de l’article d’Aurélien, sur votre blog, si vous en avez un ! <img src="http://www.fran6art.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley"></p>\n<img src="http://www.fran6art.com/?ak_action=api_record_view&id=1917&type=feed" alt=""><div class="feedflare">\n<a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/Fran6artLeBlog?a=SqxjR5rCujU:k3kXTXqFDpU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Fran6artLeBlog?i=SqxjR5rCujU:k3kXTXqFDpU:D7DqB2pKExk" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/Fran6artLeBlog?a=SqxjR5rCujU:k3kXTXqFDpU:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/Fran6artLeBlog?i=SqxjR5rCujU:k3kXTXqFDpU:guobEISWfyQ" border="0"></a>\n</div>\n<img src="http://feeds.feedburner.com/~r/Fran6artLeBlog/~4/SqxjR5rCujU" height="1" width="1">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"Blog Tool Box : Sortie de WordPress 3.5 Beta 2";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:43:"http://blogtoolbox.fr/wordpress-3-5-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:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:43:"http://blogtoolbox.fr/wordpress-3-5-beta-2/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-10-13T13:06:53+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:2549:"<div>\n<p>Une petite brève pour signaler la sortie de <a rel="nofollow" target="_blank" href="http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/">WordPress 3.5 Beta 2 annoncée aujourd’hui</a>.</p>\n<p>Comme d’habitude, les bêtas ne doivent pas être utilisées sur des blogs en production mais simplement pour des tests ou pour y jeter un œil. Cette version peut être testée de deux différentes manières : via le <a rel="nofollow" target="_blank" href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">plugin WordPress Beta Tester</a> ou directement en téléchargeant le <a rel="nofollow" target="_blank" href="http://wordpress.org/wordpress-3.5-beta2.zip">fichier zip de la bêta</a> (zip).</p>\n<p>Les évolutions en résumé :</p>\n<ul>\n<li>Apparence : un écran d’accueil simplifié, un nouveau “color picker” et un tableau de bord adapté aux écrans Retina</li>\n<li>Accessibilité : amélioration de la navigation au clavier et de la lecture à l’écran</li>\n<li>Plugins : il est désormais possible de rechercher et d’installer des plugins que vous avez notés comme favoris sur WordPress.org</li>\n<li>Mobile : le protocole XML-RPC sera activé par défaut, il sera donc plus simple de relier votre blog avec vos applications mobiles WordPress</li>\n<li>Liens : la gestion des liens sera désactivée sur les nouvelles installations. Le plugin <a rel="nofollow" target="_blank" href="http://wordpress.org/extend/plugins/link-manager/">Link Manager</a> la remplacera.</li>\n<li>Médias : la gestion de ceux-ci est retravaillée en profondeur pour une toute nouvelle expérience (upload, galleries, insertion d’images dans les articles, etc)\n</li>\n</ul>\n<p>La version finale (WordPress 3.5) avait été annoncée pour le 5 décembre lors de la sortie de WordPress 3.5 Beta 1 mais la <a rel="nofollow" target="_blank" href="http://core.trac.wordpress.org/roadmap">roadmap WordPress</a> n’affiche pas encore de date figée.</p>\n<p>Par ailleurs, la nouvelle version du thème par défaut qui viendra avec cette version 3.5 de WordPress est déjà disponible au téléchargement et s’appelle <a rel="nofollow" target="_blank" href="http://wordpress.org/extend/themes/twentytwelve">Twenty Twelve</a>.</p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:70:"Lashon : Kimsufi nom de domaine en .FR – domaine sur serveur dédié";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:54:"http://lashon.fr/kimsufi-nom-de-domaine-serveur-dedie/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:54:"http://lashon.fr/kimsufi-nom-de-domaine-serveur-dedie/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-09-27T15:40:17+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:1290:"<div>\n<p>Kimsufi nom de domaine : comment ajouter un domaine .fr sur un serveur dédié. Tutoriel simple et sans console de lignes de commande pour ajouter un nom de domaine dans n''importe quelle extension, et notamment le cas particulier d''un ajout de domaine en .FR. L''extension en .FR a ses propres règles, imposées par l''Afnic, si bien que son ajout sur un serveur dédié peut s''avérer une prise de tête. Pourtant, il suffit de respecter scrupuleusement quelques étapes pour arriver à installer votre nom de domaine sur un serveur dédié, Kimsufi. Cet article est valable pour les autres serveurs dédiés. <a rel="nofollow" target="_blank" href="http://lashon.fr/kimsufi-nom-de-domaine-serveur-dedie/">Lire la suite <span class="meta-nav">→</span></a></p>\n<p>Exigez l''original ! ;-) \nL''original de cet article est là <a rel="nofollow" target="_blank" href="http://lashon.fr/kimsufi-nom-de-domaine-serveur-dedie/">Kimsufi nom de domaine en .FR – domaine sur serveur dédié</a> - écrit par <a rel="nofollow" target="_blank" href="http://lashon.fr/">WordPress Création Sites Internet - un blog de Tikoun, créateur Web (lashon)</a>\n\n</p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"Webinventif : [Wordpress] iTypo: thème WordPress gratuit";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:32:"http://www.webinventif.fr/itypo/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:32:"http://www.webinventif.fr/itypo/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2011-01-01T15:36:24+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s: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:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:5687:"<div>\n<p>Après 1 an sans rien avoir écrit sur ce blog (bouhhhh), je fais mon retour en vous proposant un joli <strong>thème WordPress</strong>, le 1er que je distribue publiquement et <em>gratuitement</em> évidement. D''ailleurs si les retours sont bons, ça sera peut-être le début d''une série plus ou moins longue.</p>\n<p><strong>iTypo</strong> est donc un thème WordPress simple et léger. A la base, je cherchais un thème pour un petit projet personnel qui soit assez épuré et léger pour mettre le contenu du blog en avant. Après de nombreuses recherches dans la jungle des thèmes WordPress, rien ne me convenait, et comme j''avais une idée très précise de ce que je voulais, j''ai fini par le faire moi-même ... l''histoire classique de la naissance d''un thème en somme <img src="http://www.webinventif.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" title="Icon Wink"></p>\n<p>Il est évidement "Widgets ready", compatible WordPress 3.0+, disponible en 4 coloris et 6 langues, convient parfaitement pour un blog perso ou un mini blog "à la Tumblr" et est absolument gratuit. <img src="http://www.webinventif.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" title="Icon Wink"></p>\n<p><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/pres1.png" alt="pres1" title="pres" class="aligncenter wp-image-621"></p>\n<h3>Telecharger le thème gratuitement</h3>\n<p> iTypo est sous license GPL , vous pouvez l''utiliser gratuitement pour vos projets sans restrictions</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complete.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complete-300x740.png" alt="capture-complete-300x740" title="capture-complete" class="alignnone size-medium wp-image-610"></a></p>\n<ul>\n<li><a rel="nofollow" target="_blank" href="http://themes.webinventif.fr/">Live demo</a></li>\n<li><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complete.png">Large preview (.png, 310 Kb)</a></li>\n<li><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/itypo/2/">Guide d''installation et documentation</a></li>\n<li><a rel="nofollow" target="_blank" href="http://goo.gl/H7i2c">Telecharger le .zip, v1.0.2 (zip, 353 kb)</a></li>\n</ul>\n<h3>Features</h3>\n<ul>\n<li>Widget ready (footer et sidebar)</li>\n<li>Disponible par défaut en 6 langues (et plus si nécessaire)</li>\n<li>4 coloris différents</li>\n<li>Facile à personnaliser avec sa page d''options</li>\n<li>Choix de miniatures carré ou large sur la page d''accueil</li>\n<li>Choix d''afficher un extrait ou le post complet sur la home</li>\n<li>WordPress Post Thumbnail activé</li>\n<li>Shortcode pour miniature</li>\n<li>JQuery Colorbox Lightbox (désactivable via la page d''options)</li>\n<li>"Sticky post" skinné</li>\n<li>Commentaires en "thread" (discussion)</li>\n<li>Mise en avant de l''auteur</li>\n<li>Logo personnalisable (upload d''image)</li>\n<li>Compatible Feedburner</li>\n<li> WP -pagenavi ready</li>\n<li>Et encore plein de petites choses ...</li>\n</ul>\n<h3>Captures</h3>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/commentaires.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/commentaires-300x894.png" alt="commentaires-300x894" title="commentaires" class="alignnone size-medium wp-image-615"></a><br>\n(Commentaires)</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/avec-thumb-wide.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/avec-thumb-wide-300x823.png" alt="avec-thumb-wide-300x823" title="avec-thumb-wide" class="alignnone size-medium wp-image-609"></a><br>\n(Avec miniatures larges)</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complet-fullpost.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complet-fullpost-300x1932.png" alt="capture-complet-fullpost-300x1932" title="capture-complet-fullpost" class="alignnone size-medium wp-image-614"></a><br>\n(Accueil avec les billets complets)</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/options-page.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/options-page-300x192.png" alt="options-page-300x192" title="options-page" class="alignnone size-medium wp-image-618"></a><br>\n(Page d''options)</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/upload-logo.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/upload-logo-300x202.png" alt="upload-logo-300x202" title="upload-logo" class="alignnone size-medium wp-image-619"></a><br>\n(Page d''upload de logo)</p>\n<p>A noter que même si il fonctionne sous IE6 et supérieur, certains effets CSS3 ne seront pas pris en charge (typographie personnalisée, ombres, inclinaisons, ...)</p>\n<p>Voilà, en espérant qu''il plaira à certains d''entre vous ! Comme je le distribue gratuitement, il serait fairplay de laisser les crédits du footer <img src="http://www.webinventif.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" title="Icon Wink"></p>\n<img src="http://www.webinventif.fr/wp-content/plugins/mycompteur/compte.php?idpage=608" width="0" height="0" alt="" title="">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:26:"wordpressfrancophoneplanet";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}s:4:"type";i:512;s:7:"headers";a:9:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"fOmNaFO1TD5hjZ9bk1zyTAtjx+4";s:13:"last-modified";s:29:"Mon, 08 Apr 2013 13:31:26 GMT";s:4:"date";s:29:"Mon, 08 Apr 2013 13:41:40 GMT";s:7:"expires";s:29:"Mon, 08 Apr 2013 13:41:40 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}s:5:"build";s:14:"20121202164312";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(124, '_transient_timeout_feed_mod_2fb9572e3d6a42f680e36370936a57ae', '1365471700', 'no'),
(125, '_transient_feed_mod_2fb9572e3d6a42f680e36370936a57ae', '1365428500', 'no'),
(126, '_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0', '1365471700', 'no'),
(127, '_transient_dash_aa95765b5cc111c56d5993d476b1c2f0', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://www.lumieredelune.com/encrelune/optimiser-wordpress-referencement,2013,04'' title=''Oui, WordPress est, à la base, plutôt bien conçu pour le référencement. Non, WordPress n’est pas, en version standard, totalement optimisé. Et cela peut être empiré par des thèmes mal construits, ou par des erreurs dans l’organisation et la structure de son blog. (On ne parlera pas ici de la performance, qui est aussi un […]''>Lumière de Lune : Corriger les défauts de base pour améliorer l’optimisation</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/Gd6d/~3/CGu869F9Xus/'' title=''Le nouveau thème par défaut est arrivé ! Livré avec la prochaine version de WordPress numérotée 3.6, ce nouveau thème marque un retour à une approche plus « blog », tout en conservant une facilité d’utilisation et graphique soigné. Voyons cela en détail et en démo à l’adresse : http://twentythirteen.gd6d.fr/. Un thème plutôt « blog » Par défaut, le thème se […]''>GD6D : Découverte du thème « TwentyThirteen »</a></li><li><a class=''rsswidget'' href=''http://wpchannel.com/wordpress-3-6-beta-1-telecharger/'' title=''WordPress 3.6 Beta 1 est disponible au téléchargement… à des fins de tests uniquement ! Ne l’utilisez surtout pas pour un site en production. Comme à l’accoutumée, testez et retestez vos thèmes, vos plugins et vos configurations serveurs et reportez les bugs. Les nouveautés annoncées dans cette version 3.6 de WordPress sont particulièrement intéressantes pou […]''>WordPress Channel : WordPress 3.6 Beta 1 à télécharger</a></li><li><a class=''rsswidget'' href=''http://www.seomix.fr/indexation-google/'' title=''6 bonnes pratiques pour indexer correctement et efficacement tout type de site Internet : l'arborescence, le maillage interne, le sitemap et bien plus. Article original : 6 bonnes pratiques pour l’indexation et le SEO. Debut du contenu : Pour avoir du trafic, il faut être bien positionné dans Google. Mais encore faut-il que les différentes pages du site […]''>SEOMix : 6 bonnes pratiques pour l’indexation et le SEO</a></li><li><a class=''rsswidget'' href=''http://www.echodesplugins.fr/plugins/wp-mailfrom-ii/'' title=''Modifier les en-têtes de vos mails issus de Wordpress […]''>L'écho des plugins WordPress : WP Mailfrom II</a></li></ul></div>', 'no'),
(128, '_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc', '1365471701', 'no'),
(129, '_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:51:"http://wordpress.org/extend/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:"Mon, 08 Apr 2013 13:36: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: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: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:55:"http://wordpress.org/extend/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:42:"23862@http://wordpress.org/extend/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: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: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:60:"http://wordpress.org/extend/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:41:"8321@http://wordpress.org/extend/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: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:66:"http://wordpress.org/extend/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:42:"18101@http://wordpress.org/extend/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: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:77:"http://wordpress.org/extend/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:41:"2316@http://wordpress.org/extend/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 & 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:"";}}}}}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: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:52:"http://wordpress.org/extend/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:39:"15@http://wordpress.org/extend/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: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: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:61:"http://wordpress.org/extend/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:41:"2141@http://wordpress.org/extend/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:6;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"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:70:"http://wordpress.org/extend/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:40:"132@http://wordpress.org/extend/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: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: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:64:"http://wordpress.org/extend/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:42:"32088@http://wordpress.org/extend/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:4:"Josh";s: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:24:"Fast Secure 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:63:"http://wordpress.org/extend/plugins/si-contact-form/#post-12636";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 27 Aug 2009 01:20:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"12636@http://wordpress.org/extend/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:"A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mike Challis";s: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: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:65:"http://wordpress.org/extend/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:40:"753@http://wordpress.org/extend/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: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:32:"Yet Another Related Posts Plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/#post-2769";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 02 Jan 2008 13:05: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:41:"2769@http://wordpress.org/extend/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:122:"Display a list of related entries on your site and feeds based on a unique algorithm. Now with thumbnail support built-in!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:35:"mitcho (Michael Yoshitaka Erlewine)";s: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: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:62:"http://wordpress.org/extend/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:41:"1169@http://wordpress.org/extend/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: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:22:"Advanced Custom Fields";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wordpress.org/extend/plugins/advanced-custom-fields/#post-25254";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 17 Mar 2011 04:07:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"25254@http://wordpress.org/extend/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:150:"Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web dev";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"elliotcondon";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:18:"Better WP Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/extend/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"21738@http://wordpress.org/extend/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:107:"The easiest, most effective way to secure WordPress. Improve the security of any WordPress site in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"ChrisWiegman";s: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: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:67:"http://wordpress.org/extend/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:42:"26890@http://wordpress.org/extend/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:"";}}}}}}}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:52:"http://wordpress.org/extend/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:"Mon, 08 Apr 2013 13:41:41 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:"Mon, 08 Apr 2013 14:11:32 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Mon, 08 Apr 2013 13:36:32 +0000";s:4:"x-nc";s:11:"HIT luv 138";}s:5:"build";s:14:"20121202164312";}', 'no'),
(130, '_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1365471701', 'no'),
(131, '_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1365428501', 'no'),
(132, '_transient_timeout_feed_57bc725ad6568758915363af670fd8bc', '1365471701', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(133, '_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:47:"http://wordpress.org/extend/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:"Mon, 08 Apr 2013 13:33:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:"WP BASIC SEO 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:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/wp-basic-seo-meta/#post-51671";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 06 Apr 2013 23:01: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:42:"51671@http://wordpress.org/extend/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:53:"This is a basic seo meta tag generator 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"gabrielcastillo";s: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:37:"Custom Profile Filters for BuddyPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.org/extend/plugins/buddypress-custom-profile-filters/#post-51699";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 07 Apr 2013 20:45:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"51699@http://wordpress.org/extend/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:96:"Allows users to take control of the way that the links in their Buddypress profiles are handled.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"antonchanning";s: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:25:"PressLabs Site Protection";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wordpress.org/extend/plugins/presslabs-site-protection/#post-51612";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 05 Apr 2013 13:52: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:42:"51612@http://wordpress.org/extend/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:140:"Site protection plugin for dev instances to avoid indexing by search engines. Doesn't allow access to the site without being logged-in.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:37:"PressLabs - Innovation for publishers";s: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:23:"Embed tldr.io summaries";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/extend/plugins/embed-tldrio-summaries/#post-51524";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 12:42: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:42:"51524@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"Embed summaries of any article (including yours) in your posts.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"tldr.io";s: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:23:"Video and Audio BBCodes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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.org/extend/plugins/video-audio-bbcodes/#post-51700";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 07 Apr 2013 20:50:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"51700@http://wordpress.org/extend/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:"This plugin adds support for video and audio shortcodes to posts and pages. \nIf you have 'bbPress2 shortcode whitelist' installed, you can";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"antonchanning";s: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:27:"Comicpress Keyboard Control";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wordpress.org/extend/plugins/comicpress-keyboard-control/#post-51668";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 06 Apr 2013 21:23: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"51668@http://wordpress.org/extend/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:90:"Allows for the use of arrow keys when navigating your comics. Designed for Comicpress 2.9.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"Giwayume";s: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:7:"SoShake";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/extend/plugins/soshake/#post-50670";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 13 Mar 2013 15:26:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"50670@http://wordpress.org/extend/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:"Easy integration of the social plugin for your website. Social sharing, Social Graph, Social 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"soshake";s: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:26:"Webwiki Rating and Reviews";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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.org/extend/plugins/webwiki-siterateing/#post-51517";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 10:32:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"51517@http://wordpress.org/extend/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:"Display your Domains Webwiki rating. The Webwiki plugin allows users to see how trustworthy your website is and gives them the opportunity to leave a";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"GF Consulting";s: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:9:"SoldPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/extend/plugins/soldpress/#post-51701";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 07 Apr 2013 23:02:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"51701@http://wordpress.org/extend/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:122:"SoldPress is a WordPress plugin to enable CREA’s members to easily disseminate MLS® listing content on WordPress Sites.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Sanskript";s: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:22:"Quick Bangla installer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/extend/plugins/quick-bangla-installer/#post-51685";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 07 Apr 2013 18:19: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:42:"51685@http://wordpress.org/extend/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:56:"This plugin installs Bengali Language on wordpress site.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"monirulalom";s: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:37:"Facebook, Google+ & Twitter Share";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/extend/plugins/facebook-google-twitter-share/#post-51677";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 07 Apr 2013 08:10:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"51677@http://wordpress.org/extend/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:"Facebook, Google+ and Twitter share. Easy to use, just install and activate. No database table will be create. No javascript or js file required.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"rranveer4";s: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:21:"Simple RSS Aggregator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/extend/plugins/simple-rss-aggregator/#post-51458";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 03 Apr 2013 00:47: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:42:"51458@http://wordpress.org/extend/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:66:"Imports and aggregates RSS Feeds using each user as feed 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:9:"webarthur";s: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:30:"Silencesoft Disable Menu Items";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:78:"http://wordpress.org/extend/plugins/silencesoft-disable-menu-items/#post-51447";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 02 Apr 2013 19:48: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"51447@http://wordpress.org/extend/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:45:"This plugin allow to hide or show menu items,";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"silence";s: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:19:"Bulk Comment Remove";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/extend/plugins/rmoov-link-removal/#post-51253";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Mar 2013 02:22: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:42:"51253@http://wordpress.org/extend/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:90:"A plugin to link your rmoov webmaster account to your wordpress blog for easy link cleanup";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"[email protected]";s: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:14:"guest-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/extend/plugins/guest-comments/#post-51673";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 07 Apr 2013 06:18: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:42:"51673@http://wordpress.org/extend/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:147:"Allow logged-in users to provide custom name/email/website when they make comments. Also allows hiding website (URL) field from the comments 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"josephr5000";s: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:48:"http://wordpress.org/extend/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:7:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Mon, 08 Apr 2013 13:41:42 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Sat, 06 Apr 2013 23:01:57 GMT";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20121202164312";}', 'no'),
(134, '_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc', '1365471701', 'no'),
(135, '_transient_feed_mod_57bc725ad6568758915363af670fd8bc', '1365428501', 'no'),
(136, '_transient_timeout_plugin_slugs', '1365514901', 'no'),
(137, '_transient_plugin_slugs', 'a:2:{i:0;s:19:"akismet/akismet.php";i:1;s:9:"hello.php";}', 'no'),
(138, '_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e', '1365471702', 'no'),
(139, '_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e', '<h4>Plus populaire</h4>\n<h5><a href=''http://wordpress.org/extend/plugins/contact-form-plugin/''>Contact Form</a></h5> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=contact-form-plugin&_wpnonce=3835dd9c40&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''Contact Form''>Installer</a>)</span>\n<p>Add Contact Form to your WordPress website.</p>\n<h4>Nouvelles extensions</h4>\n<h5><a href=''http://wordpress.org/extend/plugins/video-audio-bbcodes/''>Video and Audio BBCodes</a></h5> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=video-audio-bbcodes&_wpnonce=9f043ea249&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''Video and Audio BBCodes''>Installer</a>)</span>\n<p>This plugin adds support for video and audio shortcodes to posts and pages. \nIf you have 'bbPress2 shortcode whitelist' installed, you can</p>\n', 'no');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2013-04-08 13:41:27', '2013-04-08 13:41:27', 'Bienvenue dans WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !', 'Bonjour tout le monde !', '', 'publish', 'open', 'open', '', 'bonjour-tout-le-monde', '', '', '2013-04-08 13:41:27', '2013-04-08 13:41:27', '', 0, 'http://atelierweb.localhost/?p=1', 0, 'post', '', 1),
(2, 1, '2013-04-08 13:41:27', '2013-04-08 13:41:27', 'Voici un exemple de page. Elle est différente d’un article de blog, en cela qu''elle restera à la même place, et s''affichera dans le menu de navigation de votre site (en fonction de votre thème). La plupart des gens commencent par écrire une page « À Propos » qui les présente aux visiteurs potentiels du site. Vous pourriez y écrire quelque chose de ce tenant :\n\n<blockquote>Bonjour ! Je suis un mécanicien qui aspire à devenir un acteur, et voici mon blog. J''habite à Bordeaux, j''ai un super chien baptisé Russell, et j''aime la vodka-ananas (ainsi que regarder la pluie tomber).</blockquote>\n\n...ou bien quelque chose comme ça :\n\n<blockquote>La société 123 Machin Truc a été créée en 1971, et n''a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules super pour la communauté bouzemontoise.</blockquote>\n\nÉtant donné que vous êtes un nouvel utilisateur de WordPress, vous devriez vous rendre sur votre <a href="http://atelierweb.localhost/wp-admin/">tableau de bord</a> pour effacer la présente page, et créer de nouvelles pages avec votre propre contenu. Amusez-vous bien !', 'Page d’exemple', '', 'publish', 'open', 'open', '', 'page-d-exemple', '', '', '2013-04-08 13:41:27', '2013-04-08 13:41:27', '', 0, 'http://atelierweb.localhost/?page_id=2', 0, 'page', '', 0),
(3, 1, '2013-04-08 14:41:37', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2013-04-08 14:41:37', '0000-00-00 00:00:00', '', 0, 'http://atelierweb.localhost/?p=3', 0, 'post', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Non classé', 'non-classe', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE IF NOT EXISTS `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;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) 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', '3');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'admin', '$P$Bvu/Lvl5IRbgjaaroK7MQs4GYMwTkS/', 'admin', '[email protected]', '', '2013-04-08 13:41:26', '', 0, 'admin');
-- login: admin / password: admin
/*!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 */;