-
Notifications
You must be signed in to change notification settings - Fork 0
/
localhost.sql
952 lines (882 loc) · 333 KB
/
localhost.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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
-- phpMyAdmin SQL Dump
-- version 3.4.11.1deb2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 15, 2014 at 08:06 PM
-- Server version: 5.5.35
-- PHP Version: 5.4.4-14+deb7u8
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: `db_mandre`
--
CREATE DATABASE `db_mandre` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `db_mandre`;
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- 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/', '', '2014-04-14 12:48:48', '2014-04-14 12:48:48', '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),
(2, 5, 'mandre', 'mandre@student.42.fr', '', '62.210.33.95', '2014-04-14 14:07:49', '2014-04-14 13:07:49', 'Super, je sais créer un article, une page et un commentaire ! Passons à la suite ! Mandre', 0, '1', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.149 Safari/537.36', '', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `wp_easymail_recipients`
--
CREATE TABLE IF NOT EXISTS `wp_easymail_recipients` (
`ID` int(11) unsigned NOT NULL AUTO_INCREMENT,
`newsletter` int(11) unsigned NOT NULL,
`email` varchar(100) NOT NULL,
`result` varchar(3) NOT NULL DEFAULT '0',
`user_id` int(11) unsigned DEFAULT NULL,
PRIMARY KEY (`ID`),
KEY `newsletter` (`newsletter`),
KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_easymail_stats`
--
CREATE TABLE IF NOT EXISTS `wp_easymail_stats` (
`ID` int(11) unsigned NOT NULL AUTO_INCREMENT,
`recipient` int(11) unsigned NOT NULL,
`newsletter` int(11) unsigned NOT NULL,
`added_on` datetime NOT NULL,
`request` text,
PRIMARY KEY (`ID`),
KEY `newsletter` (`newsletter`),
KEY `recipient` (`recipient`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_easymail_subscribers`
--
CREATE TABLE IF NOT EXISTS `wp_easymail_subscribers` (
`ID` int(11) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(100) NOT NULL,
`name` varchar(100) NOT NULL,
`join_date` datetime NOT NULL,
`active` int(1) NOT NULL DEFAULT '0',
`unikey` varchar(24) NOT NULL,
`lists` varchar(255) DEFAULT '|',
`lang` varchar(5) DEFAULT NULL,
`last_act` datetime DEFAULT NULL,
`ip_address` varchar(50) DEFAULT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_easymail_unsubscribed`
--
CREATE TABLE IF NOT EXISTS `wp_easymail_unsubscribed` (
`email` varchar(100) NOT NULL,
`added_on` datetime NOT NULL,
PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_easymail_unsubscribed`
--
INSERT INTO `wp_easymail_unsubscribed` (`email`, `added_on`) VALUES
('andre.marian.78@gmail.com', '2014-04-14 18:14:35'),
('mandre@student.42.fr', '2014-04-15 19:05:36');
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=406 ;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://wp.webusco.fr/mandre', 'yes'),
(2, 'blogname', 'Wordpress HEC', 'yes'),
(3, 'blogdescription', 'Un site utilisant WordPress', 'yes'),
(4, 'users_can_register', '1', 'yes'),
(5, 'admin_email', 'mandre@student.42.fr', 'yes'),
(6, 'start_of_week', '1', 'yes'),
(7, 'use_balanceTags', '0', 'yes'),
(8, 'use_smilies', '1', 'yes'),
(9, 'require_name_email', '1', 'yes'),
(10, 'comments_notify', '1', 'yes'),
(11, 'posts_per_rss', '10', 'yes'),
(12, 'rss_use_excerpt', '0', 'yes'),
(13, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 'mailserver_login', 'login@example.com', 'yes'),
(15, 'mailserver_pass', 'password', 'yes'),
(16, 'mailserver_port', '110', 'yes'),
(17, 'default_category', '1', 'yes'),
(18, 'default_comment_status', 'open', 'yes'),
(19, 'default_ping_status', 'open', 'yes'),
(20, 'default_pingback_flag', '0', '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', '/%postname%/', 'yes'),
(31, 'gzipcompression', '0', 'yes'),
(32, 'hack_file', '0', 'yes'),
(33, 'blog_charset', 'UTF-8', 'yes'),
(34, 'moderation_keys', '', 'no'),
(35, 'active_plugins', 'a:2:{i:0;s:29:"alo-easymail/alo-easymail.php";i:1;s:23:"social-plugin/index.php";}', 'yes'),
(36, 'home', 'http://wp.webusco.fr/mandre', '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', 'a:5:{i:0;s:62:"/var/www/wp/mandre/wp-content/themes/42born2code/shop_page.php";i:2;s:59:"/var/www/wp/mandre/wp-content/themes/42born2code/header.php";i:3;s:66:"/var/www/wp/mandre/wp-content/themes/42born2code/page-archives.php";i:4;s:62:"/var/www/wp/mandre/wp-content/themes/42born2code/page-full.php";i:5;s:57:"/var/www/wp/mandre/wp-content/themes/42born2code/page.php";}', 'no'),
(44, 'template', '42born2code', 'yes'),
(45, 'stylesheet', '42born2code', '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', 'author', 'yes'),
(52, 'db_version', '26691', 'yes'),
(53, 'uploads_use_yearmonth_folders', '1', 'yes'),
(54, 'upload_path', '', 'yes'),
(55, 'blog_public', '0', '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:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(83, 'widget_text', 'a:2:{i:2;a:3:{s:5:"title";s:12:"Le programme";s:4:"text";s:180:"<ul>\r\n<li><a href="#">42.1</a></li>\r\n<li><a href="#">42.2</a></li>\r\n<li><a href="#">42.3</a></li>\r\n<li><a href="#">42.4 & 42.5</a></li>\r\n<li><a href="#">En détails</a></li>\r\n</ul>";s:6:"filter";b:0;}s:12:"_multiwidget";i:1;}', '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', '26691', 'yes'),
(92, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:70:{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:25:"manage_newsletter_options";b:1;s:29:"manage_newsletter_subscribers";b:1;s:19:"publish_newsletters";b:1;s:16:"edit_newsletters";b:1;s:23:"edit_others_newsletters";b:1;s:18:"delete_newsletters";b:1;s:25:"delete_others_newsletters";b:1;s:24:"read_private_newsletters";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:39:{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:19:"publish_newsletters";b:1;s:16:"edit_newsletters";b:1;s:23:"edit_others_newsletters";b:1;s:18:"delete_newsletters";b:1;s:25:"delete_others_newsletters";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:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_recent-posts', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_recent-comments', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(97, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'sidebars_widgets', 'a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:2:{i:0;s:6:"text-2";i:1;s:21:"alo-easymail-widget-2";}s:9:"sidebar-2";a:2:{i:0;s:10:"nav_menu-2";i:1;s:21:"alo-easymail-widget-3";}s:13:"array_version";i:3;}', 'yes'),
(99, 'cron', 'a:7:{i:1397585488;a:1:{s:12:"alo_em_batch";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:15:"alo_em_interval";s:4:"args";a:0:{}s:8:"interval";i:295;}}}i:1397586900;a:1:{s:20:"wp_maybe_auto_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1397609331;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1397617973;a:1:{s:15:"alo_em_schedule";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1397652568;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1397653087;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(101, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:3:{i:0;O:8:"stdClass":10:{s:8:"response";s:7:"upgrade";s:8:"download";s:65:"https://downloads.wordpress.org/release/fr_FR/wordpress-3.8.3.zip";s:6:"locale";s:5:"fr_FR";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:65:"https://downloads.wordpress.org/release/fr_FR/wordpress-3.8.3.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"3.8.3";s:7:"version";s:5:"3.8.3";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.8";s:15:"partial_version";s:0:"";}i:1;O:8:"stdClass":10:{s:8:"response";s:7:"upgrade";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-3.8.3.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-3.8.3.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-3.8.3-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-3.8.3-new-bundled.zip";s:7:"partial";s:69:"https://downloads.wordpress.org/release/wordpress-3.8.3-partial-2.zip";s:8:"rollback";b:0;}s:7:"current";s:5:"3.8.3";s:7:"version";s:5:"3.8.3";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.8";s:15:"partial_version";s:5:"3.8.2";}i:2;O:8:"stdClass":10:{s:8:"response";s:10:"autoupdate";s:8:"download";s:65:"https://downloads.wordpress.org/release/fr_FR/wordpress-3.8.3.zip";s:6:"locale";s:5:"fr_FR";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:65:"https://downloads.wordpress.org/release/fr_FR/wordpress-3.8.3.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"3.8.3";s:7:"version";s:5:"3.8.3";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.8";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1397566216;s:15:"version_checked";s:5:"3.8.2";s:12:"translations";a:0:{}}', 'yes'),
(106, '_site_transient_timeout_browser_9d70a130fa6dfe3e1191418f5707e21e', '1398084537', 'yes'),
(107, '_site_transient_browser_9d70a130fa6dfe3e1191418f5707e21e', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"33.0.1750.149";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, 'can_compress_scripts', '0', 'yes'),
(121, '_transient_timeout_plugin_slugs', '1397642412', 'no'),
(122, '_transient_plugin_slugs', 'a:4:{i:0;s:19:"akismet/akismet.php";i:1;s:29:"alo-easymail/alo-easymail.php";i:2;s:9:"hello.php";i:3;s:23:"social-plugin/index.php";}', 'no'),
(126, '_transient_twentyfourteen_category_count', '1', 'yes'),
(129, '_site_transient_timeout_wporg_theme_feature_list', '1397490674', 'yes'),
(130, '_site_transient_wporg_theme_feature_list', 'a:5:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:7:"Columns";a:6:{i:0;s:10:"one-column";i:1;s:11:"two-columns";i:2;s:13:"three-columns";i:3;s:12:"four-columns";i:4;s:12:"left-sidebar";i:5;s:13:"right-sidebar";}s:6:"Layout";a:3:{i:0;s:12:"fixed-layout";i:1;s:12:"fluid-layout";i:2;s:17:"responsive-layout";}s:8:"Features";a:20:{i:0;s:19:"accessibility-ready";i:1;s:8:"blavatar";i:2;s:10:"buddypress";i:3;s:17:"custom-background";i:4;s:13:"custom-colors";i:5;s:13:"custom-header";i:6;s:11:"custom-menu";i:7;s:12:"editor-style";i:8;s:21:"featured-image-header";i:9;s:15:"featured-images";i:10;s:15:"flexible-header";i:11;s:20:"front-page-post-form";i:12;s:19:"full-width-template";i:13;s:12:"microformats";i:14;s:12:"post-formats";i:15;s:20:"rtl-language-support";i:16;s:11:"sticky-post";i:17;s:13:"theme-options";i:18;s:17:"threaded-comments";i:19;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(131, 'theme_mods_twentyfourteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1397479893;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}}}}', 'yes'),
(132, 'current_theme', '42borntocode', 'yes'),
(133, 'theme_mods_42born2code', 'a:7:{i:0;b:0;s:16:"background_color";s:0:"";s:16:"background_image";s:0:"";s:17:"background_repeat";s:6:"repeat";s:21:"background_position_x";s:4:"left";s:21:"background_attachment";s:5:"fixed";s:18:"nav_menu_locations";a:1:{s:12:"primary-menu";i:7;}}', 'yes'),
(134, 'theme_switched', '', 'yes'),
(135, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1397582798;s:7:"checked";a:4:{s:11:"42born2code";s:3:"1.0";s:14:"twentyfourteen";s:3:"1.0";s:14:"twentythirteen";s:3:"1.1";s:12:"twentytwelve";s:3:"1.3";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(137, 'category_children', 'a:0:{}', 'yes'),
(144, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(146, 'widget_nav_menu', 'a:2:{i:2;a:2:{s:5:"title";s:12:"L''équipe 42";s:8:"nav_menu";i:6;}s:12:"_multiwidget";i:1;}', 'yes'),
(149, 'recently_activated', 'a:1:{s:10:"plugin.php";i:1397555499;}', 'yes'),
(152, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1397555541;s:7:"checked";a:4:{s:19:"akismet/akismet.php";s:5:"2.6.0";s:29:"alo-easymail/alo-easymail.php";s:6:"2.5.01";s:9:"hello.php";s:3:"1.6";s:23:"social-plugin/index.php";s:13:"v0.0001 alpha";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(153, 'alo_em_template', 'Hi [USER-NAME],<br /><br />\n I have published a new post <strong>[POST-TITLE]</strong>.<br />[POST-EXCERPT]<br />Please visit my site [SITE-LINK] to read it and leave your comment about it.<br />\n Hope to see you online!<br /><br />[SITE-LINK]', 'yes'),
(154, 'alo_em_list', '', 'yes'),
(155, 'alo_em_lastposts', '10', 'yes'),
(156, 'alo_em_dayrate', '2000', 'yes'),
(157, 'alo_em_batchrate', '25', 'yes'),
(158, 'alo_em_sleepvalue', '0', 'yes'),
(159, 'alo_em_sender_email', 'mandre@student.42.fr', 'yes'),
(160, 'alo_em_sender_name', 'Wordpress HEC', 'yes'),
(161, 'alo_em_import_alert', 'show', 'yes'),
(162, 'alo_em_timeout_alert', 'show', 'yes'),
(163, 'alo_em_delete_on_uninstall', 'no', 'yes'),
(164, 'alo_em_show_subscripage', 'no', 'yes'),
(165, 'alo_em_embed_css', 'no', 'yes'),
(166, 'alo_em_no_activation_mail', 'no', 'yes'),
(167, 'alo_em_show_credit_banners', 'yes', 'yes'),
(168, 'alo_em_filter_br', 'no', 'yes'),
(169, 'alo_em_filter_the_content', 'yes', 'yes'),
(170, 'alo_em_js_rec_list', 'ajax_normal', 'yes'),
(171, 'alo_em_use_themes', 'yes', 'yes'),
(172, 'alo_em_publish_newsletters', 'yes', 'yes'),
(173, 'alo_em_hide_widget_users', 'no', 'yes'),
(174, 'alo_em_txtpre_activationmail_subj_default', 'a:23:{s:2:"en";s:50:"Confirm your subscription to %BLOGNAME% Newsletter";s:2:"br";s:53:"Confirme a sua assinatura na newsletter de %BLOGNAME%";s:2:"ca";s:65:"Confirmi la seva subscripció a la llista de correu de %BLOGNAME%";s:2:"cs";s:37:"Potvrďte odběr novinek z %BLOGNAME%";s:2:"da";s:49:"Bekræft dit abonnement på %BLOGNAME% nyhedsbrev";s:2:"de";s:56:"Bestätigung Ihres Newsletter Abonnements von %BLOGNAME%";s:2:"el";s:97:"Επιβεβαιώσετε την εγγραφή σας στην %BLOGNAME% Δελτίο νέων";s:2:"es";s:49:"Confirmar su suscripción a %BLOGNAME% Newsletter";s:2:"et";s:45:"Kinnita oma liitumist %BLOGNAME% uudiskirjaga";s:2:"fa";s:75:"اشتراک خود را به %EMANGOLB% خبرنامه تایید کنید";s:2:"fi";s:39:"Vahvista %BLOGNAME% uutiskirjeen tilaus";s:2:"fr";s:58:"Veuillez confirmer votre abonnement au bulletin %BLOGNAME%";s:2:"he";s:52:"אשר את הרשמתך לעלון של %BLOGNAME% ";s:2:"hu";s:62:"Megerősítés a %BLOGNAME% hírlevélre való feliratkozásra";s:2:"it";s:56:"Conferma la sua iscrizione alla Newsletter su %BLOGNAME%";s:2:"nl";s:53:"Bevestig uw aanmelding voor de %BLOGNAME% Nieuwsbrief";s:2:"pl";s:71:"Prosimy o potwierdzenia chęci zapisania się do %BLOGNAME% Newslettera";s:2:"pt";s:53:"Confirme a sua assinatura na newsletter de %BLOGNAME%";s:2:"ro";s:46:"Confirmă abonamentul la newsletter %BLOGNAME%";s:2:"sk";s:42:"Potvrďte zasielanie noviniek z %BLOGNAME%";s:2:"sv";s:52:"Verifiera din prenumeration av %BLOGNAME% nyhetsbrev";s:2:"tr";s:45:"%BLOGNAME% Bülten aboneliğinizi onaylayın";s:2:"zh";s:45:"向 %BLOGNAME% 时事通讯确认您的订阅";}', 'yes'),
(175, 'alo_em_txtpre_activationmail_mail_default', 'a:23:{s:2:"en";s:257:"Hi %NAME%,\nto complete your subscription to %BLOGNAME% newsletter you need to click on the following link (or paste it in the address bar of your browser):\n\n%ACTIVATIONLINK%\n\nIf you did not ask for this subscription ignore this message.\nThank you\n%BLOGNAME%";s:2:"br";s:240:"Olá %NAME%,\npara completar a assinatura na newsletter de %BLOGNAME% clique no seguinte link (ou copie-o para a barra de endereço do seu navegador):\n\n%ACTIVATIONLINK%\n\nSe não pediu esta assinatura ignore esta mensagem.\nObrigado\n%BLOGNAME%";s:2:"ca";s:276:"Hola %NAME%,\nper a completar la subscripció a la llista de correu de %BLOGNAME% cliqui al següent enllaç (o copiï''l i enganxi''l a la barra d''adreces del seu navegador):\n\n%ACTIVATIONLINK%\n\nSi no ha demanat la subscripció, pot descartar aquest missatge.\nGràcies\n%BLOGNAME%";s:2:"cs";s:206:"Ahoj %NAME%,\npro dokončení přihlášení k odběru novinek z %BLOGNAME% klikněte na tento odkaz:\n\n%ACTIVATIONLINK%\n\nPokud jste nežádal o zasílání novinek, ignorujte tuto zprávu.\nDěkuji\n%BLOGNAME%";s:2:"da";s:280:"Hej %NAME%,\nfor at bekræfte dit abonnement af %BLOGNAME% nyhedsbrev skal du klikke på følgende link (eller kopiere det til adresslinien i din browser):\n\n\n%ACTIVATIONLINK%\n\n\nHvis du ikke har anmodet om abonnement på vores nyhedsbrev så ignorer denne meddelelse.\nTak\n%BLOGNAME%";s:2:"de";s:315:"Hallo %NAME%,\num Ihr Abonnement des %BLOGNAME% Newsletters abzuschließen müssen Sie auf den folgenden Link klicken (oder ihn in der Adressleiste Ihres Browsers eingeben):\n\n%ACTIVATIONLINK%\n\nWenn Sie diesen Newsletter nicht abonniert haben, ignorieren Sie bitte diese Nachricht.\nDanke für Ihr Interesse\n%BLOGNAME%";s:2:"el";s:471:"Γεια %NAME%,\nγια να ολοκληρώσετε την εγγραφή σας στο δελτίο νέων του %BLOGNAME% πρέπει να κάνετε κλικ στο παρακάτω σύνδεσμο (ή επικολλήστε το στη γραμμή διευθύνσεων του browser σας):\n\n%ACTIVATIONLINK%\n\nΕάν δεν ζητήσατε αυτή τη συνδρομή αγνοήστε αυτό το μήνυμα.\nΕυχαριστούμε\n%BLOGNAME%";s:2:"es";s:244:"Hola %NAME%,\npara completar su suscripción de %BLOGNAME% haga click en el siguiente link (o peguelo en la barra de direcciones de su navegador):\n\n%ACTIVATIONLINK%\n\nSi ud. no pidió la suscripción ignore este mensaje.\nMuchas gracias\n%BLOGNAME%";s:2:"et";s:266:"Tere, %NAME%,\n%BLOGNAME% uudiskirjaga liitumise kinnitamiseks vajuta järgnevat linki (või kopeerige see oma veebilehitseja aadressribale):\n\n%ACTIVATIONLINK%\n\nKui Te ei ole soovinud uudiskirjaga liituda, siis jätke käesolev kiri tähelepanuta.\nTäname!\n%BLOGNAME%";s:2:"fa";s:409:"سلام %EMAN%\nبرای کامل شدن روند اشتراک شما به خبرنامه %EMANGOLB% بایستی بر روی پیوند آمده کلیک کنید (یا در محل آدرسبار مرورگرتان پیست کنید):\n\n%KNLNOITAVITCA%\n\nاگر شما درخواست این اشتراک را صادر نکرده اید این پیغام را نادیده بگیرید.\nممنون\n%EMANGOLB%";s:2:"fi";s:286:"Tervehdys %NAME%,\nvahvista sivuston %BLOGNAME% uutiskirjeen tilaaminen klikkaamalla tätä linkkiä (tai kopioi ja liitä linkki selaimesi osoitepalkkiin):\n\n%ACTIVATIONLINK%\n\nJos et ole itse tilannut uutiskirjettä, ole hyvä ja jätä tämä sähköposti huomiotta. \nKiitos!\n%BLOGNAME%";s:2:"fr";s:346:"Bonjour %NAME%,\nPour confirmer votre demande d''inscription à notre bulletin %BLOGNAME% vous devez CLIQUER sur le lien suivant (ou le copier puis le coller dans la barre d''adresse de votre navigateur internet):\n\n%ACTIVATIONLINK%\n\nSi vous n''avez pas demandé d''abonnement à notre bulletin, veuillez simplement ignorer ce message.\nMerci\n%BLOGNAME%";s:2:"he";s:317:"%NAME% שלום\nכדי להשלים את הרשמתך לעלון של %BLOGNAME% עליך ללחוץ על הקישור הבא (או שהעתק והדבק אותו לדפדפן שלך):\n\n%ACTIVATIONLINK%\n\nאם לא ביקשת להירשם אלינו כמנוי התעלם מהודעה זו.\nתודה רבה\n%BLOGNAME%";s:2:"hu";s:265:"Kedves %NAME%,\nA feliratkozás befejezéséhez a %BLOGNAME% hírlevélre kattintson a következő linkre (vagy másolja azt a böngészője címsorába):\n\n%ACTIVATIONLINK%\n\nHa Ön nem kérte ezt a levelet, kérjük hagyja figyelmen kívül!\nKöszönjük!\n%BLOGNAME%";s:2:"it";s:274:"Salve %NAME%,\nper completare la tua iscrizione alla newsletter su %BLOGNAME% devi cliccare sul seguente indirizzo (o incollarlo nella barra degli indirizzi del tuo browser):\n\n%ACTIVATIONLINK%\n\nSe non hai richiesto questa iscrizione ignora questo messaggio.\nGrazie\n%BLOGNAME%";s:2:"nl";s:292:"Beste %NAME%,\nOm uw abonnement op de %BLOGNAME% Nieuwsbrief te bevestigen, dient u op onderstaande link te klikken (of deze in te voeren in de adresbalk van uw browser):\n\n%ACTIVATIONLINK%\n\nAls u zich niet hebt willen abonneren, negeert u dan alstublieft dit bericht.\nHartelijk dank\n%BLOGNAME%";s:2:"pl";s:317:"Witaj %NAME%,\nAby zakończyć procedurę zapisywania się do naszego %BLOGNAME% newslettera prosimy o kliknięcie w link (lub skopiowanie go i wklejenie w pasek adresu Twojej przeglądarki):\n\n%ACTIVATIONLINK%\n\nJeżeli nie prosiłeś o zapisanie do newslettera, zignoruj proszę tą wiadomość.\nDziękujemy\n%BLOGNAME%";s:2:"pt";s:245:"Olá %NAME%,\npara completar a assinatura na newsletter de %BLOGNAME% clique na seguinte ligação (ou copie-a para a barra de endereço do seu navegador):\n\n%ACTIVATIONLINK%\n\nSe não pediu esta assinatura ignore esta mensagem.\nObrigado\n%BLOGNAME%";s:2:"ro";s:269:"Salut %NAME%,\npentru a completa abonamentul la newsletter %BLOGNAME% trebuie să accesezi următorul link (sau să-l copiezi în bara de navigare a browserului tău web):\n\n%ACTIVATIONLINK%\n\nDacă nu ai solicitat acest abonament ignoră acest mesaj.\nMulţumim\n%BLOGNAME%";s:2:"sk";s:258:"Dobrý deň %NAME%,\npre dokončenie prihlasenia sa na zasielanie noviniek z %BLOGNAME% kliknite na tento odkaz (alebo vložte do prehliadača):\n\n%ACTIVATIONLINK%\n\nAk ste o zasielanie noviniek nežiadali, túto správu prosím ignorujte. \nĎakujem.\n%BLOGNAME%";s:2:"sv";s:263:"Hej %NAME%,\nför att prenumerera på %BLOGNAME% nyhetsbrev ska du klicka på följande länk (eller klistra adressen in i webbläsarens adressfält):\n\n%ACTIVATIONLINK%\n\nOm du inte har beställt denna prenumeration kan du ignorera detta meddelande.\nTack\n%BLOGNAME%";s:2:"tr";s:268:"Merhaba %NAME%\n%BLOGNAME% bülteni aboneliğinizi tamamlamak için aşağıdaki linki tıklayın (ya da tarayıcınızın adres çubuğuna yapıştırın):\n\n%ACTIVATIONLINK%\n\nBu aboneliği istemiyorsanız, maili görmezden gelebilirsiniz.\nTeşekkür ederiz\n%BLOGNAME%";s:2:"zh";s:258:"你好,%NAME%\n为了完成您对于%BLOGNAME% 时事通讯的订阅,您需要点击以下链接激活(或者将它黏贴至您浏览器的地址栏中):\n\n%ACTIVATIONLINK%\n\n如果您没有做过此类订阅,请忽视这条消息。\n谢谢\n%BLOGNAME%";}', 'yes'),
(176, 'alo_em_custom_unsub_footer_default', 'a:23:{s:2:"en";s:156:"<p><em>You have received this message because you subscribed to our newsletter. If you want to unsubscribe: visit this link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"br";s:150:"<p><em>Recebeu esta mensagem porque assinou a nossa newsletter. Se quiser remover a assinatura clique nesta ligação<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"ca";s:182:"<p><em>Ha rebut aquest missatge perquè està subscrit/a a la nostra llista de correu. Si vol eliminar la seva subscripció, cliqui en aquest enllaç<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"cs";s:173:"<p><em>Tato zpráva Vám přišla, protože jste se přihlásil/a k odběru našeho newsletteru. Pokud se chcete odhlásit navštívit odkaz<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"da";s:159:"<p><em>Du har modtaget denne besked fordi du tilmeldte dig vores nyhedsbrev. Hvis du ønsker at afmelde dig: besøg dette link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"de";s:179:"<p><em>Sie erhalten diese Nachricht, weil diese Emailadresse für den Newsletter eingetragen wurde. Zum Abbestellen klicken Sie auf folgenden Link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"el";s:283:"<p><em>Έχετε λάβει αυτό το μήνυμα επειδή έχετε εγγραφεί στο ενημερωτικό δελτίο μας. Αν θέλετε να διαγραφείτε: επισκεφτείτε αυτό το σύνδεσμο<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"es";s:146:"<p><em>Recibió este mensaje porque se ha suscripto a nuestro newsletter. Si desea desuscribirse visite este link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"et";s:166:"<p><em>Selle kirja saite vastusena liitumisele meie uudikirja postiloendiga. Kui te soovite loobuda uudiskirjast: külasta seda linki<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"fa";s:156:"<p><em>You have received this message because you subscribed to our newsletter. If you want to unsubscribe: visit this link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"fi";s:173:"<p><em>Sait tämän sähköpostin koska olet tilannut uutiskirjeemme. Jos haluat päättää uutiskirjeen tilauksen, klikkaa tätä linkkiä<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"fr";s:179:"<p><em>Vous avez reçu ce message parce que vous vous êtes abonné à notre bulletin. Si vous désirez annuler votre abonnement Visiter ce lien<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"he";s:150:"<p><em>קיבלת הודעה זו כי את\\ה מנוי\\ה על העלון שלנו. אם ברצונך להסיר עצמך: %UNSUBSCRIBELINK%</em></p>";s:2:"hu";s:161:"<p><em>Azért kapta ezt a levelet, mert regisztrált a hírlevelünkre. Ha le szeretne iratkozni kattintson a következő linkre<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"it";s:169:"<p><em>Hai ricevuto questo messaggio perché sei iscritto alla nostra newsletter. Se non vuoi ricevere altri messaggi visita questo link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"nl";s:155:"<p><em>U ontvangt dit bericht omdat u zich hebt aangemeld voor onze nieuwsbrief. Als u zich wilt afmelden bezoek deze link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"pl";s:219:"<p><em>Otrzymujesz tą wiadomość ponieważ twój adres e-mail został zapisany w naszej bazie osób zainteresowanych naszym newsletterem. Jeżeli chcesz wypisać się odwiedź ten link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"pt";s:150:"<p><em>Recebeu esta mensagem porque assinou a nossa newsletter. Se quiser remover a assinatura clique nesta ligação<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"ro";s:164:"<p><em>Ai primit acest mesaj pentru că eşti abonat la newsletter-ul nostru. Dacă doreşti să te dezabonezi vizitați acest link<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"sk";s:162:"<p><em>Táto správa Vám prišla, pretože ste se prihlásili k zasielaniu noviniek. Ak chcete zasielanie ukončiť kliknite na <br /> %UNSUBSCRIBELINK%</em></p>";s:2:"sv";s:169:"<p><em>Du har fått detta meddelande då du har anmält dig till vårt nyhetsbrev. Om du vill avsluta prenumerationen besök denna länk<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"tr";s:155:"<p><em>Bültenimize üye olduğunuz için bu maili aldınız. Eğer aboneliği iptal etmek istiyorsanız: Linke tıklayın<br /> %UNSUBSCRIBELINK%</em></p>";s:2:"zh";s:161:"<p><em>由于您订阅了我们的时事通讯所以您收到了这个消息。如果您想要取消订阅: 访问这个链接<br /> %UNSUBSCRIBELINK%</em></p>";}', 'yes'),
(177, 'alo_em_custom_viewonline_msg_default', 'a:23:{s:2:"en";s:87:"<p><em>To read the newsletter online you can visit this link: %NEWSLETTERLINK%</em></p>";s:2:"br";s:95:"<p><em>Para ler o boletim informativo on-line clique nesta ligação: %NEWSLETTERLINK%</em></p>";s:2:"ca";s:90:"<p><em>Per a llegir la notícia online cliqui en aquest enllaç: %NEWSLETTERLINK%</em></p>";s:2:"cs";s:101:"<p><em>Pro přečtění newsletteru online můžete navšívit tento odkaz: %NEWSLETTERLINK%</em></p>";s:2:"da";s:91:"<p><em>For at læse nyhedsbrevet online kan du følge dette link: %NEWSLETTERLINK%</em></p>";s:2:"de";s:98:"<p><em>So lesen Sie den Newsletter online können Sie unter diesem Link: %NEWSLETTERLINK%</em></p>";s:2:"el";s:211:"<p><em>Για να διαβάσετε το ηλεκτρονικό ενημερωτικό δελτίο, μπορείτε να επισκεφθείτε αυτόν τον σύνδεσμο: %NEWSLETTERLINK%</em></p>";s:2:"es";s:84:"<p><em>Para leer el boletín en línea visite este enlace: %NEWSLETTERLINK%</em></p>";s:2:"et";s:80:"<p><em>Selle lingi abil saad lugeda uudiskirja veebis: %NEWSLETTERLINK%</em></p>";s:2:"fa";s:87:"<p><em>To read the newsletter online you can visit this link: %NEWSLETTERLINK%</em></p>";s:2:"fi";s:75:"<p><em>Voit lukea uutiskirjeen myös sivuillamme: %NEWSLETTERLINK%</em></p>";s:2:"fr";s:93:"<p><em>Pour lire le bulletin en ligne, vous pouvez visiter ce lien: %NEWSLETTERLINK%</em></p>";s:2:"he";s:120:"<p><em>%NEWSLETTERLINK%:כדי לקרוא את העלון באתר את\\ יכול\\ה לבקר בכתובת זו</em></p>";s:2:"hu";s:113:"<p><em>Ha szeretné online elolvasni a hírlevelet, akkor látogasson el erre a linkre: %NEWSLETTERLINK%</em></p>";s:2:"it";s:84:"<p><em>Per leggere la newsletter online vai a questo link: %NEWSLETTERLINK%</em></p>";s:2:"nl";s:97:"<p><em>Het lezen van de nieuwsbrief online kunt u terecht op deze link: %NEWSLETTERLINK%</em></p>";s:2:"pl";s:92:"<p><em>Aby przeczytać online biuletyn można odwiedzić ten link: %NEWSLETTERLINK%</em></p>";s:2:"pt";s:96:"<p><em>Para ler o boletim informativo on-line, pode visitar este link: %NEWSLETTERLINK%</em></p>";s:2:"ro";s:95:"<p><em>Pentru a citi online, newsletter-ul puteţi vizita acest link: %NEWSLETTERLINK%</em></p>";s:2:"sk";s:75:"<p><em>Pre online čítanie noviniek kliknite na: %NEWSLETTERLINK%</em></p>";s:2:"sv";s:87:"<p><em>För att läsa nyhetsbrevet på webben kan du besöka: %NEWSLETTERLINK%</em></p>";s:2:"tr";s:83:"<p><em>Eğer bu maili düzgün görüntüleyemiyorsanız: %NEWSLETTERLINK%</em></p>";s:2:"zh";s:93:"<p><em>您可以访问这个链接在线阅读时事通讯邮件: %NEWSLETTERLINK%</em></p>";}', 'yes'),
(178, 'alo_em_db_version', '2020', 'yes'),
(179, 'alo_em_subsc_page', '26', 'yes'),
(181, 'widget_alo-easymail-widget', 'a:3:{i:2;a:1:{s:5:"title";s:20:"Lettre électronique";}i:3;a:1:{s:5:"title";s:20:"Lettre électronique";}s:12:"_multiwidget";i:1;}', 'yes'),
(183, 'alo_em_last_cron', '2014-04-15 19:06:44', 'yes'),
(219, '_transient_random_seed', '12b41d4e7fbde82b7601d9c557c2f27e', 'yes'),
(235, '_transient_timeout_feed_f3ca579f4a299fa273dcf20cfa4e9abe', '1397595700', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(236, '_transient_feed_f3ca579f4a299fa273dcf20cfa4e9abe', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:50:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"eventuAlo.net » blog » Alo EasyMail Newsletter";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:29:"http://www.eventualo.net/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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:26:"un blog vario ed eventualo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Apr 2014 07:50:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"it-IT";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:29:"http://wordpress.org/?v=3.6.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"ALO EasyMail v. 2.5.0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://www.eventualo.net/blog/2013/12/alo-easymail-v-2-5-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:68:"http://www.eventualo.net/blog/2013/12/alo-easymail-v-2-5-0/#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, 01 Dec 2013 21:14:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:15:"easymail update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://www.eventualo.net/blog/?p=2312";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:363:"Today the new version 2.5.0 of EasyMail newsletter plugin is downloadable on WP.org. First of all, thanks a lot to Wojtek Szałkiewicz that made some fixes and improvements on v.2.4.18. Then, the alo-easymail_custom-hooks.php is deprecated. Inside plugin there is a new mu-plugins folder that contains several file with custom hooks: move one or more of […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:1755:"<p>Today the new version <strong>2.5.0</strong> of EasyMail newsletter plugin is <strong><a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">downloadable on WP.org</a></strong>.</p>\n<p>First of all, thanks a lot to Wojtek Szałkiewicz that made some fixes and improvements on v.2.4.18.<br />\nThen, the <em>alo-easymail_custom-hooks.php</em> is deprecated. Inside plugin there is a new <em>mu-plugins</em> folder that contains several file with custom hooks: move one or more of those files into <em>wp-content/mu-plugins</em> to activate them.</p>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. </p>\n<p>I’ve just created a <strong>Github repository</strong> where the development version is hosted: <a href="https://github.com/groucho75/alo-easymail" title="ALO EasyMail on Github" target="_blank">github.com/groucho75/alo-easymail</a></p>\n<p>And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s: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:64:"http://www.eventualo.net/blog/2013/12/alo-easymail-v-2-5-0/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"ALO EasyMail v. 2.4.18";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.eventualo.net/blog/2013/07/alo-easymail-v-2-4-18/";s: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:69:"http://www.eventualo.net/blog/2013/07/alo-easymail-v-2-4-18/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 23 Jul 2013 19:42: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:15:"easymail update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://www.eventualo.net/blog/?p=2291";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:416:"Today the new version 2.4.18 of EasyMail newsletter plugin is downloadable on WP.org. Some new features and improvements: added a bounce management (credit: https://github.com/cfortune/PHP-Bounce-Handler) added a full compatibility with the multilingual plugin Polylang updated the script that creates the newsletter plain text (thanks to Thomas Heinen) updated the priority of cron schedule filter: now it […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:2000:"<p>Today the new version <strong>2.4.18</strong> of EasyMail newsletter plugin is <strong><a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">downloadable on WP.org</a></strong>.</p>\n<p>Some new features and improvements:</p>\n<ul>\n<li>added a bounce management (credit: <a href="https://github.com/cfortune/PHP-Bounce-Handler" title="PHP-Bounce-Handler" target="_blank">https://github.com/cfortune/PHP-Bounce-Handler</a>)</li>\n<li>added a full compatibility with the multilingual plugin <a href="http://wordpress.org/plugins/polylang/" title="Polylang" target="_blank">Polylang</a></li>\n<li>updated the script that creates the newsletter plain text (thanks to Thomas Heinen)</li>\n<li>updated the priority of cron schedule filter: now it is very low so it could works also if other plugins break the schedule array</li>\n<li>updated javascript code to be compatible with jquery 1.9 (I hope to not have missed anything)</li>\n<li>now the ajax admin url used in frontend should work if FORCE_SSL_ADMIN is enabled and admin side is not https</li>\n</ul>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s: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:65:"http://www.eventualo.net/blog/2013/07/alo-easymail-v-2-4-18/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"ALO EasyMail: a fix for js issue in backend for Safari";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"http://www.eventualo.net/blog/2013/04/fix-for-safari/";s: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:62:"http://www.eventualo.net/blog/2013/04/fix-for-safari/#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, 28 Apr 2013 13:26:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:13:"easymail hack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://www.eventualo.net/blog/?p=2264";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:357:"The issue Someone reported me an issue about ALO EasyMail plugin. A javascript malfunction in backend (newsletter list screen) when using Safari e sometimes Chrome: a javascript error happens and so the buttons (create recipient list, report) do not work. The fix I’ve just updated the 2.4.17 version of ALO EasyMail plugin stored on WP.org: […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:1797:"<p><strong>The issue</strong><br />\nSomeone reported me an issue about <strong>ALO EasyMail plugin</strong>.<br />\nA javascript malfunction in backend (newsletter list screen) when using <strong>Safari</strong> e sometimes Chrome: a javascript error happens and so the buttons (create recipient list, report) do not work.</p>\n<p><strong>The fix</strong><br />\nI’ve just updated the <strong>2.4.17</strong> version of ALO EasyMail plugin stored on WP.org: so you can <a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">download it</a> and the issue is fixed.<br />\nOtherwise you can manually fix your 2.4.17 copy: open the file <em>/inc/alo-easymail-backend.js</em>, search and edit the following line (number 357):</p>\n<pre>\r\nclass: ''button''\r\n</pre>\n<p>add double quotes to first word, so it must be:</p>\n<pre>\r\n"class": ''button''\r\n</pre>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s: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:58:"http://www.eventualo.net/blog/2013/04/fix-for-safari/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"ALO EasyMail v. 2.4.17";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-17/";s: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:69:"http://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-17/#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, 21 Apr 2013 21:17:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:15:"easymail update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://www.eventualo.net/blog/?p=2261";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:330:"Today the new version 2.4.17 of EasyMail newsletter plugin is downloadable on WP.org. A quick release to try to fix a bug about “send a test newsletter”: now it goes out properly. You can read guide, faqs… (see links in right sidebar) and use the forum to share your feedback. There is also the support […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:1266:"<p>Today the new version <strong>2.4.17</strong> of EasyMail newsletter plugin is <strong><a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">downloadable on WP.org</a></strong>.</p>\n<p>A quick release to try to fix a bug about <strong>“send a test newsletter”</strong>: now it goes out properly.</p>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s: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:65:"http://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-17/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"ALO EasyMail v. 2.4.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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:69:"http://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-16/#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, 17 Apr 2013 21:17:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:15:"easymail update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://www.eventualo.net/blog/?p=2254";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:361:"Today the new version 2.4.16 of EasyMail newsletter plugin is downloadable on WP.org. A quick release to try to fix some javascript issues that affects plugin backend functionality: now uses jQuery.noConflict() to decrease opportunity of issues and conflicts. (I hope it can helps). You can read guide, faqs… (see links in right sidebar) and use […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:1357:"<p>Today the new version <strong>2.4.16</strong> of EasyMail newsletter plugin is <strong><a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">downloadable on WP.org</a></strong>.</p>\n<p>A quick release to try to fix some javascript issues that affects plugin backend functionality: now uses <strong>jQuery.noConflict()</strong> to decrease opportunity of issues and conflicts. (I hope it can helps).</p>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s: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:65:"http://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-16/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"ALO EasyMail v. 2.4.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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-15/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:69:"http://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-15/#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, 14 Apr 2013 21:46:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:15:"easymail update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://www.eventualo.net/blog/?p=2251";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:323:"Today the new version 2.4.15 of EasyMail newsletter plugin is downloadable on WP.org. Two improvements: a preview button to view the newsletter in theme (you can find this new button under the standard preview button) the recipient list now is loaded in a jquery modal, not in a thickbox: there is no more hack to […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:1665:"<p>Today the new version <strong>2.4.15</strong> of EasyMail newsletter plugin is <strong><a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">downloadable on WP.org</a></strong>.</p>\n<p>Two improvements:</p>\n<ul>\n<li>a preview button to view the newsletter in theme (you can find this new button under the standard preview button)</li>\n<li>the recipient list now is loaded in a jquery modal, not in a thickbox: there is no more hack to load javascript into thickbox, so a lot of javascript issues with other plugins should be avoided</li>\n</ul>\n<p>Here you are the full <a href="http://wordpress.org/extend/plugins/alo-easymail/changelog/" title="On WordPress.org plugin page" target="_blank">changelog</a>.</p>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s: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:65:"http://www.eventualo.net/blog/2013/04/alo-easymail-v-2-4-15/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"ALO EasyMail version 2.4.14: bug fix";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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.eventualo.net/blog/2012/12/alo-easymail-version-2-4-14-bug-fix/";s: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:83:"http://www.eventualo.net/blog/2012/12/alo-easymail-version-2-4-14-bug-fix/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Dec 2012 13:30:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:15:"easymail update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://www.eventualo.net/blog/?p=2193";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:337:"Today the new version 2.4.14 of EasyMail newsletter plugin is downloadable on WP.org. This is a release to fix a bug about sending newsletters to more than one mailing list: newsletters were sent only to one mailing list though more lists were chosen, now the plugin should send to all selected lists. Please upgrade/install it […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:1609:"<p>Today the new version <strong>2.4.14</strong> of EasyMail newsletter plugin is <strong><a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">downloadable on WP.org</a></strong>.</p>\n<p>This is a release to <strong>fix a bug</strong> about sending newsletters to more than one mailing list: newsletters were sent only to one mailing list though more lists were chosen, now the plugin should send to all selected lists.<br />\nPlease upgrade/install it now and let us know if it solves.</p>\n<p>Here you are the full <a href="http://wordpress.org/extend/plugins/alo-easymail/changelog/" title="On WordPress.org plugin page" target="_blank">changelog</a>.</p>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s: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:79:"http://www.eventualo.net/blog/2012/12/alo-easymail-version-2-4-14-bug-fix/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:61:"ALO EasyMail version 2.4.13: new capability and role settings";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:99:"http://www.eventualo.net/blog/2012/10/alo-easymail-version-2-4-13-new-capability-and-role-settings/";s: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:108:"http://www.eventualo.net/blog/2012/10/alo-easymail-version-2-4-13-new-capability-and-role-settings/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 25 Oct 2012 17:02:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:15:"easymail update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://www.eventualo.net/blog/?p=2158";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:319:"Today the new version 2.4.13 of EasyMail newsletter plugin is downloadable on WP.org. The main change is that there are new capabilities for newsletter post type and so there are new permission settings. If you have a blog with a single (admin) user, do not worry, nothing to do after upgrade. But if you have […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:2254:"<p>Today the new version <strong>2.4.13</strong> of EasyMail newsletter plugin is <strong><a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">downloadable on WP.org</a></strong>.</p>\n<p>The main change is that there are <strong>new capabilities</strong> for newsletter post type and so there are new permission settings. If you have a blog with a single (admin) user, do not worry, nothing to do after upgrade.</p>\n<p>But if you have a blog using other WP roles other than admin, <strong style="color: #952300">after upgrade you have to go to <em>Newsletters → Settings → tab Permissions</em> and update your settings</strong>.</p>\n<p>If the newsletter menu disappears from your admin dashboard, <strong style="color: #952300">probably you have to deactivate the plugin and then reactivate it again</strong>.</p>\n<p>Then, some good news about placeholders:</p>\n<ul>\n<li>there is a new <strong>[USER-EMAIL]</strong> placeholder available that prints the subscriber email, of course</li>\n<li>there is automatically <strong>a placehoolder for each custom field</strong>: e.g. ‘cf_country’ => [USER-CF_COUNTRY]</li>\n</ul>\n<p>Here you are the full <a href="http://wordpress.org/extend/plugins/alo-easymail/changelog/" title="On WordPress.org plugin page" target="_blank">changelog</a>.</p>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s: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:104:"http://www.eventualo.net/blog/2012/10/alo-easymail-version-2-4-13-new-capability-and-role-settings/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"ALO EasyMail version 2.4.12: some useful improvements";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.eventualo.net/blog/2012/10/alo-easymail-version-2-4-12/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:75:"http://www.eventualo.net/blog/2012/10/alo-easymail-version-2-4-12/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 08 Oct 2012 18:11: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:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:15:"easymail update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:66:"http://www.eventualo.net/blog/2012/10/alo-easymail-version-2-4-12/";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:334:"Today the new version 2.4.12 of EasyMail newsletter plugin is downloadable on WP.org. Here you are the main changes: I think that I improved the sending engine in cron batch: so maybe the opportunity of multiple emails to same recipients should be reduced there is a new [CUSTOM-LINK] placeholder to create links to posts or […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:2271:"<p>Today the new version <strong>2.4.12</strong> of EasyMail newsletter plugin is <strong><a href="http://wordpress.org/extend/plugins/alo-easymail/" target="_blank">downloadable on WP.org</a></strong>.</p>\n<p>Here you are the main changes:</p>\n<ul>\n<li>I think that I improved the <strong>sending engine</strong> in cron batch: so maybe the opportunity of multiple emails to same recipients should be reduced</li>\n<li>there is a new <strong>[CUSTOM-LINK]</strong> placeholder to create links to posts or external urls, customising css attributes and link text</li>\n<li>now there is a filter to add <strong><a href="http://www.eventualo.net/blog/?p=2137" title="How to: add an attachment to newsletters">attachments in newsletters</a></strong> (‘<em>alo_easymail_newsletter_attachments</em>‘) useful for developers: it’s a first attempt, in future there will be a better integration in WP <abbr title="Graphical User Interface">GUI</abbr></li>\n<li>in subscriber list screen now you can <strong>delete subscribers and unsubscribe their emails</strong></li>\n<li>you can <strong>export the list of emails of who unsubscribed</strong> the newsletter</li>\n</ul>\n<p>Here you are the full <a href="http://wordpress.org/extend/plugins/alo-easymail/changelog/" title="On WordPress.org plugin page" target="_blank">changelog</a>.</p>\n<p>You can read guide, faqs… (see links in right sidebar) and use the <a href="http://www.eventualo.net/forum/">forum</a> to share your feedback. There is also the <a href="http://wordpress.org/support/plugin/alo-easymail" title="WordPress Support: ALO EasyMail Newsletter" target="_blank">support forum hosted on WP.org</a>. And <strong>you can contribute</strong> to keep the plugin update donating some money to me.</p>\n<form style="display: inline;" action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /> <input type="hidden" name="lc" value="GB" /> <input type="hidden" name="hosted_button_id" value="9E6BPXEZVQYHA" /> <input style="border: 0pt none;" type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" alt="PayPal" /> <img src="https://www.paypal.com/it_IT/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:71:"http://www.eventualo.net/blog/2012/10/alo-easymail-version-2-4-12/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"How to: add an attachment to newsletter";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.eventualo.net/blog/2012/10/how-to-add-an-attachment-to-newsletter/";s: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.eventualo.net/blog/2012/10/how-to-add-an-attachment-to-newsletter/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 08 Oct 2012 18:04: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:23:"Alo EasyMail Newsletter";s: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:17:"easymail tutorial";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:77:"http://www.eventualo.net/blog/2012/10/how-to-add-an-attachment-to-newsletter/";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:370:"In EasyMail v.2.4.12 there is a filter hook to add one or more attachments to newsletters. It’s a first attempt, useful for developers: in future there will be a better integration in WP GUI. You can customise the following code and then paste it in your blog files (#where?): function custom_easymail_newsletter_attachments ( $attachs, $newsletter ) […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"alo";s: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:5381:"<p>In EasyMail v.2.4.12 there is a filter hook to add one or more attachments to newsletters. It’s a first attempt, useful for developers: in future there will be a better integration in WP GUI.<br />\n<span id="more-2137"></span><br />\nYou can customise the following code and then paste it in your blog files (<a href="http://www.eventualo.net/blog/easymail-newsletter-for-developers/#custom-hooks">#where?</a>):</p>\n\n<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> custom_easymail_newsletter_attachments <span style="color: #009900;">(</span> <span style="color: #000088;">$attachs</span><span style="color: #339933;">,</span> <span style="color: #000088;">$newsletter</span> <span style="color: #009900;">)</span> <span style="color: #009900;">{</span>\n \n <span style="color: #000088;">$attachs</span> <span style="color: #339933;">=</span> WP_CONTENT_DIR <span style="color: #339933;">.</span> <span style="color: #0000ff;">''/uploads/path/to/file.ext''</span><span style="color: #339933;">;</span>\n \n <span style="color: #b1b100;">return</span> <span style="color: #000088;">$attachs</span><span style="color: #339933;">;</span>\n<span style="color: #009900;">}</span>\nadd_filter <span style="color: #009900;">(</span> <span style="color: #0000ff;">''alo_easymail_newsletter_attachments''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''custom_easymail_newsletter_attachments''</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span> <span style="color: #009900;">)</span><span style="color: #339933;">;</span></pre></div></div>\n\n<p>The <strong>$attachs</strong> variable can be a string (for a single file) or an array (for one or more attachments). You have to specify the path to the file, not the url.</p>\n<p>The 2nd argument, <strong>$newsletter</strong>, is the object of the current newsletter.<br />\nSo you can send different attachments for different newsletters:</p>\n\n<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> custom_easymail_newsletter_attachments <span style="color: #009900;">(</span> <span style="color: #000088;">$attachs</span><span style="color: #339933;">,</span> <span style="color: #000088;">$newsletter</span> <span style="color: #009900;">)</span> <span style="color: #009900;">{</span>\n \n <span style="color: #b1b100;">if</span> <span style="color: #009900;">(</span> <span style="color: #000088;">$newsletter</span><span style="color: #339933;">-></span><span style="color: #004000;">ID</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">)</span> \n <span style="color: #009900;">{</span>\n <span style="color: #000088;">$attachs</span> <span style="color: #339933;">=</span> WP_CONTENT_DIR <span style="color: #339933;">.</span> <span style="color: #0000ff;">''/uploads/path/to/file1.ext''</span><span style="color: #339933;">;</span>\n <span style="color: #009900;">}</span> \n <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">(</span> <span style="color: #000088;">$newsletter</span><span style="color: #339933;">-></span><span style="color: #004000;">ID</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">2</span> <span style="color: #009900;">)</span> \n <span style="color: #009900;">{</span>\n <span style="color: #000088;">$attachs</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">(</span> \n WP_CONTENT_DIR <span style="color: #339933;">.</span> <span style="color: #0000ff;">''/uploads/path/to/file2.ext''</span><span style="color: #339933;">,</span> \n WP_CONTENT_DIR <span style="color: #339933;">.</span> <span style="color: #0000ff;">''/uploads/path/to/file3.ext''</span> \n <span style="color: #009900;">)</span><span style="color: #339933;">;</span>\n <span style="color: #009900;">}</span> \n <span style="color: #b1b100;">else</span> \n <span style="color: #009900;">{</span>\n <span style="color: #000088;">$attachs</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// no attachments</span>\n <span style="color: #009900;">}</span>\n \n <span style="color: #b1b100;">return</span> <span style="color: #000088;">$attachs</span><span style="color: #339933;">;</span>\n<span style="color: #009900;">}</span>\nadd_filter <span style="color: #009900;">(</span> <span style="color: #0000ff;">''alo_easymail_newsletter_attachments''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''custom_easymail_newsletter_attachments''</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span> <span style="color: #009900;">)</span><span style="color: #339933;">;</span></pre></div></div>\n\n";s: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.eventualo.net/blog/2012/10/how-to-add-an-attachment-to-newsletter/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:68:"http://www.eventualo.net/blog/category/alo-easymail-newsletter/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:11:{s:4:"date";s:29:"Tue, 15 Apr 2014 09:01:39 GMT";s:6:"server";s:6:"Apache";s:10:"x-pingback";s:40:"http://www.eventualo.net/blog/xmlrpc.php";s:13:"last-modified";s:29:"Wed, 02 Apr 2014 07:50:01 GMT";s:4:"etag";s:34:""70271e5f1b9c132a7627c1435e048c13"";s:4:"vary";s:15:"Accept-Encoding";s:16:"content-encoding";s:4:"gzip";s:12:"x-powered-by";s:8:"PleskLin";s:14:"content-length";s:4:"5098";s:10:"connection";s:5:"close";s:12:"content-type";s:23:"text/xml; charset=UTF-8";}s:5:"build";s:14:"20130911020210";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(237, '_transient_timeout_feed_mod_f3ca579f4a299fa273dcf20cfa4e9abe', '1397595700', 'no'),
(238, '_transient_feed_mod_f3ca579f4a299fa273dcf20cfa4e9abe', '1397552500', 'no'),
(240, '_transient_timeout_feed_66a70e9599b658d5cc038e8074597e7c', '1397595701', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(241, '_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:51:"\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:5:{s:0:"";a:7:{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:70:"La communauté francophone autour du CMS WordPress et son écosystème";s: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, 15 Apr 2014 05:54:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"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:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:29:"http://wordpress.org/?v=3.8.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;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:81:"L’Hebdo WordPress n°225 : WordPress 3.8.3 – WordPress 3.9 – BuddyPress 2.0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/7wegzds2MAw/";s: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:115:"http://www.wordpress-fr.net/2014/04/15/lhebdo-wordpress-n225-wordpress-3-8-3-wordpress-3-9-buddypress-2-0/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Apr 2014 05:54:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:6:{i:0;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:1;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:2;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:3;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:4;a:5:{s:4:"data";s:13:"WordPress 3.8";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:13:"wordpress 3.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=6962";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:"2 semaines après le premier avril, je tiens à soulager toute la communauté en confirmant que l’information donnée dans le précédent hebdo était évidemment un gros poisson d’avril (juste au cas où certains y aurait cru…) Les prochaines rencontres en France A Lyon : le 22 avril. A Bayonne : WPMX remet le couvert le […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:3983:"<p>2 semaines après le premier avril, je tiens à soulager toute la communauté en confirmant que l’information donnée dans le précédent hebdo était évidemment <a title="L’Hebdo WordPress n°224 : Facebook/Automattic – Masonry – BuddyPress" href="http://www.wordpress-fr.net/2014/04/01/lhebdo-wordpress-n224-mange-un-poisson-clown/">un gros poisson d’avril </a>(juste au cas où certains y aurait cru…)</p>\n<h3>Les prochaines rencontres en France</h3>\n<ul>\n<li><a href="http://www.meetup.com/WordPress-Lyon-Meetup/events/176385812/">A Lyon : le 22 avril.</a></li>\n<li><a href="https://www.facebook.com/events/298654000290012/">A Bayonne</a> : WPMX remet le couvert le 26 avril.</li>\n<li><a href="http://www.meetup.com/wordpress-ile-de-france/polls/1028452/">Une réflexion</a> pour un meetup parisien</li>\n</ul>\n<h3>WordPress 3.8.2 et WordPress 3.8.3</h3>\n<p>En une semaine de temps, 2 versions mineures de WordPress ont vu le jour : <a href="http://wordpress.org/news/2014/04/wordpress-3-8-2/">3.8.2</a> (en) et <a href="http://wordpress.org/news/2014/04/wordpress-3-8-3/">3.8.3 (en)</a>. La version 3.8.3 vient principalement réparer un dysfonctionnement du « brouillon rapide » apparu dans la 3.8.2.</p>\n<h3>WordPress 3.9 et MySQL</h3>\n<p>Des <a href="http://make.wordpress.org/plugins/2014/04/07/mysql-in-wordpress-3-9-implications-for-plugin-authors/">modifications (en) </a>interviennent concernant MySQL dans WordPress 3.9. <span style="text-decoration: underline;">Il est à noter que la version finale de WordPress 3.9 devrait sortir dans les tous prochains jours</span>.</p>\n<h3>BuddyPress 2.0 Beta 2 et RC1</h3>\n<p>BuddyPress 2.0 <a href="http://wptavern.com/major-milestone-for-buddypress-2-million-downloads-and-counting">progresse</a> (en), après une <a href="http://buddypress.org/2014/04/buddypress-2-0-beta2/">beta 2</a> (en), la <a href="http://buddypress.org/2014/04/buddypress-2-0-release-candidate/">première version candidate</a> (en) est sortie il y a quelques jours.</p>\n<h3>Jetpack 2.9.3</h3>\n<p>Jetpack arrive en <a href="http://jetpack.me/2014/04/10/jetpack-security-update/">version 2.9.3</a> (en) et apporte une correction d’une faille ancienne mais découverte que récemment.</p>\n<h3>WordPress est-il le bon outil ?</h3>\n<p>Voici des éléments de réponse <a href="http://wpshout.com/wordpress-right-tool-job/">si vous vous posez parfois la question (en)</a>.</p>\n<h3>Forcer la mise à jour des extensions</h3>\n<p>Julio propose une nouvelle extension permettant de forcer la mise à jour des extensions : <a href="http://boiteaweb.fr/force-plugin-updates-re-installez-vos-plugins-rapidement-8016.html#">Force Plugin Updates</a>.</p>\n<h3>Personnaliser les colonnes d’administration</h3>\n<p>Pour personnaliser les colonnes de votre administration, essayez cette extension : <a href="http://www.geekpress.fr/wordpress/extension/personnaliser-colonnes-administration-2004/">CodePress Admin Column</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7wegzds2MAw:LehP5y6AqGA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7wegzds2MAw:LehP5y6AqGA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=7wegzds2MAw:LehP5y6AqGA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7wegzds2MAw:LehP5y6AqGA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7wegzds2MAw:LehP5y6AqGA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=7wegzds2MAw:LehP5y6AqGA:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/7wegzds2MAw" 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:111:"http://www.wordpress-fr.net/2014/04/15/lhebdo-wordpress-n225-wordpress-3-8-3-wordpress-3-9-buddypress-2-0/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:106:"http://www.wordpress-fr.net/2014/04/15/lhebdo-wordpress-n225-wordpress-3-8-3-wordpress-3-9-buddypress-2-0/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:54:"\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:75:"L’Hebdo WordPress n°224 : Facebook/Automattic – Masonry – 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:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/_VCUvlt4RF4/";s: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:93:"http://www.wordpress-fr.net/2014/04/01/lhebdo-wordpress-n224-mange-un-poisson-clown/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 01 Apr 2014 05:44:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;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:1;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:2;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:3;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:4;a:5:{s:4:"data";s:13:"wordpress 3.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=6941";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:412:"!! Information de dernière minute !! Automattic est racheté par Facebook Nous venons d’apprendre d’une source proche du dossier que Matt Mullenweg, le co-fondateur de WordPress et CEO d’Automattic vient de finaliser un accord d’un montant de 20 milliards de dollars pour la revente d’Automattic à Facebook. C’est ainsi, avec une somme légèrement plus importante […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:4850:"<h1>!! Information de dernière minute !!</h1>\n<h3>Automattic est racheté par Facebook</h3>\n<p>Nous venons d’apprendre d’une source proche du dossier que Matt Mullenweg, le co-fondateur de WordPress et CEO d’Automattic vient de finaliser un accord d’un montant de 20 milliards de dollars pour la revente d’Automattic à Facebook. C’est ainsi, avec une somme légèrement plus importante que sa récente acquisition de l’application Whatsapp, qui lui avait couté « seulement » 19 milliards de dollars, que le géant des réseaux sociaux acquiert l’univers WordPress.</p>\n<p>Facebook, en pleine recherche de croissance externe après les rachats successifs d’Instagram, de Whatsapp et dernièrement d’Oculus met donc la main sur la maison mère de WordPress et notamment son service communautaire WordPress.com. On suppose que l’aspect communautaire qui se développait sur la plateforme de blogs aura convaincu Facebook de sa puissance. Pour l’instant, il est encore trop tôt pour savoir ce qu’en fera le Géant du Web : intégration dans le réseau social, gestion de blog directement dans Facebook ou bien fusion de l’ensemble… ?</p>\n<p>Pour le moment, le logiciel libre WordPress, disponible sur WordPress.org, semble ne pas être concerné par cette opération. En effet, la Fondation WordPress étant indépendante est encore à l’abri… mais pour combien de temps ? Mark Zuckerberg a de nombreuses cordes à son arc et pourrait trouver la parade pour s’approprier l’application qui fait tourner 20 % du Web.</p>\n<p>L’information n’a pas encore « fuitée », notre contact nous ayant donné l’exclusivité de l’information. Vous êtes donc les premiers à lire ce scoop.</p>\n<p>Nous irons à la pêche aux informations complémentaires qui, soyons en sûr, devrait tomber dans notre chalut tout au long de la journée.</p>\n<p>Restez connectés</p>\n<p><span id="more-6941"></span></p>\n<h1>La suite de l’Hebdo :</h1>\n<h3>WordPress 3.9 beta 3</h3>\n<p>N’ayant pas eu le temps de faire la traduction de l’article présentant la beta 3 de WordPress 3.9, <a href="http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/">je vous glisse le lien ici</a> (en) au cas où vous l’auriez manqué.</p>\n<h3>Masonry dans WordPress 3.9</h3>\n<p>Attention le <a href="http://make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/">script Masonry subi des changements</a> (en) suite à son passage à la version 3 dans WordPress 3.9.</p>\n<h3>BuddyPress 2.0</h3>\n<p>BuddyPress 2.0 arrive à la fin de son développement avec une <a href="http://buddypress.org/2014/03/buddypress-2-0-beta-1-is-now-available/">beta 1</a> (en). Pour découvrir les nouveautés <a href="http://buddydev.com/buddypress/buddypress-2-0-coming-soon-expect/">c’est ici</a> (en).</p>\n<h3>Le futur des commentaires</h3>\n<p>Quel est l’<a href="http://wptavern.com/what-is-the-future-of-comments-in-wordpress">avenir des commentaires </a> (en) dans WordPress ?</p>\n<h3>Une extension SEO pour les dominer tous</h3>\n<p>On pensait avoir tout vu en matière d’extension SEO…. eh bien c’était sans compter sur Julio et sa détermination légendaire. Il annonce dès aujourd’hui la sortie de sa propre extension, bien plus simple que toutes les autres, mais terriblement efficace. <a href="http://boiteaweb.fr/google-1st-place-plugin-seo-7996.html">Exemple en image à l’appui </a>!</p>\n<h3>Conserver la traduction du thème lors de la mise à jour</h3>\n<p>Si vous souhaitez conserver la traduction de votre thème lors de sa mise à jour, <a href="http://www.lumieredelune.com/encrelune/preserver-traduction-po,2014,03">vous devriez regarder cet article</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=_VCUvlt4RF4:FQdKOGKg__w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=_VCUvlt4RF4:FQdKOGKg__w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=_VCUvlt4RF4:FQdKOGKg__w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=_VCUvlt4RF4:FQdKOGKg__w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=_VCUvlt4RF4:FQdKOGKg__w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=_VCUvlt4RF4:FQdKOGKg__w:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/_VCUvlt4RF4" 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:89:"http://www.wordpress-fr.net/2014/04/01/lhebdo-wordpress-n224-mange-un-poisson-clown/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:"25";s: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:84:"http://www.wordpress-fr.net/2014/04/01/lhebdo-wordpress-n224-mange-un-poisson-clown/";s: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: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:58:"L’Hebdo n°223 : WordCamps – WordPress 3.9 – 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:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/65HPLf0Qlsc/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"http://www.wordpress-fr.net/2014/03/26/lhebdo-n223/#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, 26 Mar 2014 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: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: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: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:4;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: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:13:"wordpress 3.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=6935";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:376:"Les vidéos du WordCamp Paris 2014 se dévoilent Les vidéos du WordCamp Paris 2014 sont mises en ligne petit à petit sur WordCamp TV. La communauté nationale et internationale Le 28 mars aura lieu une rencontre à Paris autour du thème « les projets multilingues ». La communauté nantaise se bouge et annonce l’organisation de WP Tech. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:5084:"<h3>Les vidéos du WordCamp Paris 2014 se dévoilent</h3>\n<p>Les vidéos du WordCamp Paris 2014 sont mises en ligne petit à petit sur <a href="http://wordpress.tv/event/wordcamp-paris-2014/">WordCamp TV</a>.</p>\n<h3>La communauté nationale et internationale</h3>\n<ul>\n<li>Le 28 mars aura lieu <a href="http://www.meetup.com/wordpress-ile-de-france/events/169749922/">une rencontre à Paris</a> autour du thème « les projets multilingues ».</li>\n<li>La communauté nantaise se bouge et annonce l’organisation de WP Tech. <a href="http://wabeo.fr/wp-tech-sondage/">Un sondage vous attend</a>.</li>\n<li><a href="http://wptavern.com/sofia-bulgaria-to-host-wordcamp-europe-2014">Le prochain WordCamp Europe </a>(en) se déroulera à Sofia, en Bulgarie fin septembre 2014.</li>\n</ul>\n<h3>WordPress 3.9 arrive</h3>\n<ul>\n<li><a href="http://www.wpbeginner.com/news/whats-coming-in-wordpress-3-9-features-and-screenshots/">WPBeginner en parle</a> (en)</li>\n<li><a href="http://www.momofr.net/wordpress-3-9-quoi-de-neuf/">Chez momo-fr dévoile les nouveautés</a></li>\n<li>Cloudways <a href="http://www.cloudways.com/blog/wordpress-3-9-beta-2/">parle de la version beta 2</a> (en)</li>\n</ul>\n<h3>Akismet 2.6</h3>\n<p><a href="http://blog.akismet.com/2014/03/18/akismet-plugin-2-6/">La nouvelle mouture d’Akismet</a> (en), l’extension anti-spam est disponible.</p>\n<h3>Nettoyage de printemps</h3>\n<p>C’est le printemps ! Et au printemps, c’est bien connu, on fait le ménage… dans votre site c’est pareil. <a href="http://en.blog.wordpress.com/2014/03/18/declutter-your-blog/">Quelques conseils à suivre </a>(en).</p>\n<h3>Autoriser un invité à publier sur votre site</h3>\n<p>Si vous souhaitez autoriser un invité à publier sur votre site sans qu’il ne possède son accès à l’admin de WordPress, <a href="http://premium.wpmudev.org/blog/how-to-allow-guests-to-post-on-your-wordpress-site/">cette astuce est pour vous</a> (en).</p>\n<h3>Infographie : un site SEO Friendly</h3>\n<p>Faire un site SEO friendly est un objectif pour beaucoup, <a href="http://www.mon-emarketing.com/en-2014-faites-de-votre-site-wordpress-un-site-seo-friendly-infographie/">jetez un oeil à cette infographie</a>.</p>\n<h3>35 thèmes gratuits responsives</h3>\n<p>Une liste de <a href="http://designscrazed.com/free-responsive-wordpress-themes/">35 thèmes responsives et gratuits</a> (en)</p>\n<h3>Ne pas utiliser WordPress pour envoyer des newsletters</h3>\n<p>Un article qui explique pourquoi <a href="http://www.wpbeginner.com/opinion/why-you-should-never-use-wordpress-to-send-newsletter-emails/">l’envoi de newsletter via WordPress</a> n’est pas toujours la meilleure idée (en)</p>\n<h3>Les transients et les menus</h3>\n<p>Utiliser les <a href="http://www.doitwithwp.com/use-transients-speed-wordpress-menus/">transients est une bonne idée pour optimiser les menus</a> (en).</p>\n<h3>Une page « auteurs »</h3>\n<p>Si vous avez plusieurs auteurs sur votre site, il peut être intéressant de les présenter en une seule page. <a href="http://wpchannel.com/creer-page-contributeurs-wordpress-valoriser-auteurs/">Les explications sont fournies ici.</a></p>\n<h3>Retour d’expérience : WordPress et WooCommerce</h3>\n<p><a href="http://www.dysign.fr/making-of-site-de-vente-de-sac-personnalisables-avec-wordpress-woocommerce/">Un retour sur expérience</a> très interessant sur l’utilisation de WordPress pour un site e-Commerce allié à l’extension WooCommerce.</p>\n<h3>Des nouvelles émoticônes WordPress</h3>\n<p>Les émoticônes par défaut de WordPress vieillissent. Elles ont été relookées et son disponibles <a href="http://wptavern.com/give-wordpress-smilies-a-face-lift-new-plugin-adds-wordpress-com-emoticons-to-self-hosted-sites">sous forme d’une extension (en).</a></p>\n<h3>Le SEO par Yoast, fausse bonne idée ?</h3>\n<p><a href="http://www.lumieredelune.com/encrelune/wordpress-seo-yoast-risque,2014,03">Lumière de Lune nous éclaire sur l’utilisation de Yoast SEO</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=65HPLf0Qlsc:Ju6FvPpFH4U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=65HPLf0Qlsc:Ju6FvPpFH4U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=65HPLf0Qlsc:Ju6FvPpFH4U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=65HPLf0Qlsc:Ju6FvPpFH4U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=65HPLf0Qlsc:Ju6FvPpFH4U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=65HPLf0Qlsc:Ju6FvPpFH4U:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/65HPLf0Qlsc" 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:56:"http://www.wordpress-fr.net/2014/03/26/lhebdo-n223/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:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:51:"http://www.wordpress-fr.net/2014/03/26/lhebdo-n223/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a: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:20:"WordPress 3.9 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:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/6_mvpAialPM/";s: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:69:"http://www.wordpress-fr.net/2014/03/21/wordpress-3-9-beta-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 23:23:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{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: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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=6906";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:319:"WordPress 3.9 Beta 2 est disponible pour les tests ! Nous avons réalisé plus de 100 corrections (en) depuis la Beta 1, mais nous avons toujours besoin de votre aide si nous voulons atteindre l’objectif de la version finale en avril. Pour savoir ce qui change et où regarder il faut se référer à la […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:3340:"<p>WordPress 3.9 Beta 2 est disponible pour les tests !</p>\n<p>Nous avons réalisé plus de 100 <a href="https://core.trac.wordpress.org/log?rev=27639&stop_rev=27500&limit=200">corrections (en)</a> depuis la Beta 1, mais nous avons toujours besoin de votre aide si nous voulons atteindre l’objectif de la version finale en avril. Pour savoir ce qui change et où regarder il faut se référer à<a title="WordPress 3.9 Beta 1" href="http://www.wordpress-fr.net/2014/03/18/wordpress-3-9-beta-1/"> la Beta 1</a>. Voici quelques changements inclus dans la beta 2 :</p>\n<ul>\n<li>Rendu de l’intégration du lecteur multimédia directement dans l’éditeur visuel.</li>\n<li>Améliorations visuelles et fonctionnelles dans l’éditeur, le gestionnaire de média et l’installeur de thèmes.</li>\n<li>Plusieurs correctifs dans TinyMCE, le logiciel derrière l’éditeur visuel.</li>\n<li>De nombreux correctifs dans la gestion des widgets de le personnaliseur de thème.</li>\n</ul>\n<p>Comme toujours, s<strong>i vous pensez avoir découvert un bug</strong>, dites-le sur le forum officiel <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta (en)</a>. Nous aimons avoir votre avis ! Si vous êtes en mesure de rédiger un rapport de bug, <a href="https://make.wordpress.org/core/reports/">faites-le sur WordPress Trac (en)</a>. Vous trouverez aussi <a href="http://core.trac.wordpress.org/tickets/major">une liste des bugs connus</a> et <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">ceux déjà résolus</a>.</p>\n<p><strong>Cette application est toujours en développement,</strong> donc il n’est pas recommandé de l’utiliser sur un site en production. Il est préférable d’utiliser un site de test juste pour jouer avec les nouvelles fonctionnalités de cette version. Pour essayer WordPress 3.9, utilisez soit l’extension <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> (vous utiliserez “bleeding edge nightlies”). Ou téléchargez simplement <a href="http://wordpress.org/wordpress-3.9-beta2.zip">la version beta ici </a>(zip).</p>\n<p><em><strong>NB</strong> : Traduction adaptée de l’<a href="http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/">article de WordPress.org</a>.</em></p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=6_mvpAialPM:9QhdM8QCNY0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=6_mvpAialPM:9QhdM8QCNY0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=6_mvpAialPM:9QhdM8QCNY0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=6_mvpAialPM:9QhdM8QCNY0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=6_mvpAialPM:9QhdM8QCNY0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=6_mvpAialPM:9QhdM8QCNY0:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/6_mvpAialPM" 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:65:"http://www.wordpress-fr.net/2014/03/21/wordpress-3-9-beta-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s: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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:60:"http://www.wordpress-fr.net/2014/03/21/wordpress-3-9-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:"";}}}}}i:4;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:6:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.9 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/j7jDAk1SBTw/";s: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:69:"http://www.wordpress-fr.net/2014/03/18/wordpress-3-9-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Mar 2014 14:54:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=6893";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:363:"Je suis heureux de vous annoncer que la première version beta de WordPress 3.9 est disponible au téléchargement depuis quelques jours. WordPress 3.9 est prévu pour sortir le mois prochain — mais avant d’atteindre cet objectif, nous avons besoin de votre aide pour tester toutes les nouveautés que nous avons ajoutées : TinyMCE a été mis […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:8132:"<p>Je suis heureux de vous annoncer que la première version beta de <strong>WordPress 3.9</strong> est disponible au téléchargement depuis quelques jours.</p>\n<p>WordPress 3.9 est prévu pour sortir le mois prochain — mais avant d’atteindre cet objectif, <strong>nous avons besoin de votre aide</strong> pour tester toutes les nouveautés que nous avons ajoutées :</p>\n<ul>\n<li><strong>TinyMCE a été mis à jour</strong> vers la dernière version, il s’agit du logiciel qui fait fonctionner l’éditeur visuel. Dorénavant le balisage devrait être plus propre. Aussi, testez la nouvelle option de collage de texte. L’ancien bouton « coller depuis Word » a été supprimé car peu utilisé. Il est possible que des extensions qui ajoutait des barres d’outils ne fonctionnent plus comme nous vous l’annoncions (<a href="https://core.trac.wordpress.org/ticket/24067">#24067</a>). (<a href="http://wordpress.org/support/">ouvrez une discussion de support</a> pour l’auteur de l’extension.)</li>\n<li>Un gestionnaire de <strong>widget avec aperçu en direct a été ajouté </strong>(le personnaliseur). Testez la modification, l’ajout et le déplacement des widgets (<a href="https://core.trac.wordpress.org/ticket/27112">#27112</a>). Nous avons aussi ajouté la possibilité de charger, couper et gérer les images d’en-tête, sans avoir besoin de quitter l’aperçu. (<a href="https://core.trac.wordpress.org/ticket/21785">#21785</a>)</li>\n<li>Nous avons apporté une <strong>nouvelle expérience à l’installeur de thèmes</strong> de WordPress 3.8. Testez-le ! (<a title="View ticket" href="https://core.trac.wordpress.org/ticket/27055">#27055</a>)</li>\n<li><strong>Les galeries ont maintenant leur aperçu dans l’éditeur.</strong> Charger quelques photos et insérez une galerie pour voir en direct le résultat. (<a href="https://core.trac.wordpress.org/ticket/26959">#26959</a>)</li>\n<li>Vous pouvez maintenant glisser-déposer (« <strong>drag-and-drop »</strong>) les images directement dans l’éditeur pour les charger automatiquement. C’est sans doute encore un peu capricieux, donc aidez-nous à l’améliorer en le testant. (<a href="https://core.trac.wordpress.org/ticket/19845">#19845</a>)</li>\n<li>Quelques éléments ont été améliorés dans l’<strong>édition d’images</strong>. C’est encore plus facile de faire des modifications sur une image après son insertion dans une publication (<a title="View ticket" href="https://core.trac.wordpress.org/ticket/24409">#24409</a>) et vous ne serez plus envoyé dans une nouvelle fenêtre quand vous aurez besoin de couper ou de modifier la rotation d’une image (<a href="https://core.trac.wordpress.org/ticket/21811">#21811</a>).</li>\n<li>Nouvelle <strong>playlist audio/vidéo</strong>. Chargez des fichiers sons et/ou vidéo pour essayer ça. (<a href="https://core.trac.wordpress.org/ticket/26631">#26631</a>)</li>\n</ul>\n<p><strong>Si vous pensez avoir découvert un bug</strong>, dites-le sur le forum officiel <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta (en)</a>. Nous aimons avoir votre avis ! Si vous êtes en mesure de rédiger un rapport de bug, <a href="https://make.wordpress.org/core/reports/">faites-le sur WordPress Trac (en)</a>. Vous trouverez aussi <a href="http://core.trac.wordpress.org/tickets/major">une liste des bugs connus</a> et <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">ceux déjà résolus</a>.</p>\n<p><strong>Cette application est toujours en développement,</strong> donc il n’est pas recommandé de l’utiliser sur un site en production. Il est préférable d’utiliser un site de test juste pour jouer avec les nouvelles fonctionnalités de cette version. Pour essayer WordPress 3.9, utilisez soit l’extension <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> (vous utiliserez “bleeding edge nightlies”). Ou téléchargez simplement <a href="http://wordpress.org/wordpress-3.9-beta1.zip">la version beta ici</a> (zip).</p>\n<p><span id="more-6893"></span></p>\n<hr />\n<p><strong>DÉVELOPPEURS !</strong> Salut ! Il y a beaucoup pour vous, aussi.</p>\n<p><strong>Veillez à bien tester vos extensions et thèmes !</strong> Il y a beaucoup de nouveaux éléments importants dans cette version 3.9 et nous pensons publier bientôt à ce sujet sur le blog. Si vous n’avez pas encore lu le <a href="http://make.wordpress.org/core/tag/week-in-core/">résumé de la semaine (en) </a>sur le <a href="http://make.wordpress.org/core/">blog de développement</a>, c’est le moment. (Vous devriez suivre ce blog dès maintenant !). Pour l’instant, vous pouvez déjà porter davantage d’attention aux points suivants lors de vos tests :</p>\n<ul>\n<li>Le <strong>processus de chargement dans le multisite</strong> a été réécrit<strong></strong>. Si vous constatez des problèmes dans votre réseau, référez-vous au trac <a href="https://core.trac.wordpress.org/ticket/27003">#27003</a>.</li>\n<li>Nous utilisons maintenant l’<strong>extension de base de données</strong> <strong>MySQL Improved (mysqli),</strong> si vous utilisez une version récente de PHP (<a href="https://core.trac.wordpress.org/ticket/21663">#21663</a>). Testez vos extensions et vérifiez que tout fonctionne correctement, et soyez surs que vous n’appelez pas la fonction <code>mysql_*</code> directement.</li>\n<li><strong>La sauvegarde automatique </strong>a été revue, donc si vous constatez un quelconque problème de ce côté ou avec heartbeat, etc., dites-le (<a href="https://core.trac.wordpress.org/ticket/25272">#25272</a>).</li>\n<li>Des bibliothèques ont été mises à jour, en particulier Backbone 1.1 et Underscore 1.6 (<a href="https://core.trac.wordpress.org/ticket/26799">#26799</a>). Aussi Masonry 3 (<a href="https://core.trac.wordpress.org/ticket/25351">#25351</a>), PHPMailer (<a href="https://core.trac.wordpress.org/ticket/25560">#25560</a>), Plupload (<a href="https://core.trac.wordpress.org/ticket/25663">#25663</a>), et TinyMCE (<a href="https://core.trac.wordpress.org/ticket/24067">#24067</a>).</li>\n<li>TinyMCE 4.0 est une mise à jour <em>majeure</em>. Vérifiez <a href="http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x">le guide de mise à jour de </a>TinyMCE and notre <a href="https://core.trac.wordpress.org/ticket/24067">ticket</a> pour plus d’informations. Pour toutes questions ou problèmes <a href="http://wordpress.org/support/forum/alphabeta">ouvrez une discussion sur le forum officiel</a> (en).</li>\n</ul>\n<p>Bon test !</p>\n<p><em><em>Beaucoup d’améliorations<br />\nDes petites choses deviennent importantes</em><br />\nMerci de tester cette beta 1<br />\n</em></p>\n<p><em><strong>NB</strong> : Ceci est une traduction adaptée de l’article original paru sur <a href="http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/">wordpress.org</a> (en).</em></p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=j7jDAk1SBTw:e6QMEu4K10A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=j7jDAk1SBTw:e6QMEu4K10A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=j7jDAk1SBTw:e6QMEu4K10A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=j7jDAk1SBTw:e6QMEu4K10A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=j7jDAk1SBTw:e6QMEu4K10A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=j7jDAk1SBTw:e6QMEu4K10A:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/j7jDAk1SBTw" 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:65:"http://www.wordpress-fr.net/2014/03/18/wordpress-3-9-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s: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:60:"http://www.wordpress-fr.net/2014/03/18/wordpress-3-9-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:54:"\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:73:"L’Hebdo WordPress n°222 : VIdéo WordCamp Paris 2014 – WordPress 3.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/PWb1bd7o8Zo/";s: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/2014/03/18/lhebdo-wordpress-n222/#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, 18 Mar 2014 06:33:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;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: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: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: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:13:"wordpress 3.9";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=6890";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:404:"WordCamp Paris 2014 : première vidéo La première vidéo du WordCamp Paris 2014 est disponible sur wordpress.tv depuis quelques jours. Il s’agit de la conférence d’Amaury Balmer sur l’industrialisation d’un projet WordPress. WordPress 3.9 : les nouveautés en image Un aperçu du futur WordPress 3.9 en image ici (en). Infographie pour résumer les différences entre […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:3136:"<h3>WordCamp Paris 2014 : première vidéo</h3>\n<p>La première vidéo du WordCamp Paris 2014 est disponible sur wordpress.tv depuis quelques jours. Il s’agit de la <a href="http://wordpress.tv/2014/03/10/amaury-balmer-industrialiser-son-ou-ses-projets-wordpress/">conférence d’Amaury Balmer</a> sur l’industrialisation d’un projet WordPress.</p>\n<h3>WordPress 3.9 : les nouveautés en image</h3>\n<p><a href="http://www.wpbeginner.com/news/whats-coming-in-wordpress-3-9-features-and-screenshots/">Un aperçu du futur WordPress 3.9 en image ici</a> (en).</p>\n<h3>Infographie pour résumer les différences entre wp.org et wp.com</h3>\n<p>Il est souvent difficile pour les débutants de différencier l’offre de wordpress.com de celle de wordpress.org. <a href="http://www.frederiquegame.fr/infographie-pour-resumer-les-differences-des-plates-formes-wordpress/">Voici une infographie qui permet d’y voir plus clair</a>.</p>\n<h3>Le tableau de bord</h3>\n<p>Le tableau de bord est la première chose que vous voyez de WordPress après son installation… <a href="http://www.sacredearthpartners.com/holistic-solopreneur/wordpress-holistic-solopreneur/the-wordpress-dashboard-at-a-glance/">Petit tour des lieux </a>(en) !</p>\n<h3>Comment migrer vers Jetpack Markdown</h3>\n<p>Si vous souhaitez migrer vers le module <a href="http://iamjenxi.com/jetpack-markdown/">Markdown de Jetpack voici comment s’y prendre</a> (en).</p>\n<h3>Validateur de thème</h3>\n<p><a href="http://themecheck.org/">Un site qui permet de valider votre thème</a> (en) et vous indiquez s’il respecte les standards WordPress vient de voir le jour.</p>\n<h3>Combattre le plagiat</h3>\n<p><a href="http://wpformation.com/copie-no-right-click-wordpress/">Fabrice présente sa méthode pour lutter contre le plagiat </a>sur Internet… avec WordPress.</p>\n<h3>Si vous ne voyez pas votre .htaccess</h3>\n<p>Il arrive que le fichier .htaccess soit caché, <a href="http://www.wpbeginner.com/beginners-guide/why-you-cant-find-htaccess-file-on-your-wordpress-site/">vérifiez donc ces quelques éléments</a> (en) pour le faire apparaitre.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=PWb1bd7o8Zo:g01UKqz101o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=PWb1bd7o8Zo:g01UKqz101o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=PWb1bd7o8Zo:g01UKqz101o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=PWb1bd7o8Zo:g01UKqz101o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=PWb1bd7o8Zo:g01UKqz101o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=PWb1bd7o8Zo:g01UKqz101o:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/PWb1bd7o8Zo" 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/2014/03/18/lhebdo-wordpress-n222/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"10";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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/2014/03/18/lhebdo-wordpress-n222/";s: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:54:"\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:87:"L’Hebdo WordPress n°221 : WordCamp Europe – BarCamp Biarritz – Meetup 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:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/UdsOD1HQkBs/";s: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:121:"http://www.wordpress-fr.net/2014/03/11/lhebdo-wordpress-n221-wordcamp-europe-barcamp-biarritz-meetup-buddypress/#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, 11 Mar 2014 06:10:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;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:1;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:2;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:3;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:4;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=6880";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:342:"Les communautés sont encore à l’honneur de cet hebdo. Pour preuve que le mouvement s’amplifie, en France et en Europe. Cet élan est remarquable. Poursuivez car on ne le dira jamais assez, la commuanuté c’est vous qui la faites… et vous le montrez ! WordCamp Europe 2014 : des dates et un lieu Le 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: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:3427:"<p>Les communautés sont encore à l’honneur de cet hebdo. Pour preuve que le mouvement s’amplifie, en France et en Europe. Cet élan est remarquable. Poursuivez car on ne le dira jamais assez, la commuanuté c’est vous qui la faites… et vous le montrez !</p>\n<h3>WordCamp Europe 2014 : des dates et un lieu</h3>\n<p><a href="http://central.wordcamp.org/news/2014/03/10/wordcamp-europe-2014-scheduled/">Le WordCamp Europe 2014</a> aura lieu du 27 au 29 septembre 2014 à Sofia en Bulgarie. <a href="http://wptavern.com/sofia-bulgaria-to-host-wordcamp-europe-2014">WP Tavern en parle avec un nouveau clin d’oeil</a> (en) à la communauté francophone au travers de l’interview qu’avait donné Jenny à la suite du WordCamp Paris 2014.</p>\n<h3>BarCamp WordPress à Biarritz</h3>\n<p>Le 1er barcamp WordPress de Biarritz aura lieu le 18 mars prochain à Biarritz. Organisé par l’association WordPress MX, l’événement est ouvert à toute la communauté du Sud Ouest. Les inscriptions se foint via <a href="https://www.facebook.com/events/281209702036068/">Facebook </a>ou <a href="https://plus.google.com/events/c1edl8ja08mjsim7uqsf0eplrq4?authkey=CI7xlJjFrY73Xg">Google+</a>. <a href="http://wpchannel.com/barcamp-wordpress-biarritz-2014/">Les informations complètes sont données par WPChannel</a>.</p>\n<h3>Un meetup sur BuddyPress 2.0 ?</h3>\n<p>Si une rencontre parisienne sur le thème de BuddyPress 2.0 vous intéresse, <a href="http://www.meetup.com/wordpress-ile-de-france/polls/">répondez à ce questionnair</a>e.</p>\n<h3>AgoraCMS : à vos candidatures</h3>\n<p>Il vous reste 4 jours pour déposer vos propositions de conférences pour l’événement AgoraCMS. <a href="http://www.agoracms.com/appel-a-communications/">Toutes les informations ici</a>.</p>\n<h3>De Dreamweaver à WordPress</h3>\n<p>Marie-Aude propose de découvrir le passage de <a href="http://www.lumieredelune.com/encrelune/passer-dreamweaver-wordpress,2014,02">Dreamweaver à WordPress</a> en douceur.</p>\n<h3>Réflexion pour les développeurs</h3>\n<p>Chris Lema <a href="http://chrislema.com/wordpress-developers-add-ons/">propose une réflexion pour les développeurs</a> (en).</p>\n<h3>Des chiffres sur MailPoet</h3>\n<p>L’extension de newsletter MailPoet connait un succès fulgurant. <a href="https://trends.builtwith.com/widgets/MailPoet">Voici quelques chiffres qui vous le confirmeront</a> (en).</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=UdsOD1HQkBs:a8ES4H-eL90:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=UdsOD1HQkBs:a8ES4H-eL90:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=UdsOD1HQkBs:a8ES4H-eL90:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=UdsOD1HQkBs:a8ES4H-eL90:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=UdsOD1HQkBs:a8ES4H-eL90:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=UdsOD1HQkBs:a8ES4H-eL90:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/UdsOD1HQkBs" 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:117:"http://www.wordpress-fr.net/2014/03/11/lhebdo-wordpress-n221-wordcamp-europe-barcamp-biarritz-meetup-buddypress/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:"4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:112:"http://www.wordpress-fr.net/2014/03/11/lhebdo-wordpress-n221-wordcamp-europe-barcamp-biarritz-meetup-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:6:{s:4:"data";s:54:"\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:70:"L’Hebdo WordPress n°220 : BuddyPress – Profils wp.org – 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:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/ho7cn2AG74Q/";s: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:104:"http://www.wordpress-fr.net/2014/03/04/lhebdo-wordpress-n220-buddypress-profils-wp-org-jetpack/#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, 04 Mar 2014 06:19: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:5:{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: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:2;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:3;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:4;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=6877";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:374:"Jetpack 2.9 Jetpack 2.9 (en) apporte les articles relatifs et la connexion unique en multisite. Travaux sur les profils WordPress.org a commencé il y a quelques temps une réflexion sur l’évolution du profil (en) utilisateur du site. Les résultats du sondage BuddyPress 2014 Les priorités du développement de BuddyPress (en) en 2014 devraient suivre les […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:3121:"<h3>Jetpack 2.9</h3>\n<p><a href="http://jetpack.me/2014/02/26/jetpack-2-9/">Jetpack 2.9</a> (en) apporte les articles relatifs et la connexion unique en multisite.</p>\n<h3>Travaux sur les profils</h3>\n<p>WordPress.org a commencé il y a quelques temps <a href="http://make.wordpress.org/community/2014/02/26/profiles-a-sketch/">une réflexion sur l’évolution du profil</a> (en) utilisateur du site.</p>\n<h3>Les résultats du sondage BuddyPress 2014</h3>\n<p>Les priorités <a href="http://wptavern.com/buddypress-to-adopt-features-as-plugins-model-to-develop-new-media-component">du développement de BuddyPress</a> (en) en 2014 devraient suivre les résultats de ce sondage.</p>\n<h3>Les pièces jointes dans BuddyPress</h3>\n<p><a href="https://vimeo.com/87608326">Une vidéo d’iMath</a> pour expliquer les pièces jointes de BuddyPress.</p>\n<h3>Amélioration dans BuddyPress 2.0</h3>\n<p>BuddyPress 2.0 <a href="http://bp-fr.net/amelioration-pour-buddypress-2-0/">va améliorer la gestion de « last_activity »</a>.</p>\n<h3>Un jour de contribution à Manchester</h3>\n<p>Le 1er mars était le <a href="http://www.wpcontributorday.com/">jour de contribution</a> (en) à WordPress pour <a href="http://make.wordpress.org/core/2014/02/25/contributors-wanted-for-wp-contributor-day-manchester/">Manchester (en)</a>. A quand le vôtre ?</p>\n<h3>Embrouiller les traceurs de liens</h3>\n<p><a href="http://boost.bookmarks.fr/plugin-wordpress-traceurs-201402.html">Une extension qui va permettre d’embrouiller</a> les traceurs de liens pour protéger votre SEO.</p>\n<h3>Mieux connaitre une vulnérabilité : CSRF</h3>\n<p>Otto propose <a href="http://ottopress.com/2014/better-know-a-vulnerability-cross-site-request-forgery-csrf/">d’expliquer une vulnérabilité</a> : CSRF (en).</p>\n<h3>Page d’erreur pour base de données inaccessible</h3>\n<p>En cas de panne de votre BDD une page blanche avec un message tout simple apparait… <a href="http://quick-tutoriel.com/creer-page-derreur-base-de-donnees-inaccessible-wordpress/">et si vous pouviez personnaliser cette page</a> ?</p>\n<p> </p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ho7cn2AG74Q:3v-4l4rLaDk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ho7cn2AG74Q:3v-4l4rLaDk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=ho7cn2AG74Q:3v-4l4rLaDk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ho7cn2AG74Q:3v-4l4rLaDk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=ho7cn2AG74Q:3v-4l4rLaDk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=ho7cn2AG74Q:3v-4l4rLaDk:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/ho7cn2AG74Q" 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:100:"http://www.wordpress-fr.net/2014/03/04/lhebdo-wordpress-n220-buddypress-profils-wp-org-jetpack/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:95:"http://www.wordpress-fr.net/2014/03/04/lhebdo-wordpress-n220-buddypress-profils-wp-org-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:8;a:6:{s:4:"data";s:54:"\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:69:"L’Hebdo WordPress n°219 : Audio/Vidéo – WooCommerce – YouTube";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/5asxPZSyR9c/";s: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:101:"http://www.wordpress-fr.net/2014/02/25/lhebdo-wordpress-n219-audiovideo-woocommerce-youtube/#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, 25 Feb 2014 06:41:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{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:"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: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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/?p=6849";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:426:"Mise à jour de l’audio/vidéo WordPress progresse en terme de multimédia. L’une des tâches actuelles consiste en la mise à jour des options d’intégration des vidéo et fichiers audio (en). Attention hébergement incompatible ! Comment prévenir l’utilisateur qu’une extension est incompatible avec l’hébergeur du site ? Cette astuce montre comment insérer une ligne de code […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:2715:"<h3>Mise à jour de l’audio/vidéo</h3>\n<p>WordPress progresse en terme de multimédia. L’une des tâches actuelles consiste en la <a href="http://make.wordpress.org/core/2014/02/20/audio-video-2-0-update-playlists/">mise à jour des options d’intégration des vidéo et fichiers audio</a> (en).</p>\n<h3>Attention hébergement incompatible !</h3>\n<p>Comment prévenir l’utilisateur qu’une extension est incompatible avec l’hébergeur du site ? Cette astuce montre comment insérer <a href="http://wptavern.com/how-to-prevent-wordpress-plugins-from-activating-on-sites-with-incompatible-hosting-environments">une ligne de code dans l’entête de l’extension</a> (en).</p>\n<h3>Le hook template_redirect</h3>\n<p>Ce hook est très intéressant lorsqu’il est utilisé dans de bonnes conditions… <a href="http://markjaquith.wordpress.com/2014/02/19/template_redirect-is-not-for-loading-templates/">et moins bien dans le cas contraire</a> (en). Explication !</p>\n<h3>5 extensions pour YouTube</h3>\n<p>Voici 5 extensions utiles si <a href="http://www.wpjedi.com/wordpress-plugins-for-youtubers/">vous aimez YouTube</a> (en).</p>\n<h3>WP-Rocket a son blog</h3>\n<p><a href="http://blog.wp-rocket.me/ouverture-blog-wp-rocket/">Le blog de WP-Rocket</a> vient d’être lancer dans la blogosphère. Bienvenue !</p>\n<h3>Désactivez le CSS dans WooCommerce 2.1</h3>\n<p>Voici une méthode pour <a href="http://wpchannel.com/desactiver-styles-css-woocommerce-2-1/">désactiver les styles CSS dans WooCommerce 2.1</a>.</p>\n<h3>Des fonctions cachées dans WordPress</h3>\n<p><a href="http://wpformation.com/blog-wordpress-options/">Fabrice présente des options cachées</a> dans WordPress.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=5asxPZSyR9c:cth9uizx2ek:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=5asxPZSyR9c:cth9uizx2ek:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=5asxPZSyR9c:cth9uizx2ek:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=5asxPZSyR9c:cth9uizx2ek:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=5asxPZSyR9c:cth9uizx2ek:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=5asxPZSyR9c:cth9uizx2ek:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/5asxPZSyR9c" 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:97:"http://www.wordpress-fr.net/2014/02/25/lhebdo-wordpress-n219-audiovideo-woocommerce-youtube/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:92:"http://www.wordpress-fr.net/2014/02/25/lhebdo-wordpress-n219-audiovideo-woocommerce-youtube/";s: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:54:"\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:29:"Les trouvailles de la vitrine";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/QSB3ODLEWlo/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:78:"http://www.wordpress-fr.net/2014/02/20/les-trouvailles-de-la-vitrine/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Feb 2014 08:30: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:5:{i:0;a:5:{s:4:"data";s:11:"Blogosphere";s: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:"culture";s: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:"festival";s: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:"vitrine";s: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:"webzine";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=6755";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:419:"La vitrine, c’est cette collection de « super sites » WordPress qu’on est heureux de mettre en avant. Pour mieux les partager, une petite sélection, de temps en temps, cette fois-ci sur le thème « culturel ». Honneur à Arte, d’abord, qui nous aime beaucoup. La chaine a fait une collection de mini-sites pour une série d’émission, celui sur […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Lumière de Lune";s: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:7950:"<p>La <a href="http://www.wordpress-fr.net/vitrine/">vitrine</a>, c’est cette collection de « super sites » WordPress qu’on est heureux de mettre en avant.</p>\n<p>Pour mieux les partager, une petite sélection, de temps en temps, cette fois-ci sur le thème « culturel ».</p>\n<p><span id="more-6755"></span></p>\n<p><img class="alignleft size-medium wp-image-4049" alt="Amazonie - le souffle indien" src="http://www.wordpress-fr.net/wp-content/uploads/2012/03/Amazonie-le-souffle-indien-300x279.jpg" width="300" height="279" /></p>\n<h2>Honneur à Arte, d’abord, qui nous aime beaucoup.</h2>\n<p>La chaine a fait une collection de mini-sites pour une série d’émission, <a href="http://amazonie.arte.tv/">celui sur l’Amazonie</a> est un exemple superbe, avec une page d’accueil qui cache bien son côté « blog », et un graphisme extrêmement réussi. (Pour plus de détails, la fiche de la vitrine est <a href="http://www.wordpress-fr.net/vitrine/amazonie-le-souffle-indien/">ici</a>)</p>\n<p>Arte gère aussi ses <a href="http://www.arte.tv/sites/webdocs/?lang=fr">webdocs</a> avec WordPress et WPML. L’architecture globale du site d’Arte intègre donc des briques faites avec WordPress, quand cela correspond au besoin.</p>\n<h2>Un autre très beau site : les saisons indiennes du Musée Guimet</h2>\n<p><img class="alignright size-medium wp-image-3906" alt="th_08d88be6fb326f5dd7b597c04e3eb8a3_guimet" src="http://www.wordpress-fr.net/wp-content/uploads/2012/02/th_08d88be6fb326f5dd7b597c04e3eb8a3_guimet-300x146.jpg" width="300" height="146" /></p>\n<p style="text-align: left;">Comme Arte, le Musée Guimet utilise WordPress pour un mini-site destiné à un événement, en l’occurrence l’ensemble d’expositions, conférences, films, … dédiés à l’Inde, lors du printemps et de l’été 2011, la <a href="http://saisonindienne.guimet.fr/">Saison Indienne</a>. Le site comprenait un blog, des articles (malheureusement, désormais, redirigés vers l’accueil).</p>\n<h2>Le site de l’Alliance Française</h2>\n<p><img class="alignleft size-medium wp-image-3238" alt="alliance-francaise" src="http://www.wordpress-fr.net/wp-content/uploads/2011/08/alliance-francaise-300x225.jpg" width="300" height="225" />Toujours dans les sites des « institutions culturelles », le portail de l’<a href="http://www.fondation-alliancefr.org/">Alliance Française</a> est aussi réalisé sous WordPress.</p>\n<p>Il présente l’ensemble des établissements dans le monde, leurs activités, et un annuaire avec une carte reliées aux différentes catégories (les localisations géographiques).</p>\n<p>Un formulaire de recherche à facettes permet aussi de trouver un établissement particulier, sachant que les sites locaux sont, le plus souvent, intégrés aux sites des ambassades.</p>\n<h2>Les Webzines culturels</h2>\n<p>WordPress est particulièrement adapté à la production de superbes webzines. En voici deux exemplaires :</p>\n<div id="attachment_3443" style="width: 228px" class="wp-caption alignleft"><a href="http://orpheomundi.net"><img class=" wp-image-3443 " alt="L''Orpheo Mundi, édité par un contributeur du forum" src="http://www.wordpress-fr.net/wp-content/uploads/2011/09/orpheomundi-300x225.jpg" width="218" height="178" /></a><p class="wp-caption-text">L’<a href="http://orpheomundi.net/">Orpheo Mundi</a>, édité par un contributeur du forum</p></div>\n<div id="attachment_2330" style="width: 252px" class="wp-caption alignright"><a href="http://www.lalunemauve.fr/"><img class=" wp-image-2330 " alt="La Lune Mauve, webzine depuis 2000" src="http://www.wordpress-fr.net/wp-content/uploads/2011/03/la_lune_mauve-300x139.jpg" width="242" height="112" /></a><p class="wp-caption-text"><a href="http://www.lalunemauve.fr/">La Lune Mauve</a>, webzine depuis 2000</p></div>\n<p>Deux styles de contenus et de graphismes à la fois très différents, et très proches par leur qualité, et leur univers, et la preuve qu’on peut faire des sites de très grande qualité avec des « petits moyens » et WordPress.</p>\n<h2>La Bande Dessinée</h2>\n<p><img class="alignleft size-medium wp-image-2337" alt="Screen shot de Bodoi" src="http://www.wordpress-fr.net/wp-content/uploads/2011/03/bodoi-300x258.jpg" width="300" height="258" />La BD, sur WordPress, c’est un univers à part, avec de nombreux représentants, qui justifierait un article entier.</p>\n<p>Article qui viendra sans doute d’ailleurs.</p>\n<p>En attendant, parmi les nombreux sites dans la vitrine, j’ai choisi <a href="http://www.bodoi.com/">Bodoï</a>, un ancien magasine « en kiosque », qui est passé « en ligne » uniquement, et qui continue son travail d’analyse, de critique et d’informations.</p>\n<p>L’ensemble est clairement structuré, tant dans un thème au graphisme efficace que dans les quatre sections (Bande dessinée proprement dite, Comics, Manga et Jeunesse).</p>\n<h2>Les communautés</h2>\n<p><img class="alignright size-medium wp-image-2366" alt="" src="http://www.wordpress-fr.net/wp-content/uploads/2011/03/kloobik-300x195.jpg" width="300" height="195" /></p>\n<p>WordPress fédère aussi des communautés, ainsi <a href="http://www.kloobik.org">Kloobik</a>, une des plus anciennes communautés open source de graphistes (The Gimp).</p>\n<p>Et dans l’esprit de l’OpenSource, si vous êtes une association ou un particulier, ou si vous avez un projet non commercial, vous pouvez faire une demande pour obtenir un superbe site, avec des graphismes faits par les membres de la communauté… et une base WordPress !</p>\n<h2>Les Festivals</h2>\n<p><img class="size-medium wp-image-6695 alignleft" alt="Festival des Musiques Sacrées de Fès" src="http://www.wordpress-fr.net/wp-content/uploads/2014/01/www_fesfestival_com-300x322.jpg" width="300" height="322" /></p>\n<p>Mini-événements, uniques ou récurrents, les festivals ont souvent leur site fait sur WordPress.</p>\n<p>La dernière entrée dans la vitrine, qui montre le <a href="http://www.fesfestival.com/">Festival des Musiques Sacrées de Fès</a> est un bon exemple de ce qu’on peut facilement faire avec WordPress, avec les différentes sections, l’agenda, l’espace presse, l’historique des années précédentes</p>\n<p>… et la billetterie en ligne, sur une base WooCommerce.</p>\n<p> </p>\n<h2>Contribuer à la vitrine ?</h2>\n<p>Si vous connaissez un site dont vous pensez qu’il pourrait figurer dans la vitrine,<strong> inutile de le signaler dans les commentaires, le plus simple est de</strong> <a href="http://www.wordpress-fr.net/ajouter-un-site/">le proposer directement dans la vitrine</a>… ce qui nous permettra d’avoir toutes les infos nécessaires.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=QSB3ODLEWlo:jNuk2ra2l1I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=QSB3ODLEWlo:jNuk2ra2l1I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=QSB3ODLEWlo:jNuk2ra2l1I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=QSB3ODLEWlo:jNuk2ra2l1I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=QSB3ODLEWlo:jNuk2ra2l1I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=QSB3ODLEWlo:jNuk2ra2l1I:gIN9vFwOqvQ" border="0"></img></a>\n</div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/QSB3ODLEWlo" 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:74:"http://www.wordpress-fr.net/2014/02/20/les-trouvailles-de-la-vitrine/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:"25";s: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:69:"http://www.wordpress-fr.net/2014/02/20/les-trouvailles-de-la-vitrine/";s: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:10:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"hi4lPzRIkt5lduueYOqx+m+vayg";s:13:"last-modified";s:29:"Tue, 15 Apr 2014 08:37:07 GMT";s:4:"date";s:29:"Tue, 15 Apr 2014 09:01:41 GMT";s:7:"expires";s:29:"Tue, 15 Apr 2014 09:01:41 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:18:"alternate-protocol";s:7:"80:quic";}s:5:"build";s:14:"20130911020210";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(242, '_transient_timeout_feed_mod_66a70e9599b658d5cc038e8074597e7c', '1397595701', 'no'),
(243, '_transient_feed_mod_66a70e9599b658d5cc038e8074597e7c', '1397552501', 'no'),
(244, '_transient_timeout_feed_2fb9572e3d6a42f680e36370936a57ae', '1397595701', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(245, '_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:303:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s: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:"2014-04-15T10:42:38Z";s: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:20:{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:105:"WordPress Francophone : L’Hebdo WordPress n°225 : WordPress 3.8.3 – WordPress 3.9 – BuddyPress 2.0";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/7wegzds2MAw/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/7wegzds2MAw/";}}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:"2014-04-15T07:54:38+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: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:7:"content";a:1:{i:0;a:5:{s:4:"data";s:4116:"<div>\n<p>2 semaines après le premier avril, je tiens à soulager toute la communauté en confirmant que l’information donnée dans le précédent hebdo était évidemment <a title="L’Hebdo WordPress n°224 : Facebook/Automattic – Masonry – BuddyPress" href="http://www.wordpress-fr.net/2014/04/01/lhebdo-wordpress-n224-mange-un-poisson-clown/">un gros poisson d’avril </a>(juste au cas où certains y aurait cru…)</p>\n<h3>Les prochaines rencontres en France</h3>\n<ul>\n<li><a href="http://www.meetup.com/WordPress-Lyon-Meetup/events/176385812/">A Lyon : le 22 avril.</a></li>\n<li>\n<a href="https://www.facebook.com/events/298654000290012/">A Bayonne</a> : WPMX remet le couvert le 26 avril.</li>\n<li>\n<a href="http://www.meetup.com/wordpress-ile-de-france/polls/1028452/">Une réflexion</a> pour un meetup parisien</li>\n</ul>\n<h3>WordPress 3.8.2 et WordPress 3.8.3</h3>\n<p>En une semaine de temps, 2 versions mineures de WordPress ont vu le jour : <a href="http://wordpress.org/news/2014/04/wordpress-3-8-2/">3.8.2</a> (en) et <a href="http://wordpress.org/news/2014/04/wordpress-3-8-3/">3.8.3 (en)</a>. La version 3.8.3 vient principalement réparer un dysfonctionnement du « brouillon rapide » apparu dans la 3.8.2.</p>\n<h3>WordPress 3.9 et MySQL</h3>\n<p>Des <a href="http://make.wordpress.org/plugins/2014/04/07/mysql-in-wordpress-3-9-implications-for-plugin-authors/">modifications (en) </a>interviennent concernant MySQL dans WordPress 3.9. <span style="text-decoration: underline;">Il est à noter que la version finale de WordPress 3.9 devrait sortir dans les tous prochains jours</span>.</p>\n<h3>BuddyPress 2.0 Beta 2 et RC1</h3>\n<p>BuddyPress 2.0 <a href="http://wptavern.com/major-milestone-for-buddypress-2-million-downloads-and-counting">progresse</a> (en), après une <a href="http://buddypress.org/2014/04/buddypress-2-0-beta2/">beta 2</a> (en), la <a href="http://buddypress.org/2014/04/buddypress-2-0-release-candidate/">première version candidate</a> (en) est sortie il y a quelques jours.</p>\n<h3>Jetpack 2.9.3</h3>\n<p>Jetpack arrive en <a href="http://jetpack.me/2014/04/10/jetpack-security-update/">version 2.9.3</a> (en) et apporte une correction d’une faille ancienne mais découverte que récemment.</p>\n<h3>WordPress est-il le bon outil ?</h3>\n<p>Voici des éléments de réponse <a href="http://wpshout.com/wordpress-right-tool-job/">si vous vous posez parfois la question (en)</a>.</p>\n<h3>Forcer la mise à jour des extensions</h3>\n<p>Julio propose une nouvelle extension permettant de forcer la mise à jour des extensions : <a href="http://boiteaweb.fr/force-plugin-updates-re-installez-vos-plugins-rapidement-8016.html#">Force Plugin Updates</a>.</p>\n<h3>Personnaliser les colonnes d’administration</h3>\n<p>Pour personnaliser les colonnes de votre administration, essayez cette extension : <a href="http://www.geekpress.fr/wordpress/extension/personnaliser-colonnes-administration-2004/">CodePress Admin Column</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7wegzds2MAw:LehP5y6AqGA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7wegzds2MAw:LehP5y6AqGA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=7wegzds2MAw:LehP5y6AqGA:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7wegzds2MAw:LehP5y6AqGA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=7wegzds2MAw:LehP5y6AqGA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=7wegzds2MAw:LehP5y6AqGA:gIN9vFwOqvQ" border="0"></a>\n</div>\n<img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/7wegzds2MAw" 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: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:40:"L''écho des plugins WordPress : WP Grass";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.li-an.fr/plugins/wp-grass/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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.li-an.fr/plugins/wp-grass/";}}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:"2014-04-14T10:29: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:5:"Li-An";s:7:"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:72:"<div>N''oubliez pas de passer la tondeuse dans votre site 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: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:83:"GeekPress : Codepress Admin Columns : Personnaliser les colonnes d’administration";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:87:"http://www.geekpress.fr/wordpress/extension/personnaliser-colonnes-administration-2004/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:87:"http://www.geekpress.fr/wordpress/extension/personnaliser-colonnes-administration-2004/";}}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:"2014-04-11T14:55:57+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:18:"Jonathan Buttigieg";s:7:"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:130:"<div>Le plugin Codepress Admin Column permet d''ajouter et de personnaliser les colonnes d’administration 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: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:71:"BoiteAWeb : Force Plugin Updates : Ré-installez vos plugins rapidement";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:86:"http://boiteaweb.fr/force-plugin-updates-re-installez-vos-plugins-rapidement-8016.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: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:86:"http://boiteaweb.fr/force-plugin-updates-re-installez-vos-plugins-rapidement-8016.html";}}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:"2014-04-10T23:09:04+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:12:"Julio Potier";s:7:"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:588:"<div>\n<p>Lorsque vous essayez (et vous allez surement essayer maintenant que je vous le dit) de mettre à jour un plugin déjà à jour avec la boite "Action", WordPress vous indique que "Votre version est déjà à jour". Impossible de continuer, c''est un message d''erreur.</p>\n<p>Cet article <a href="http://boiteaweb.fr/force-plugin-updates-re-installez-vos-plugins-rapidement-8016.html">Force Plugin Updates : Ré-installez vos plugins rapidement</a> est apparu en premier sur <a href="http://boiteaweb.fr/">BoiteAWeb.fr</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: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:51:"L''écho des plugins WordPress : WP Front End Editor";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:63:"http://www.echodesplugins.li-an.fr/plugins/wp-front-end-editor/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:63:"http://www.echodesplugins.li-an.fr/plugins/wp-front-end-editor/";}}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:"2014-04-10T10:34:10+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:5:"Li-An";s:7:"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:108:"<div>Éditer vos billets à partir du frontend - bientôt dans le core 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:66:"WordPress Channel : WordPress 3.8.2 – Mise à jour de sécurité";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:37:"http://wpchannel.com/wordpress-3-8-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:37:"http://wpchannel.com/wordpress-3-8-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:"2014-04-09T17:21:45+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:15:"Aurélien Denis";s:7:"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:844:"<div>\n<p>WordPress 3.8.2 est à présent disponible. Il s’agit d’une importante mise à jour de sécurité pour toutes les versions précédentes de WordPress et il est donc vivement recommandé de procéder à la mise à jour des sites immédiatement. Résumé des modifications Cette mise à jour corrige une faiblesse qui pourrait laisser passer un pirate en…</p>\n<p><a rel="nofollow" href="http://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="http://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="http://wpchannel.com/wordpress-3-8-2/">WordPress 3.8.2 – Mise à jour de sécurité</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: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:95:"BoiteAWeb : Les marqueurs conditionnels : Mais si vous savez is_single(), is_admin() tout ça !";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:53:"http://boiteaweb.fr/marqueurs-conditionnels-8006.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: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:53:"http://boiteaweb.fr/marqueurs-conditionnels-8006.html";}}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:"2014-04-09T15:07:29+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:12:"Julio Potier";s:7:"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:485:"<div>\n<p>Récemment j''ai eu envie de vous faire un article sur quelques fonctions appelées "Marqueurs Conditionnels" ou "Conditional Tags". Mais n''ayant pas réussi à choisir, j''ai fait le fou ...</p>\n<p>Cet article <a href="http://boiteaweb.fr/marqueurs-conditionnels-8006.html">Les marqueurs conditionnels : Mais si vous savez is_single(), is_admin() tout ça !</a> est apparu en premier sur <a href="http://boiteaweb.fr/">BoiteAWeb.fr</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: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:97:"WordPress Channel : 6 manières d’obtenir du support auprès de la communauté WordPress France";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/obtenir-support-wordpress-france/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/obtenir-support-wordpress-france/";}}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:"2014-04-08T12:15: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:15:"Aurélien Denis";s:7:"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:861:"<div>\n<p>Quelles sont les meilleurs façons d’obtenir de l’aide sous WordPress ? Comment effectuer une demande efficace pour une réponse rapide ? Quelques conseils accompagnés d’une demi-douzaine de moyens pour vous dépanner avec WordPress. Conseils préliminaires Quelques conseils bons à rappeler avant de faire appel au support : Soyez patients : nous avons un travail et…</p>\n<p><a rel="nofollow" href="http://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="http://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="http://wpchannel.com/obtenir-support-wordpress-france/">6 manières d’obtenir du support auprès de la communauté WordPress France</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: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:52:"L''écho des plugins WordPress : WP Excerpt Generator";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:64:"http://www.echodesplugins.li-an.fr/plugins/wp-excerpt-generator/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:64:"http://www.echodesplugins.li-an.fr/plugins/wp-excerpt-generator/";}}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:"2014-04-07T11:31:25+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:5:"Li-An";s:7:"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:61:"<div>Générer automatiquement vos extraits</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:106:"Lumière de Lune : Préserver l’affichage des boutons dans TinyMCE avec la nouvelle version de WordPress";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:74:"http://www.lumieredelune.com/encrelune/boutons-wordpress-tinymcev4,2014,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:74:"http://www.lumieredelune.com/encrelune/boutons-wordpress-tinymcev4,2014,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:"2014-04-03T20:40:35+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:10:"Marie-Aude";s:7:"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:226:"<div>Tests de plugins avec l''arrivée de la nouvelle version de TInyMCE : comment mettre facilement vos icônes à jour pour conserver l''affichage de vos boutons dans la barre de l''éditeur visuel.</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:48:"L''écho des plugins WordPress : Jetpack Markdown";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://www.echodesplugins.li-an.fr/plugins/jetpack-markdown/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.echodesplugins.li-an.fr/plugins/jetpack-markdown/";}}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:"2014-04-02T11: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:5:"Li-An";s:7:"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:38:"<div>Markdown pour tout le monde</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:48:"WP Formation : WordPress et les Réseaux Sociaux";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:56:"http://wpformation.com/wordpress-et-les-reseaux-sociaux/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:56:"http://wpformation.com/wordpress-et-les-reseaux-sociaux/";}}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:"2014-04-02T08:45: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:12:"WP Formation";s:7:"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:1192:"<div>\n<p><img width="300" height="201" src="http://wpformation.com/wp-content/uploads/2014/04/wordpress-resaux-sociaux-300x201.jpg" class="attachment-medium wp-post-image" alt="wordpress-reseaux-sociaux" style="float: right; margin:0 0 10px 10px;">Imaginerait-on un commerce ou une entreprise évoluant sans publicité, sans représentants commerciaux ? De la même manière, qui, aujourd''hui, peut imaginer développer son site WordPress sans l''aide des réseaux sociaux ?</p>\n<hr>\n<a rel="nofollow" href="http://wpformation.com/wordpress-et-les-reseaux-sociaux/">WordPress et les Réseaux Sociaux</a> est un article de <a title="Formation Internet WordPress Ecommerce" href="http://wpformation.com/">WP Formation</a><br><a href="http://wpformation.com/formation-wordpress/">Formation WordPress</a> & <a href="http://wpformation.com/apprendre-creer-e-commerce/">eCommerce</a> - Retrouvez-moi sur <a title="Ajouter sur Facebook" href="http://www.facebook.com/Wibeweb">Facebook</a> - <a title="Suivre sur Twitter" href="http://twitter.com/wpformation">Twitter</a> - <a href="http://plus.google.com/+FabriceDucarme/">Google+</a><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: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:99:"WordPress Francophone : L’Hebdo WordPress n°224 : Facebook/Automattic – Masonry – 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:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/_VCUvlt4RF4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/_VCUvlt4RF4/";}}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:"2014-04-01T07:44:07+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: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:7:"content";a:1:{i:0;a:5:{s:4:"data";s:5181:"<div>\n<h1>!! Information de dernière minute !!</h1>\n<h3>Automattic est racheté par Facebook</h3>\n<p>Nous venons d’apprendre d’une source proche du dossier que Matt Mullenweg, le co-fondateur de WordPress et CEO d’Automattic vient de finaliser un accord d’un montant de 20 milliards de dollars pour la revente d’Automattic à Facebook. C’est ainsi, avec une somme légèrement plus importante que sa récente acquisition de l’application Whatsapp, qui lui avait couté « seulement » 19 milliards de dollars, que le géant des réseaux sociaux acquiert l’univers WordPress.</p>\n<p>Facebook, en pleine recherche de croissance externe après les rachats successifs d’Instagram, de Whatsapp et dernièrement d’Oculus met donc la main sur la maison mère de WordPress et notamment son service communautaire WordPress.com. On suppose que l’aspect communautaire qui se développait sur la plateforme de blogs aura convaincu Facebook de sa puissance. Pour l’instant, il est encore trop tôt pour savoir ce qu’en fera le Géant du Web : intégration dans le réseau social, gestion de blog directement dans Facebook ou bien fusion de l’ensemble… ?</p>\n<p>Pour le moment, le logiciel libre WordPress, disponible sur WordPress.org, semble ne pas être concerné par cette opération. En effet, la Fondation WordPress étant indépendante est encore à l’abri… mais pour combien de temps ? Mark Zuckerberg a de nombreuses cordes à son arc et pourrait trouver la parade pour s’approprier l’application qui fait tourner 20 % du Web.</p>\n<p>L’information n’a pas encore « fuitée », notre contact nous ayant donné l’exclusivité de l’information. Vous êtes donc les premiers à lire ce scoop.</p>\n<p>Nous irons à la pêche aux informations complémentaires qui, soyons en sûr, devrait tomber dans notre chalut tout au long de la journée.</p>\n<p>Restez connectés</p>\n<p><span id="more-6941"></span></p>\n<h1>La suite de l’Hebdo :</h1>\n<h3>WordPress 3.9 beta 3</h3>\n<p>N’ayant pas eu le temps de faire la traduction de l’article présentant la beta 3 de WordPress 3.9, <a href="http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/">je vous glisse le lien ici</a> (en) au cas où vous l’auriez manqué.</p>\n<h3>Masonry dans WordPress 3.9</h3>\n<p>Attention le <a href="http://make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/">script Masonry subi des changements</a> (en) suite à son passage à la version 3 dans WordPress 3.9.</p>\n<h3>BuddyPress 2.0</h3>\n<p>BuddyPress 2.0 arrive à la fin de son développement avec une <a href="http://buddypress.org/2014/03/buddypress-2-0-beta-1-is-now-available/">beta 1</a> (en). Pour découvrir les nouveautés <a href="http://buddydev.com/buddypress/buddypress-2-0-coming-soon-expect/">c’est ici</a> (en).</p>\n<h3>Le futur des commentaires</h3>\n<p>Quel est l’<a href="http://wptavern.com/what-is-the-future-of-comments-in-wordpress">avenir des commentaires </a> (en) dans WordPress ?</p>\n<h3>Une extension SEO pour les dominer tous</h3>\n<p>On pensait avoir tout vu en matière d’extension SEO…. eh bien c’était sans compter sur Julio et sa détermination légendaire. Il annonce dès aujourd’hui la sortie de sa propre extension, bien plus simple que toutes les autres, mais terriblement efficace. <a href="http://boiteaweb.fr/google-1st-place-plugin-seo-7996.html">Exemple en image à l’appui </a>!</p>\n<h3>Conserver la traduction du thème lors de la mise à jour</h3>\n<p>Si vous souhaitez conserver la traduction de votre thème lors de sa mise à jour, <a href="http://www.lumieredelune.com/encrelune/preserver-traduction-po,2014,03">vous devriez regarder cet article</a>.</p>\n<div class="feedflare">\n<a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=_VCUvlt4RF4:FQdKOGKg__w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=_VCUvlt4RF4:FQdKOGKg__w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=_VCUvlt4RF4:FQdKOGKg__w:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=_VCUvlt4RF4:FQdKOGKg__w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=_VCUvlt4RF4:FQdKOGKg__w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=_VCUvlt4RF4:FQdKOGKg__w:gIN9vFwOqvQ" border="0"></a>\n</div>\n<img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/_VCUvlt4RF4" 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: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:55:"Cree1site : Un Plugin SEO concurrent à WordPress 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:44:"http://www.cree1site.com/plugin-seo-placera/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:44:"http://www.cree1site.com/plugin-seo-placera/";}}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:"2014-04-01T00:27:28+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:8:"Rodrigue";s:7:"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:699:"<div>\n<p>Vu sur le site de <a href="http://www.cree1site.com/">l''agence web</a> Cree1site.com</p>\n<p>Suite au billet de Marie Aude sur WordPress SEO, l’idée s’est confirmée dans la tête de mon pote Julio (@boiteaweb). Il y a une forte demande d’un plugin SEO qui soit à la hauteur. La réputation de Julio en matière de sécurité n’est plus à faire, mais niveau SEO je n’étais pas convaincu que ce […]</p>\n<p>Cet article <a rel="nofollow" href="http://www.cree1site.com/plugin-seo-placera/">Un Plugin SEO concurrent à WordPress SEO ?</a> est apparu en premier sur Cree1site.com</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: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:44:"BoiteAWeb : Google 1st Place : LE plugin 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:57:"http://boiteaweb.fr/google-1st-place-plugin-seo-7996.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: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:57:"http://boiteaweb.fr/google-1st-place-plugin-seo-7996.html";}}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:"2014-04-01T00:01: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:12:"Julio Potier";s:7:"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:250:"<div>\n<p>Voici pour vous MON plugin SEO.</p>\n<p>Cet article <a href="http://boiteaweb.fr/google-1st-place-plugin-seo-7996.html">Google 1st Place : LE plugin SEO</a> est apparu en premier sur <a href="http://boiteaweb.fr/">BoiteAWeb.fr</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: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:82:"WordPress Channel : Définir un schéma de couleurs par défaut sous WordPress 3.8";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:66:"http://wpchannel.com/definir-schema-couleurs-defaut-wordpress-3-8/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:66:"http://wpchannel.com/definir-schema-couleurs-defaut-wordpress-3-8/";}}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:"2014-03-31T12:00:50+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:15:"Aurélien Denis";s:7:"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:866:"<div>\n<p>WordPress 3.8 introduit de nouveaux schémas de couleurs très tendance pour un back-office haut en couleurs. Ectoplasme, Minuit ou encore Océan sont l’un des 8 jeux de couleurs proposés. Mais comment faire en sorte d’imposer l’un d’entre eux aux utilisateurs nouvellement inscrits ? Ce besoin part d’un projet client nécessitant la création de comptes utilisateurs…</p>\n<p><a rel="nofollow" href="http://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" href="http://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" href="http://wpchannel.com/definir-schema-couleurs-defaut-wordpress-3-8/">Définir un schéma de couleurs par défaut sous WordPress 3.8</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:51:"L''écho des plugins WordPress : Widon’t Part Deux";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://www.echodesplugins.li-an.fr/plugins/widont-part-deux/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.echodesplugins.li-an.fr/plugins/widont-part-deux/";}}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:"2014-03-31T10:31:47+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:5:"Li-An";s:7:"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:51:"<div>Au secours de la veuve et de l''orpheline</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:43:"L''écho des plugins WordPress : Widget Icon";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:55:"http://www.echodesplugins.li-an.fr/plugins/widget-icon/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:55:"http://www.echodesplugins.li-an.fr/plugins/widget-icon/";}}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:"2014-03-28T10:56:21+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:5:"Li-An";s:7:"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:61:"<div>Rajouter une icône aux titres de vos widgets</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:18;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:"WP Formation : 3 000 commentaires ça vaut bien un concours";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:53:"http://wpformation.com/3000-commentaires-wpformation/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:53:"http://wpformation.com/3000-commentaires-wpformation/";}}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:"2014-03-26T19:30:04+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:12:"WP Formation";s:7:"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:1140:"<div>\n<p><img width="300" height="150" src="http://wpformation.com/wp-content/uploads/2014/03/3000-300x150.jpg" class="attachment-medium wp-post-image" alt="3000 commentaires WordPress" style="float: right; margin:0 0 10px 10px;">3000 commentaires validés sur WP Formation - Pour fêter cet événement, 5 superbes lots WordPress sont à gagner en partageant l''article sur les réseaux avec le hashtag #wpformation3000</p>\n<hr>\n<a rel="nofollow" href="http://wpformation.com/3000-commentaires-wpformation/">3 000 commentaires ça vaut bien un concours</a> est un article de <a title="Formation Internet WordPress Ecommerce" href="http://wpformation.com/">WP Formation</a><br><a href="http://wpformation.com/formation-wordpress/">Formation WordPress</a> & <a href="http://wpformation.com/apprendre-creer-e-commerce/">eCommerce</a> - Retrouvez-moi sur <a title="Ajouter sur Facebook" href="http://www.facebook.com/Wibeweb">Facebook</a> - <a title="Suivre sur Twitter" href="http://twitter.com/wpformation">Twitter</a> - <a href="http://plus.google.com/+FabriceDucarme/">Google+</a><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:19;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:101:"Lumière de Lune : Astuce WordPress : conserver la traduction de son thème lors d’une mise à jour";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:70:"http://www.lumieredelune.com/encrelune/preserver-traduction-po,2014,03";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:70:"http://www.lumieredelune.com/encrelune/preserver-traduction-po,2014,03";}}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:"2014-03-26T17:31:35+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:10:"Marie-Aude";s:7:"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:291:"<div>Une astuce très simple pour éviter de perdre sa traduction "maison" quand le thème est mis à jour. Si votre thème n''avait pas de traduction en français, voici comment éviter de le retrouver en anglais lors d''une mise à jour.</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:10:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"PXpFbnBv30InBkGy3t0oC/SsM2s";s:13:"last-modified";s:29:"Tue, 15 Apr 2014 08:42:40 GMT";s:4:"date";s:29:"Tue, 15 Apr 2014 09:01:41 GMT";s:7:"expires";s:29:"Tue, 15 Apr 2014 09:01:41 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:18:"alternate-protocol";s:7:"80:quic";}s:5:"build";s:14:"20130911020210";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(246, '_transient_timeout_feed_mod_2fb9572e3d6a42f680e36370936a57ae', '1397595701', 'no'),
(247, '_transient_feed_mod_2fb9572e3d6a42f680e36370936a57ae', '1397552501', 'no'),
(248, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1397595701', 'no'),
(249, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Apr 2014 08:37: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: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:48:"http://wordpress.org/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"23862@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Tim Moore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:7:"Akismet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wordpress.org/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"15@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:19:"Google XML Sitemaps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"132@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Arnee";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:22:"WordPress SEO by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"http://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"8321@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:14:"Contact Form 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2141@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:46:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"21738@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"The easiest, most effective way to secure WordPress in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Chris Wiegman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:18:"Wordfence Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29832@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:121:"Wordfence Security is a free enterprise class security plugin that makes your site up to 50 times faster and more secure.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Wordfence";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:33:"WooCommerce - excelling eCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29860@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"W3 Total Cache";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/plugins/w3-total-cache/#post-12073";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Jul 2009 18:46:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"12073@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:132:"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Frederick Townes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:20:"MailPoet Newsletters";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/wysija-newsletters/#post-32629";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 02 Dec 2011 17:09:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"32629@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:94:"Send newsletters, post notifications or autoresponders from WordPress easily, and beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"MailPoet Staff";s: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:15:"NextGEN Gallery";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/plugins/nextgen-gallery/#post-1169";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"1169@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:120:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 9 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:11;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"All in One SEO Pack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"753@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:18:"WordPress Importer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"18101@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:21:"WPtouch Mobile Plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://wordpress.org/plugins/wptouch/#post-5468";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 May 2008 04:58:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"5468@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"Create a slick mobile WordPress website with just a few clicks.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"BraveNewCode Inc.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:21:"Really Simple CAPTCHA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/plugins/really-simple-captcha/#post-9542";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 09 Mar 2009 02:17:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"9542@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:138:"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:45:"http://wordpress.org/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 15 Apr 2014 09:01: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:"Tue, 15 Apr 2014 09:12:13 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Tue, 15 Apr 2014 08:37:13 +0000";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130911020210";}', 'no'),
(250, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1397595701', 'no'),
(251, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1397552501', 'no'),
(252, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1397595701', 'no'),
(253, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/WordpressFrancophone/~3/7wegzds2MAw/'' title=''2 semaines après le premier avril, je tiens à soulager toute la communauté en confirmant que l’information donnée dans le précédent hebdo était évidemment un gros poisson d’avril (juste au cas où certains y aurait cru…) Les prochaines rencontres en France A Lyon : le 22 avril. A Bayonne : WPMX remet le couvert le […]''>L’Hebdo WordPress n°225 : WordPress 3.8.3 – WordPress 3.9 – BuddyPress 2.0</a> <span class="rss-date">15 avril 2014</span><div class=''rssSummary''>2 semaines après le premier avril, je tiens à soulager toute la communauté en confirmant que l’information donnée dans le précédent hebdo était évidemment un gros poisson d’avril (juste au cas où certains y aurait cru…) Les prochaines rencontres en France A Lyon : le 22 avril. A Bayonne : WPMX remet le couvert le […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/WordpressFrancophone/~3/7wegzds2MAw/'' title='' 2 semaines après le premier avril, je tiens à soulager toute la communauté en confirmant que l’information donnée dans le précédent hebdo était évidemment un gros poisson d’avril (juste au cas où certains y aurait cru…) Les prochaines rencontres en France A Lyon : le 22 avril. A Bayonne : WPMX remet le couvert le 26 avril. Une réflexion pour un meetup parisien WordPress 3.8.2 et WordPress 3.8.3 En une semaine de temps, 2 versions mineures de WordPress ont vu le jour : 3.8.2 (en) et 3.8.3 (en). La version 3.8.3 vient principalement réparer un dysfonctionnement du « brouillon rapide » apparu dans la 3.8.2. WordPress 3.9 et MySQL Des modifications (en) interviennent concernant MySQL dans WordPress 3.9. Il est à noter que la version finale de WordPress 3.9 devrait sortir dans les tous prochains jours. BuddyPress 2.0 Beta 2 et RC1 BuddyPress 2.0 progresse (en), après une beta 2 (en), la première version candidate (en) est sortie il y a quelques jours. Jetpack 2.9.3 Jetpack arrive en version 2.9.3 (en) et apporte une correction d’une faille ancienne mais découverte que récemment. WordPress est-il le bon outil ? Voici des éléments de réponse si vous vous posez parfois la question (en). Forcer la mise à jour des extensions Julio propose une nouvelle extension permettant de forcer la mise à jour des extensions : Force Plugin Updates. Personnaliser les colonnes d’administration Pour personnaliser les colonnes de votre administration, essayez cette extension : CodePress Admin Column. ''>WordPress Francophone : L’Hebdo WordPress n°225 : WordPress 3.8.3 – WordPress 3.9 – BuddyPress 2.0</a></li><li><a class=''rsswidget'' href=''http://www.echodesplugins.li-an.fr/plugins/wp-grass/'' title=''N'oubliez pas de passer la tondeuse dans votre site Wordpress''>L'écho des plugins WordPress : WP Grass</a></li><li><a class=''rsswidget'' href=''http://www.geekpress.fr/wordpress/extension/personnaliser-colonnes-administration-2004/'' title=''Le plugin Codepress Admin Column permet d'ajouter et de personnaliser les colonnes d’administration de WordPress.''>GeekPress : Codepress Admin Columns : Personnaliser les colonnes d’administration</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Extensions populaires:</span> <a href=''http://wordpress.org/plugins/wysija-newsletters/'' class=''dashboard-news-plugin-link''>MailPoet Newsletters</a></h5> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=wysija-newsletters&_wpnonce=f345b879f1&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''MailPoet Newsletters''>Installer</a>)</span></li></ul></div>', 'no'),
(254, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1397563313', 'yes'),
(255, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"3898";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"2456";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"2344";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"1930";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"1856";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1583";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1329";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1325";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1310";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1260";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1225";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1121";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1000";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:3:"982";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:3:"974";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:3:"950";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:3:"844";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:3:"821";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:3:"780";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"722";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"686";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"681";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"678";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"623";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"615";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"595";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"572";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"570";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"541";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"539";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"530";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"522";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"506";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"505";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"471";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"458";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"453";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"452";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"436";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"432";}}', 'yes'),
(369, 'Taille_children', 'a:0:{}', 'yes'),
(398, 'rewrite_rules', 'a:105:{s:14:"newsletters/?$";s:30:"index.php?post_type=newsletter";s:44:"newsletters/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?post_type=newsletter&feed=$matches[1]";s:39:"newsletters/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?post_type=newsletter&feed=$matches[1]";s:31:"newsletters/page/([0-9]{1,})/?$";s:48:"index.php?post_type=newsletter&paged=$matches[1]";s:47:"taille/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?Taille=$matches[1]&feed=$matches[2]";s:42:"taille/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?Taille=$matches[1]&feed=$matches[2]";s:35:"taille/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?Taille=$matches[1]&paged=$matches[2]";s:17:"taille/([^/]+)/?$";s:28:"index.php?Taille=$matches[1]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:39:"newsletters/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:49:"newsletters/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:69:"newsletters/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:64:"newsletters/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:64:"newsletters/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:32:"newsletters/([^/]+)/trackback/?$";s:37:"index.php?newsletter=$matches[1]&tb=1";s:52:"newsletters/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?newsletter=$matches[1]&feed=$matches[2]";s:47:"newsletters/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?newsletter=$matches[1]&feed=$matches[2]";s:40:"newsletters/([^/]+)/page/?([0-9]{1,})/?$";s:50:"index.php?newsletter=$matches[1]&paged=$matches[2]";s:47:"newsletters/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?newsletter=$matches[1]&cpage=$matches[2]";s:32:"newsletters/([^/]+)(/[0-9]+)?/?$";s:49:"index.php?newsletter=$matches[1]&page=$matches[2]";s:28:"newsletters/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:38:"newsletters/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:58:"newsletters/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:53:"newsletters/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:53:"newsletters/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:32:"shop/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:42:"shop/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:62:"shop/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:57:"shop/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:57:"shop/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:25:"shop/([^/]+)/trackback/?$";s:31:"index.php?shop=$matches[1]&tb=1";s:33:"shop/([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?shop=$matches[1]&paged=$matches[2]";s:40:"shop/([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?shop=$matches[1]&cpage=$matches[2]";s:25:"shop/([^/]+)(/[0-9]+)?/?$";s:43:"index.php?shop=$matches[1]&page=$matches[2]";s:21:"shop/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:31:"shop/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:51:"shop/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:46:"shop/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:46:"shop/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)(/[0-9]+)?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:27:"[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"([^/]+)/trackback/?$";s:31:"index.php?name=$matches[1]&tb=1";s:40:"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:35:"([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:28:"([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&paged=$matches[2]";s:35:"([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&cpage=$matches[2]";s:20:"([^/]+)(/[0-9]+)?/?$";s:43:"index.php?name=$matches[1]&page=$matches[2]";s:16:"[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:26:"[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:46:"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";}', 'yes'),
(402, '_site_transient_timeout_theme_roots', '1397586463', 'yes'),
(403, '_site_transient_theme_roots', 'a:4:{s:11:"42born2code";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";s:12:"twentytwelve";s:7:"/themes";}', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=281 ;
--
-- 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'),
(4, 5, '_edit_last', '1'),
(5, 5, '_edit_lock', '1397571423:1'),
(6, 6, '_wp_attached_file', '2014/04/jacques-antoine-granjon-citation.jpg'),
(7, 6, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:160;s:6:"height";i:160;s:4:"file";s:44:"2014/04/jacques-antoine-granjon-citation.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"jacques-antoine-granjon-citation-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"jacques-antoine-granjon-citation-160x150.jpg";s:5:"width";i:160;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(8, 5, '_thumbnail_id', '6'),
(10, 8, '_edit_last', '1'),
(11, 8, '_edit_lock', '1397573675:1'),
(12, 9, '_wp_attached_file', '2014/04/logo-42.jpg'),
(13, 9, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:352;s:6:"height";i:282;s:4:"file";s:19:"2014/04/logo-42.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"logo-42-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"logo-42-300x240.jpg";s:5:"width";i:300;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"logo-42-200x150.jpg";s:5:"width";i:200;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:6:"Pierre";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1364365590;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(14, 8, '_wp_page_template', 'pedagogie_page.php'),
(15, 11, '_edit_last', '1'),
(16, 11, '_edit_lock', '1397584638:1'),
(17, 12, '_wp_attached_file', '2014/04/rendu-exterieur-42.jpg'),
(18, 12, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:30:"2014/04/rendu-exterieur-42.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"rendu-exterieur-42-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:30:"rendu-exterieur-42-300x168.jpg";s:5:"width";i:300;s:6:"height";i:168;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"rendu-exterieur-42-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:30:"rendu-exterieur-42-200x150.jpg";s:5:"width";i:200;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(19, 11, '_wp_page_template', 'pedagogie_page.php'),
(22, 14, '_menu_item_type', 'custom'),
(23, 14, '_menu_item_menu_item_parent', '0'),
(24, 14, '_menu_item_object_id', '14'),
(25, 14, '_menu_item_object', 'custom'),
(26, 14, '_menu_item_target', ''),
(27, 14, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(28, 14, '_menu_item_xfn', ''),
(29, 14, '_menu_item_url', 'http://wp.webusco.fr/mandre/'),
(30, 14, '_menu_item_orphaned', '1397486066'),
(31, 15, '_menu_item_type', 'post_type'),
(32, 15, '_menu_item_menu_item_parent', '0'),
(33, 15, '_menu_item_object_id', '11'),
(34, 15, '_menu_item_object', 'page'),
(35, 15, '_menu_item_target', ''),
(36, 15, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(37, 15, '_menu_item_xfn', ''),
(38, 15, '_menu_item_url', ''),
(39, 15, '_menu_item_orphaned', '1397486066'),
(40, 16, '_menu_item_type', 'post_type'),
(41, 16, '_menu_item_menu_item_parent', '0'),
(42, 16, '_menu_item_object_id', '8'),
(43, 16, '_menu_item_object', 'page'),
(44, 16, '_menu_item_target', ''),
(45, 16, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(46, 16, '_menu_item_xfn', ''),
(47, 16, '_menu_item_url', ''),
(48, 16, '_menu_item_orphaned', '1397486066'),
(49, 17, '_menu_item_type', 'post_type'),
(50, 17, '_menu_item_menu_item_parent', '0'),
(51, 17, '_menu_item_object_id', '2'),
(52, 17, '_menu_item_object', 'page'),
(53, 17, '_menu_item_target', ''),
(54, 17, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(55, 17, '_menu_item_xfn', ''),
(56, 17, '_menu_item_url', ''),
(57, 17, '_menu_item_orphaned', '1397486066'),
(58, 18, '_menu_item_type', 'custom'),
(59, 18, '_menu_item_menu_item_parent', '0'),
(60, 18, '_menu_item_object_id', '18'),
(61, 18, '_menu_item_object', 'custom'),
(62, 18, '_menu_item_target', ''),
(63, 18, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(64, 18, '_menu_item_xfn', ''),
(65, 18, '_menu_item_url', 'http://wp.webusco.fr/mandre/'),
(67, 19, '_menu_item_type', 'post_type'),
(68, 19, '_menu_item_menu_item_parent', '20'),
(69, 19, '_menu_item_object_id', '11'),
(70, 19, '_menu_item_object', 'page'),
(71, 19, '_menu_item_target', ''),
(72, 19, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(73, 19, '_menu_item_xfn', ''),
(74, 19, '_menu_item_url', ''),
(76, 20, '_menu_item_type', 'post_type'),
(77, 20, '_menu_item_menu_item_parent', '0'),
(78, 20, '_menu_item_object_id', '8'),
(79, 20, '_menu_item_object', 'page'),
(80, 20, '_menu_item_target', ''),
(81, 20, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(82, 20, '_menu_item_xfn', ''),
(83, 20, '_menu_item_url', ''),
(85, 21, '_menu_item_type', 'post_type'),
(86, 21, '_menu_item_menu_item_parent', '0'),
(87, 21, '_menu_item_object_id', '2'),
(88, 21, '_menu_item_object', 'page'),
(89, 21, '_menu_item_target', ''),
(90, 21, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(91, 21, '_menu_item_xfn', ''),
(92, 21, '_menu_item_url', ''),
(94, 22, '_menu_item_type', 'custom'),
(95, 22, '_menu_item_menu_item_parent', '0'),
(96, 22, '_menu_item_object_id', '22'),
(97, 22, '_menu_item_object', 'custom'),
(98, 22, '_menu_item_target', ''),
(99, 22, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(100, 22, '_menu_item_xfn', ''),
(101, 22, '_menu_item_url', '#'),
(103, 23, '_menu_item_type', 'custom'),
(104, 23, '_menu_item_menu_item_parent', '0'),
(105, 23, '_menu_item_object_id', '23'),
(106, 23, '_menu_item_object', 'custom'),
(107, 23, '_menu_item_target', ''),
(108, 23, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(109, 23, '_menu_item_xfn', ''),
(110, 23, '_menu_item_url', '#'),
(112, 24, '_menu_item_type', 'custom'),
(113, 24, '_menu_item_menu_item_parent', '0'),
(114, 24, '_menu_item_object_id', '24'),
(115, 24, '_menu_item_object', 'custom'),
(116, 24, '_menu_item_target', ''),
(117, 24, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(118, 24, '_menu_item_xfn', ''),
(119, 24, '_menu_item_url', '#'),
(121, 25, '_menu_item_type', 'custom'),
(122, 25, '_menu_item_menu_item_parent', '0'),
(123, 25, '_menu_item_object_id', '25'),
(124, 25, '_menu_item_object', 'custom'),
(125, 25, '_menu_item_target', ''),
(126, 25, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(127, 25, '_menu_item_xfn', ''),
(128, 25, '_menu_item_url', '#'),
(130, 27, '_menu_item_type', 'post_type'),
(131, 27, '_menu_item_menu_item_parent', '0'),
(132, 27, '_menu_item_object_id', '8'),
(133, 27, '_menu_item_object', 'page'),
(134, 27, '_menu_item_target', ''),
(135, 27, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(136, 27, '_menu_item_xfn', ''),
(137, 27, '_menu_item_url', ''),
(138, 27, '_menu_item_orphaned', '1397491725'),
(140, 28, '_menu_item_type', 'taxonomy'),
(141, 28, '_menu_item_menu_item_parent', '0'),
(142, 28, '_menu_item_object_id', '2'),
(143, 28, '_menu_item_object', 'category'),
(144, 28, '_menu_item_target', ''),
(145, 28, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(146, 28, '_menu_item_xfn', ''),
(147, 28, '_menu_item_url', ''),
(148, 28, '_menu_item_orphaned', '1397491846'),
(149, 29, '_menu_item_type', 'taxonomy'),
(150, 29, '_menu_item_menu_item_parent', '0'),
(151, 29, '_menu_item_object_id', '2'),
(152, 29, '_menu_item_object', 'category'),
(153, 29, '_menu_item_target', ''),
(154, 29, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(155, 29, '_menu_item_xfn', ''),
(156, 29, '_menu_item_url', ''),
(158, 30, '_menu_item_type', 'custom'),
(159, 30, '_menu_item_menu_item_parent', '0'),
(160, 30, '_menu_item_object_id', '30'),
(161, 30, '_menu_item_object', 'custom'),
(162, 30, '_menu_item_target', ''),
(163, 30, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(164, 30, '_menu_item_xfn', ''),
(165, 30, '_menu_item_url', '#'),
(167, 31, '_menu_item_type', 'post_type'),
(168, 31, '_menu_item_menu_item_parent', '30'),
(169, 31, '_menu_item_object_id', '11'),
(170, 31, '_menu_item_object', 'page'),
(171, 31, '_menu_item_target', ''),
(172, 31, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(173, 31, '_menu_item_xfn', ''),
(174, 31, '_menu_item_url', ''),
(176, 32, '_menu_item_type', 'post_type'),
(177, 32, '_menu_item_menu_item_parent', '30'),
(178, 32, '_menu_item_object_id', '8'),
(179, 32, '_menu_item_object', 'page'),
(180, 32, '_menu_item_target', ''),
(181, 32, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(182, 32, '_menu_item_xfn', ''),
(183, 32, '_menu_item_url', ''),
(185, 33, '_edit_lock', '1397496541:1'),
(186, 34, '_edit_last', '1'),
(187, 34, '_edit_lock', '1397496979:1'),
(188, 34, '_wp_page_template', 'login_page.php'),
(189, 40, '_edit_lock', '1397554198:1'),
(199, 5, 'Description de l''image', 'Jacques-Antoine Grangon (Fondateur de vente-privee.com)'),
(202, 11, 'Description de l''image', 'Rendu extérieur de l''école 42'),
(203, 8, 'Description de l''image', 'Logo de l''école 42'),
(204, 42, '_edit_lock', '1397566565:1'),
(207, 11, 'id_dailymotion', ''),
(208, 43, '_wp_attached_file', '2014/04/jacques-antoine-granjon-citation1.jpg'),
(209, 43, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:160;s:6:"height";i:160;s:4:"file";s:45:"2014/04/jacques-antoine-granjon-citation1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:45:"jacques-antoine-granjon-citation1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"jacques-antoine-granjon-citation1-160x150.jpg";s:5:"width";i:160;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(210, 44, '_wp_attached_file', '2014/04/rendu-exterieur-421.jpg'),
(211, 44, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:31:"2014/04/rendu-exterieur-421.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"rendu-exterieur-421-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"rendu-exterieur-421-300x168.jpg";s:5:"width";i:300;s:6:"height";i:168;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"rendu-exterieur-421-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:31:"rendu-exterieur-421-200x150.jpg";s:5:"width";i:200;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(213, 8, 'id_dailymotion', 'x1a6vz5'),
(214, 45, 'id_dailymotion', ''),
(215, 45, '_edit_lock', '1397578001:1'),
(216, 46, 'id_dailymotion', ''),
(217, 46, '_edit_lock', '1397578175:1'),
(218, 47, 'id_dailymotion', ''),
(219, 47, '_edit_lock', '1397578286:1'),
(220, 48, 'id_dailymotion', ''),
(221, 48, '_edit_lock', '1397578351:1'),
(222, 49, 'id_dailymotion', ''),
(223, 49, '_edit_lock', '1397578452:1'),
(224, 50, 'id_dailymotion', ''),
(225, 50, '_edit_lock', '1397578562:1'),
(226, 51, 'id_dailymotion', ''),
(227, 51, '_edit_lock', '1397578579:1'),
(228, 52, 'id_dailymotion', ''),
(229, 52, '_edit_lock', '1397579782:1'),
(230, 53, 'id_dailymotion', ''),
(231, 53, '_edit_lock', '1397579706:1'),
(232, 54, 'id_dailymotion', ''),
(233, 54, '_edit_lock', '1397579723:1'),
(234, 55, 'id_dailymotion', ''),
(235, 56, 'id_dailymotion', ''),
(236, 56, '_edit_lock', '1397579842:1'),
(237, 56, '_edit_last', '1'),
(238, 57, 'id_dailymotion', ''),
(239, 57, '_edit_last', '1'),
(240, 57, '_edit_lock', '1397579893:1'),
(241, 58, 'id_dailymotion', ''),
(242, 58, '_edit_last', '1'),
(243, 58, '_edit_lock', '1397583912:1'),
(244, 59, '_wp_attached_file', '2014/04/tee-shirt42.png'),
(245, 59, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:218;s:6:"height";i:231;s:4:"file";s:23:"2014/04/tee-shirt42.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"tee-shirt42-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"tee-shirt42-200x150.png";s:5:"width";i:200;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(246, 58, '_thumbnail_id', '59'),
(247, 58, 'Prix', '50'),
(248, 60, 'id_dailymotion', ''),
(249, 60, '_edit_last', '1'),
(250, 60, '_edit_lock', '1397582713:1'),
(251, 60, '_wp_page_template', 'shop_page.php'),
(252, 62, 'id_dailymotion', ''),
(253, 62, '_menu_item_type', 'post_type'),
(254, 62, '_menu_item_menu_item_parent', '0'),
(255, 62, '_menu_item_object_id', '60'),
(256, 62, '_menu_item_object', 'page'),
(257, 62, '_menu_item_target', ''),
(258, 62, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(259, 62, '_menu_item_xfn', ''),
(260, 62, '_menu_item_url', ''),
(262, 29, 'id_dailymotion', ''),
(263, 30, 'id_dailymotion', ''),
(264, 31, 'id_dailymotion', ''),
(265, 32, 'id_dailymotion', ''),
(266, 57, '_wp_trash_meta_status', 'draft'),
(267, 57, '_wp_trash_meta_time', '1397580854'),
(268, 56, '_wp_trash_meta_status', 'draft'),
(269, 56, '_wp_trash_meta_time', '1397580854'),
(270, 63, 'id_dailymotion', ''),
(271, 63, '_edit_last', '1'),
(272, 63, '_edit_lock', '1397583825:1'),
(273, 63, 'Prix', '60'),
(274, 64, '_wp_attached_file', '2014/04/veste42.png'),
(275, 64, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:576;s:6:"height";i:544;s:4:"file";s:19:"2014/04/veste42.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"veste42-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:19:"veste42-300x283.png";s:5:"width";i:300;s:6:"height";i:283;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"veste42-200x150.png";s:5:"width";i:200;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(278, 65, '_wp_attached_file', '2014/04/veste421.png'),
(279, 65, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:576;s:6:"height";i:544;s:4:"file";s:20:"2014/04/veste421.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"veste421-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:20:"veste421-300x283.png";s:5:"width";i:300;s:6:"height";i:283;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"veste421-200x150.png";s:5:"width";i:200;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(280, 63, '_thumbnail_id', '65');
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=66 ;
--
-- 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, '2014-04-14 12:48:48', '2014-04-14 12:48:48', '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', '', '', '2014-04-14 12:48:48', '2014-04-14 12:48:48', '', 0, 'http://wp.webusco.fr/mandre/?p=1', 0, 'post', '', 1),
(2, 1, '2014-04-14 12:48:48', '2014-04-14 12:48:48', '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://wp.webusco.fr/mandre/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', '', '', '2014-04-14 12:48:48', '2014-04-14 12:48:48', '', 0, 'http://wp.webusco.fr/mandre/?page_id=2', 0, 'page', '', 0),
(3, 1, '2014-04-14 13:48:57', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-14 13:48:57', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=3', 0, 'post', '', 0),
(5, 1, '2014-04-14 14:00:42', '2014-04-14 13:00:42', 'Lorem ipsum dolor sit amet, aperiam quaeque accusata vix te. Eos summo iuvaret molestiae an, usu mentitum gloriatur ne. Et has petentium expetendis. Elit dolor alienum cum cu, cum te doctus vituperata. Doctus vocibus ad nam, ne usu albucius assentior. Pro decore vocibus ut, ei has debet viris.\r\n\r\nAt nec saepe primis, ex est wisi brute assueverit. Sed ferri solet neglegentur ei, at elitr impedit instructior sit, ne sit cibo atqui ocurreret. At sale labore propriae vim, mazim ubique verear ad sit, te vel alii maluisset. Vel cu vitae epicuri, an mel velit equidem comprehensam.\r\n\r\nEu ius exerci euismod volumus, solum melius mei et. Cu ferri sanctus his, ut probo habeo solet eam. Cum ornatus vituperatoribus eu, te sea docendi volumus incorrupte, id nec doming temporibus. Laoreet scaevola sapientem nec id. Cum enim verear dolores ad, eum eu ludus denique conceptam. Sumo melius vim id.', 'Pour le numérique', '', 'publish', 'open', 'open', '', 'pour-le-numerique', '', '', '2014-04-15 13:33:27', '2014-04-15 12:33:27', '', 0, 'http://wp.webusco.fr/mandre/?p=5', 0, 'post', '', 1),
(6, 1, '2014-04-14 13:59:58', '2014-04-14 12:59:58', '', 'jacques-antoine-granjon-citation', '', 'inherit', 'open', 'open', '', 'jacques-antoine-granjon-citation', '', '', '2014-04-14 13:59:58', '2014-04-14 12:59:58', '', 5, 'http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/jacques-antoine-granjon-citation.jpg', 0, 'attachment', 'image/jpeg', 0),
(7, 1, '2014-04-14 14:00:42', '2014-04-14 13:00:42', 'Lorem ipsum dolor sit amet, aperiam quaeque accusata vix te. Eos summo iuvaret molestiae an, usu mentitum gloriatur ne. Et has petentium expetendis. Elit dolor alienum cum cu, cum te doctus vituperata. Doctus vocibus ad nam, ne usu albucius assentior. Pro decore vocibus ut, ei has debet viris.\r\n\r\nAt nec saepe primis, ex est wisi brute assueverit. Sed ferri solet neglegentur ei, at elitr impedit instructior sit, ne sit cibo atqui ocurreret. At sale labore propriae vim, mazim ubique verear ad sit, te vel alii maluisset. Vel cu vitae epicuri, an mel velit equidem comprehensam.\r\n\r\nEu ius exerci euismod volumus, solum melius mei et. Cu ferri sanctus his, ut probo habeo solet eam. Cum ornatus vituperatoribus eu, te sea docendi volumus incorrupte, id nec doming temporibus. Laoreet scaevola sapientem nec id. Cum enim verear dolores ad, eum eu ludus denique conceptam. Sumo melius vim id.', 'Pour le numérique', '', 'inherit', 'open', 'open', '', '5-revision-v1', '', '', '2014-04-14 14:00:42', '2014-04-14 13:00:42', '', 5, 'http://wp.webusco.fr/mandre/5-revision-v1/', 0, 'revision', '', 0),
(8, 1, '2014-04-14 14:04:34', '2014-04-14 13:04:34', '<img class="size-medium wp-image-9 alignleft" style="line-height: 1.5em;" alt="logo-42" src="http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/logo-42-300x240.jpg" width="300" height="240" />Lorem <strong>ipsum</strong> dolor sit amet, aperiam quaeque accusata vix te. Eos summo iuvaret molestiae an, usu mentitum gloriatur ne. Et has <strong>petentium</strong> expetendis. Elit dolor alienum cum cu, cum te doctus vituperata. Doctus vocibus ad nam, ne usu albucius assentior. Pro decore vocibus ut, ei has debet viris.\r\n\r\nAt nec saepe primis, ex est wisi brute assueverit. Sed ferri solet neglegentur ei, at <strong>elitr</strong> impedit instructior sit, ne sit cibo atqui ocurreret. <strong>At</strong> sale labore propriae vim, mazim ubique verear ad sit, te vel alii maluisset. <em>Vel cu vitae epicuri, an mel velit equidem comprehensam</em>.\r\n\r\nEu ius exerci euismodvolumus, solum <strong>melius</strong> mei et. <span style="color: #3366ff;"><strong>Cu</strong> <em>ferri sanctus his, ut probo habeo solet eam</em></span>. <strong>Cum</strong> ornatus <strong>vituperatoribus</strong> eu, te sea docendi volumus incorrupte, id nec doming temporibus. Laoreet scaevola sapientem nec id. Cum enim verear dolores ad, eum eu ludus denique conceptam. Sumo melius vim id.\r\n\r\nUt pri euismod volumus <em><strong>consequuntur</strong></em>, ex vel vidit falli feugait. <span style="color: #339966;">Vide percipitur adversarium eam ne</span>. Brute essent equidem sit te. Vis in dico nostrud tractatos. Assentior elaboraret constituam sed cu, corrumpit gloriatur te vel. Ea sea altera scripta feugait, <strong>no posse petentium eum</strong>. Quot veri ponderum ut vel, an malorum periculis mea, usu impetus veritus ex.\r\n\r\n<span style="color: #ff0000;">Viris perpetua ne sit, sit mazim audiam moderatius ut</span>. Cu pri modus eligendi. Eum <strong>harum</strong> referrentur ea. Erant delicata mei cu, sint nobis saepe vix te. Aliquam fuisset usu ne, vim persius petentium te, dico vero maiorum ea eos. Mei ut denique detraxit, sed ad movet partiendo forensibus. No novum fastidii suscipit mea.', 'Le programme', '', 'publish', 'open', 'open', 'private42', 'le-programme', '', '', '2014-04-15 15:55:05', '2014-04-15 14:55:05', '', 0, 'http://wp.webusco.fr/mandre/?page_id=8', 0, 'page', '', 0),
(9, 1, '2014-04-14 14:03:51', '2014-04-14 13:03:51', '', 'logo-42', '', 'inherit', 'open', 'open', '', 'logo-42', '', '', '2014-04-14 14:03:51', '2014-04-14 13:03:51', '', 8, 'http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/logo-42.jpg', 0, 'attachment', 'image/jpeg', 0),
(10, 1, '2014-04-14 14:04:34', '2014-04-14 13:04:34', '<img class="size-medium wp-image-9 alignleft" style="line-height: 1.5em;" alt="logo-42" src="http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/logo-42-300x240.jpg" width="300" height="240" />Lorem <strong>ipsum</strong> dolor sit amet, aperiam quaeque accusata vix te. Eos summo iuvaret molestiae an, usu mentitum gloriatur ne. Et has <strong>petentium</strong> expetendis. Elit dolor alienum cum cu, cum te doctus vituperata. Doctus vocibus ad nam, ne usu albucius assentior. Pro decore vocibus ut, ei has debet viris.\r\n\r\nAt nec saepe primis, ex est wisi brute assueverit. Sed ferri solet neglegentur ei, at <strong>elitr</strong> impedit instructior sit, ne sit cibo atqui ocurreret. <strong>At</strong> sale labore propriae vim, mazim ubique verear ad sit, te vel alii maluisset. <em>Vel cu vitae epicuri, an mel velit equidem comprehensam</em>.\r\n\r\nEu ius exerci euismodvolumus, solum <strong>melius</strong> mei et. <span style="color: #3366ff;"><strong>Cu</strong> <em>ferri sanctus his, ut probo habeo solet eam</em></span>. <strong>Cum</strong> ornatus <strong>vituperatoribus</strong> eu, te sea docendi volumus incorrupte, id nec doming temporibus. Laoreet scaevola sapientem nec id. Cum enim verear dolores ad, eum eu ludus denique conceptam. Sumo melius vim id.\r\n\r\nUt pri euismod volumus <em><strong>consequuntur</strong></em>, ex vel vidit falli feugait. <span style="color: #339966;">Vide percipitur adversarium eam ne</span>. Brute essent equidem sit te. Vis in dico nostrud tractatos. Assentior elaboraret constituam sed cu, corrumpit gloriatur te vel. Ea sea altera scripta feugait, <strong>no posse petentium eum</strong>. Quot veri ponderum ut vel, an malorum periculis mea, usu impetus veritus ex.\r\n\r\n<span style="color: #ff0000;">Viris perpetua ne sit, sit mazim audiam moderatius ut</span>. Cu pri modus eligendi. Eum <strong>harum</strong> referrentur ea. Erant delicata mei cu, sint nobis saepe vix te. Aliquam fuisset usu ne, vim persius petentium te, dico vero maiorum ea eos. Mei ut denique detraxit, sed ad movet partiendo forensibus. No novum fastidii suscipit mea.', 'Le programme', '', 'inherit', 'open', 'open', '', '8-revision-v1', '', '', '2014-04-14 14:04:34', '2014-04-14 13:04:34', '', 8, 'http://wp.webusco.fr/mandre/8-revision-v1/', 0, 'revision', '', 0),
(11, 1, '2014-04-14 14:06:56', '2014-04-14 13:06:56', '<img class="size-medium wp-image-12 alignright" style="line-height: 1.5em;" alt="rendu-exterieur-42" src="http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/rendu-exterieur-42-300x168.jpg" width="300" height="168" />Lorem ipsum dolor sit amet, aperiam quaeque accusata vix te. Eos summo iuvaret molestiae an, usu mentitum gloriatur ne. Et has petentium expetendis. Elit dolor alienum cum cu, cum te doctus vituperata. Doctus vocibus ad nam, ne usu albucius assentior. Pro decore vocibus ut, ei has debet viris.\r\n\r\n<em><strong><span style="color: #cc99ff;">At nec saepe primis, ex est wisi brute assueverit. Sed ferri solet neglegentur ei, at elitr impedit instructior sit, ne sit cibo atqui ocurreret. At sale labore propriae vim, mazim ubique verear ad sit, te vel alii maluisset. Vel cu vitae epicuri, an mel velit equidem comprehensam.</span></strong></em>\r\n\r\n<span style="color: #339966;">Eu ius exerci euismod volumus, solum melius mei et. Cu ferri sanctus his, ut probo habeo solet eam. Cum ornatus vituperatoribus eu, te sea docendi volumus incorrupte, id nec doming temporibus. Laoreet scaevola sapientem nec id. Cum enim verear dolores ad, eum eu ludus denique conceptam. Sumo melius vim id.</span>\r\n\r\n<span style="color: #0000ff;">Ut pri euismod volumus consequuntur, ex vel vidit falli feugait. Vide percipitur adversarium eam ne. Brute essent equidem sit te. Vis in dico nostrud tractatos. Assentior elaboraret constituam sed cu, corrumpit gloriatur te vel. Ea sea altera scripta feugait, no posse petentium eum. Quot veri ponderum ut vel, an malorum periculis mea, usu impetus veritus ex.</span>\r\n\r\nViris perpetua ne sit, sit mazim audiam moderatius ut. Cu pri modus eligendi. Eum harum referrentur ea. Erant delicata mei cu, sint nobis saepe vix te. Aliquam fuisset usu ne, vim persius petentium te, dico vero maiorum ea eos. Mei ut denique detraxit, sed ad movet partiendo forensibus. No novum fastidii suscipit mea.', 'L''équipe et les moyens', '', 'publish', 'open', 'open', 'private42', 'lequipe-et-les-moyens', '', '', '2014-04-15 15:20:26', '2014-04-15 14:20:26', '', 0, 'http://wp.webusco.fr/mandre/?page_id=11', 0, 'page', '', 0),
(12, 1, '2014-04-14 14:06:24', '2014-04-14 13:06:24', '', 'rendu-exterieur-42', '', 'inherit', 'open', 'open', '', 'rendu-exterieur-42', '', '', '2014-04-14 14:06:24', '2014-04-14 13:06:24', '', 11, 'http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/rendu-exterieur-42.jpg', 0, 'attachment', 'image/jpeg', 0),
(13, 1, '2014-04-14 14:06:56', '2014-04-14 13:06:56', '<img class="size-medium wp-image-12 alignright" style="line-height: 1.5em;" alt="rendu-exterieur-42" src="http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/rendu-exterieur-42-300x168.jpg" width="300" height="168" />Lorem ipsum dolor sit amet, aperiam quaeque accusata vix te. Eos summo iuvaret molestiae an, usu mentitum gloriatur ne. Et has petentium expetendis. Elit dolor alienum cum cu, cum te doctus vituperata. Doctus vocibus ad nam, ne usu albucius assentior. Pro decore vocibus ut, ei has debet viris.\r\n\r\n<em><strong><span style="color: #cc99ff;">At nec saepe primis, ex est wisi brute assueverit. Sed ferri solet neglegentur ei, at elitr impedit instructior sit, ne sit cibo atqui ocurreret. At sale labore propriae vim, mazim ubique verear ad sit, te vel alii maluisset. Vel cu vitae epicuri, an mel velit equidem comprehensam.</span></strong></em>\r\n\r\n<span style="color: #339966;">Eu ius exerci euismod volumus, solum melius mei et. Cu ferri sanctus his, ut probo habeo solet eam. Cum ornatus vituperatoribus eu, te sea docendi volumus incorrupte, id nec doming temporibus. Laoreet scaevola sapientem nec id. Cum enim verear dolores ad, eum eu ludus denique conceptam. Sumo melius vim id.</span>\r\n\r\n<span style="color: #0000ff;">Ut pri euismod volumus consequuntur, ex vel vidit falli feugait. Vide percipitur adversarium eam ne. Brute essent equidem sit te. Vis in dico nostrud tractatos. Assentior elaboraret constituam sed cu, corrumpit gloriatur te vel. Ea sea altera scripta feugait, no posse petentium eum. Quot veri ponderum ut vel, an malorum periculis mea, usu impetus veritus ex.</span>\r\n\r\nViris perpetua ne sit, sit mazim audiam moderatius ut. Cu pri modus eligendi. Eum harum referrentur ea. Erant delicata mei cu, sint nobis saepe vix te. Aliquam fuisset usu ne, vim persius petentium te, dico vero maiorum ea eos. Mei ut denique detraxit, sed ad movet partiendo forensibus. No novum fastidii suscipit mea.', 'L''équipe et les moyens', '', 'inherit', 'open', 'open', '', '11-revision-v1', '', '', '2014-04-14 14:06:56', '2014-04-14 13:06:56', '', 11, 'http://wp.webusco.fr/mandre/11-revision-v1/', 0, 'revision', '', 0),
(14, 1, '2014-04-14 15:34:25', '0000-00-00 00:00:00', '', 'Accueil', '', 'draft', 'open', 'open', '', '', '', '', '2014-04-14 15:34:25', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=14', 1, 'nav_menu_item', '', 0),
(15, 1, '2014-04-14 15:34:26', '0000-00-00 00:00:00', '', 'L''équipe et les moyens', '', 'draft', 'open', 'open', '', '', '', '', '2014-04-14 15:34:26', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=15', 1, 'nav_menu_item', '', 0),
(16, 1, '2014-04-14 15:34:26', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-04-14 15:34:26', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=16', 1, 'nav_menu_item', '', 0),
(17, 1, '2014-04-14 15:34:26', '0000-00-00 00:00:00', '', 'Page d’exemple', '', 'draft', 'open', 'open', '', '', '', '', '2014-04-14 15:34:26', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=17', 1, 'nav_menu_item', '', 0),
(18, 1, '2014-04-14 15:34:45', '2014-04-14 14:34:45', '', 'Accueil', '', 'publish', 'open', 'open', '', 'accueil', '', '', '2014-04-14 17:06:28', '2014-04-14 16:06:28', '', 0, 'http://wp.webusco.fr/mandre/?p=18', 1, 'nav_menu_item', '', 0),
(19, 1, '2014-04-14 15:34:45', '2014-04-14 14:34:45', '', 'L''équipe et les moyens', '', 'publish', 'open', 'open', '', 'lequipe-et-les-moyens', '', '', '2014-04-14 17:06:28', '2014-04-14 16:06:28', '', 0, 'http://wp.webusco.fr/mandre/?p=19', 3, 'nav_menu_item', '', 0),
(20, 1, '2014-04-14 15:34:45', '2014-04-14 14:34:45', ' ', '', '', 'publish', 'open', 'open', '', '20', '', '', '2014-04-14 17:06:28', '2014-04-14 16:06:28', '', 0, 'http://wp.webusco.fr/mandre/?p=20', 2, 'nav_menu_item', '', 0),
(21, 1, '2014-04-14 15:34:45', '2014-04-14 14:34:45', '', 'Page d’exemple', '', 'publish', 'open', 'open', '', 'page-dexemple', '', '', '2014-04-14 17:06:28', '2014-04-14 16:06:28', '', 0, 'http://wp.webusco.fr/mandre/?p=21', 4, 'nav_menu_item', '', 0),
(22, 1, '2014-04-14 15:57:11', '2014-04-14 14:57:11', '', 'Nicolas Sadirac', '', 'publish', 'open', 'open', '', 'nicolas-sadirac', '', '', '2014-04-14 15:57:11', '2014-04-14 14:57:11', '', 0, 'http://wp.webusco.fr/mandre/?p=22', 1, 'nav_menu_item', '', 0),
(23, 1, '2014-04-14 15:57:11', '2014-04-14 14:57:11', '', 'Xavier Niel', '', 'publish', 'open', 'open', '', 'xavier-niel', '', '', '2014-04-14 15:57:11', '2014-04-14 14:57:11', '', 0, 'http://wp.webusco.fr/mandre/?p=23', 2, 'nav_menu_item', '', 0),
(24, 1, '2014-04-14 15:57:11', '2014-04-14 14:57:11', '', 'Kwame Yamgnane', '', 'publish', 'open', 'open', '', 'kwame-yamgnane', '', '', '2014-04-14 15:57:11', '2014-04-14 14:57:11', '', 0, 'http://wp.webusco.fr/mandre/?p=24', 3, 'nav_menu_item', '', 0),
(25, 1, '2014-04-14 15:57:11', '2014-04-14 14:57:11', '', 'Florian Bucher', '', 'publish', 'open', 'open', '', 'florian-bucher', '', '', '2014-04-14 15:57:11', '2014-04-14 14:57:11', '', 0, 'http://wp.webusco.fr/mandre/?p=25', 4, 'nav_menu_item', '', 0),
(26, 1, '2014-04-14 16:12:53', '2014-04-14 15:12:53', '[ALO-EASYMAIL-PAGE]', 'Newsletter', '', 'publish', 'closed', 'open', '', 'newsletter', '', '', '2014-04-14 16:12:53', '2014-04-14 15:12:53', '', 0, 'http://wp.webusco.fr/mandre/newsletter/', 0, 'page', '', 0),
(27, 1, '2014-04-14 17:08:45', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-04-14 17:08:45', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=27', 1, 'nav_menu_item', '', 0),
(28, 1, '2014-04-14 17:10:46', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-04-14 17:10:46', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=28', 1, 'nav_menu_item', '', 0),
(29, 1, '2014-04-14 17:11:35', '2014-04-14 16:11:35', ' ', '', '', 'publish', 'open', 'open', '', '29', '', '', '2014-04-15 17:45:00', '2014-04-15 16:45:00', '', 0, 'http://wp.webusco.fr/mandre/?p=29', 1, 'nav_menu_item', '', 0),
(30, 1, '2014-04-14 17:13:33', '2014-04-14 16:13:33', '', 'Notre pédagogie', '', 'publish', 'open', 'open', '', 'notre-pedagogie', '', '', '2014-04-15 17:45:00', '2014-04-15 16:45:00', '', 0, 'http://wp.webusco.fr/mandre/?p=30', 2, 'nav_menu_item', '', 0),
(31, 1, '2014-04-14 17:13:33', '2014-04-14 16:13:33', '', 'L''équipe et les moyens', '', 'publish', 'open', 'open', '', 'lequipe-et-les-moyens-2', '', '', '2014-04-15 17:45:00', '2014-04-15 16:45:00', '', 0, 'http://wp.webusco.fr/mandre/?p=31', 3, 'nav_menu_item', '', 0),
(32, 1, '2014-04-14 17:13:33', '2014-04-14 16:13:33', ' ', '', '', 'publish', 'open', 'open', '', '32', '', '', '2014-04-15 17:45:00', '2014-04-15 16:45:00', '', 0, 'http://wp.webusco.fr/mandre/?p=32', 4, 'nav_menu_item', '', 0),
(33, 1, '2014-04-14 18:26:19', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-14 18:26:19', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?page_id=33', 0, 'page', '', 0),
(34, 1, '2014-04-14 18:37:58', '2014-04-14 17:37:58', '', 'Login', '', 'publish', 'open', 'open', '', 'login', '', '', '2014-04-14 18:38:03', '2014-04-14 17:38:03', '', 0, 'http://wp.webusco.fr/mandre/?page_id=34', 0, 'page', '', 0),
(35, 1, '2014-04-14 18:37:52', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-14 18:37:52', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?page_id=35', 0, 'page', '', 0),
(36, 1, '2014-04-14 18:37:58', '2014-04-14 17:37:58', '', 'Login', '', 'inherit', 'open', 'open', '', '34-revision-v1', '', '', '2014-04-14 18:37:58', '2014-04-14 17:37:58', '', 34, 'http://wp.webusco.fr/mandre/34-revision-v1/', 0, 'revision', '', 0),
(37, 1, '2014-04-15 10:24:19', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 10:24:19', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=37', 0, 'post', '', 0),
(38, 1, '2014-04-15 10:24:27', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 10:24:27', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?page_id=38', 0, 'page', '', 0),
(39, 1, '2014-04-15 10:25:12', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 10:25:12', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?page_id=39', 0, 'page', '', 0),
(40, 1, '2014-04-15 10:25:27', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 10:25:27', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=40', 0, 'post', '', 0),
(41, 1, '2014-04-15 11:31:03', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 11:31:03', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=41', 0, 'post', '', 0),
(42, 1, '2014-04-15 13:55:25', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 13:55:25', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?p=42', 0, 'post', '', 0),
(43, 1, '2014-04-15 15:19:12', '2014-04-15 14:19:12', '', 'jacques-antoine-granjon-citation', '', 'inherit', 'open', 'open', '', 'jacques-antoine-granjon-citation-2', '', '', '2014-04-15 15:19:12', '2014-04-15 14:19:12', '', 11, 'http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/jacques-antoine-granjon-citation1.jpg', 0, 'attachment', 'image/jpeg', 0),
(44, 1, '2014-04-15 15:19:21', '2014-04-15 14:19:21', '', 'rendu-exterieur-42', '', 'inherit', 'open', 'open', '', 'rendu-exterieur-42-2', '', '', '2014-04-15 15:19:21', '2014-04-15 14:19:21', '', 11, 'http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/rendu-exterieur-421.jpg', 0, 'attachment', 'image/jpeg', 0),
(45, 1, '2014-04-15 16:52:25', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 16:52:25', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=45', 0, 'shop', '', 0),
(46, 1, '2014-04-15 17:08:25', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:08:25', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=46', 0, 'shop', '', 0),
(47, 1, '2014-04-15 17:09:36', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:09:36', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=47', 0, 'shop', '', 0),
(48, 1, '2014-04-15 17:11:27', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:11:27', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=48', 0, 'shop', '', 0),
(49, 1, '2014-04-15 17:12:31', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:12:31', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=49', 0, 'shop', '', 0),
(50, 1, '2014-04-15 17:14:13', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:14:13', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=50', 0, 'shop', '', 0),
(51, 1, '2014-04-15 17:16:03', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:16:03', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=51', 0, 'shop', '', 0),
(52, 1, '2014-04-15 17:16:23', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:16:23', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=52', 0, 'shop', '', 0),
(53, 1, '2014-04-15 17:21:01', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:21:01', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=53', 0, 'shop', '', 0),
(54, 1, '2014-04-15 17:35:07', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:35:07', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=54', 0, 'shop', '', 0),
(55, 1, '2014-04-15 17:35:29', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-04-15 17:35:29', '0000-00-00 00:00:00', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=55', 0, 'shop', '', 0),
(56, 1, '2014-04-15 17:36:46', '2014-04-15 16:36:46', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus neque ante, tristique non mauris et, ultrices rhoncus velit. Suspendisse et risus eu nisi varius consectetur a at leo. Ut vehicula metus et dolor condimentum mattis. Duis viverra pharetra tincidunt. Phasellus ornare nunc arcu, vel condimentum nisi laoreet id. Phasellus at nisi sit amet urna interdum semper id luctus ipsum. Suspendisse potenti. Donec faucibus tempus mattis. Duis sed diam consectetur, condimentum erat sed, adipiscing tortor. Duis vel pellentesque magna, in ultricies diam. Nunc ultricies a mauris ut blandit. Vivamus vel neque nisl. Duis ac interdum purus. Duis eu tortor sit amet purus vulputate lacinia in et magna. Fusce porta congue tellus, blandit tempus ante vulputate vel. Pellentesque in arcu non massa tempus consectetur.\n\nNulla condimentum metus tristique nisl accumsan, vitae scelerisque quam malesuada. Quisque vitae est vel magna sagittis varius. Ut hendrerit nibh vitae mauris vulputate hendrerit. Ut tempus ut diam at accumsan. Morbi non justo ac lorem adipiscing euismod a vitae tortor. Vestibulum sit amet lacinia quam. Nullam cursus ligula rutrum lectus luctus, a consequat nunc feugiat. Vivamus nec iaculis arcu. Integer vel dapibus ipsum. Nullam sit amet velit lacus. Vivamus cursus feugiat sem, ut euismod metus commodo nec. Vestibulum nisl risus, viverra quis urna gravida, tristique viverra ante. Donec vel nisl sed leo lacinia luctus. Proin dictum libero vitae erat laoreet commodo. Praesent justo justo, aliquam eget sapien vel, pellentesque porttitor erat. Aliquam congue diam et sodales tristique.\n\nIn tempor risus purus, in molestie diam auctor ac. Mauris cursus dapibus urna in volutpat. Nam ipsum dolor, posuere sit amet enim sit amet, adipiscing tincidunt ante. Quisque tincidunt malesuada felis et ultrices. Nunc nunc enim, tincidunt eu arcu vitae, bibendum semper arcu. In tellus elit, vehicula vitae vestibulum nec, rhoncus quis neque. Quisque placerat malesuada tortor, sed tempor enim posuere a. Morbi scelerisque, mauris non porta ullamcorper, dui arcu eleifend tortor, sit amet cursus nunc enim et elit. Aenean iaculis dolor est, nec ultrices arcu gravida vel. In a purus feugiat, auctor justo et, elementum elit.\n\nDonec vel nunc ante. Maecenas adipiscing nisi ac elit egestas, nec volutpat tellus tempor. Vivamus nec odio vel lacus congue porta. Mauris vitae nibh turpis. Proin nec felis nec turpis eleifend sodales. Cras egestas lacus sit amet nibh ornare, in placerat eros aliquet. Aliquam nec eros eros. Quisque molestie dui ligula, in dapibus diam tristique id. Etiam tellus nisi, viverra eu leo eu, egestas ornare eros. Pellentesque interdum, metus vitae commodo placerat, erat diam tempus felis, nec posuere dui est non nisi. Aliquam rutrum ligula nec tellus facilisis, in sodales augue aliquam. Etiam semper risus eget tempor ullamcorper. Donec cursus justo placerat justo faucibus rhoncus.\n\nNam nec diam non enim tincidunt vehicula. Duis pellentesque ipsum at diam porta tincidunt non id mi. Cras accumsan dapibus dolor. Maecenas mattis nulla sed arcu tempus, ut viverra lorem facilisis. Curabitur euismod mi tincidunt sapien mollis, et ullamcorper massa interdum. Fusce condimentum imperdiet tellus in adipiscing. Integer sed accumsan nulla. Mauris quis turpis eget orci iaculis iaculis sit amet sed turpis. Nulla facilisi.', 'Tee-shirt', '', 'trash', 'closed', 'closed', '', 'tee-shirt-3', '', '', '2014-04-15 17:54:14', '2014-04-15 16:54:14', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=56', 0, 'shop', '', 0),
(57, 1, '2014-04-15 17:37:44', '2014-04-15 16:37:44', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus neque ante, tristique non mauris et, ultrices rhoncus velit. Suspendisse et risus eu nisi varius consectetur a at leo. Ut vehicula metus et dolor condimentum mattis. Duis viverra pharetra tincidunt. Phasellus ornare nunc arcu, vel condimentum nisi laoreet id. Phasellus at nisi sit amet urna interdum semper id luctus ipsum. Suspendisse potenti. Donec faucibus tempus mattis. Duis sed diam consectetur, condimentum erat sed, adipiscing tortor. Duis vel pellentesque magna, in ultricies diam. Nunc ultricies a mauris ut blandit. Vivamus vel neque nisl. Duis ac interdum purus. Duis eu tortor sit amet purus vulputate lacinia in et magna. Fusce porta congue tellus, blandit tempus ante vulputate vel. Pellentesque in arcu non massa tempus consectetur.\n\nNulla condimentum metus tristique nisl accumsan, vitae scelerisque quam malesuada. Quisque vitae est vel magna sagittis varius. Ut hendrerit nibh vitae mauris vulputate hendrerit. Ut tempus ut diam at accumsan. Morbi non justo ac lorem adipiscing euismod a vitae tortor. Vestibulum sit amet lacinia quam. Nullam cursus ligula rutrum lectus luctus, a consequat nunc feugiat. Vivamus nec iaculis arcu. Integer vel dapibus ipsum. Nullam sit amet velit lacus. Vivamus cursus feugiat sem, ut euismod metus commodo nec. Vestibulum nisl risus, viverra quis urna gravida, tristique viverra ante. Donec vel nisl sed leo lacinia luctus. Proin dictum libero vitae erat laoreet commodo. Praesent justo justo, aliquam eget sapien vel, pellentesque porttitor erat. Aliquam congue diam et sodales tristique.\n\nIn tempor risus purus, in molestie diam auctor ac. Mauris cursus dapibus urna in volutpat. Nam ipsum dolor, posuere sit amet enim sit amet, adipiscing tincidunt ante. Quisque tincidunt malesuada felis et ultrices. Nunc nunc enim, tincidunt eu arcu vitae, bibendum semper arcu. In tellus elit, vehicula vitae vestibulum nec, rhoncus quis neque. Quisque placerat malesuada tortor, sed tempor enim posuere a. Morbi scelerisque, mauris non porta ullamcorper, dui arcu eleifend tortor, sit amet cursus nunc enim et elit. Aenean iaculis dolor est, nec ultrices arcu gravida vel. In a purus feugiat, auctor justo et, elementum elit.\n\nDonec vel nunc ante. Maecenas adipiscing nisi ac elit egestas, nec volutpat tellus tempor. Vivamus nec odio vel lacus congue porta. Mauris vitae nibh turpis. Proin nec felis nec turpis eleifend sodales. Cras egestas lacus sit amet nibh ornare, in placerat eros aliquet. Aliquam nec eros eros. Quisque molestie dui ligula, in dapibus diam tristique id. Etiam tellus nisi, viverra eu leo eu, egestas ornare eros. Pellentesque interdum, metus vitae commodo placerat, erat diam tempus felis, nec posuere dui est non nisi. Aliquam rutrum ligula nec tellus facilisis, in sodales augue aliquam. Etiam semper risus eget tempor ullamcorper. Donec cursus justo placerat justo faucibus rhoncus.\n\nNam nec diam non enim tincidunt vehicula. Duis pellentesque ipsum at diam porta tincidunt non id mi. Cras accumsan dapibus dolor. Maecenas mattis nulla sed arcu tempus, ut viverra lorem facilisis. Curabitur euismod mi tincidunt sapien mollis, et ullamcorper massa interdum. Fusce condimentum imperdiet tellus in adipiscing. Integer sed accumsan nulla. Mauris quis turpis eget orci iaculis iaculis sit amet sed turpis. Nulla facilisi.', 'Tee-shirt', '', 'trash', 'closed', 'closed', '', 'tee-shirt-2', '', '', '2014-04-15 17:54:14', '2014-04-15 16:54:14', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=57', 0, 'shop', '', 0),
(58, 1, '2014-04-15 17:38:53', '2014-04-15 16:38:53', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus neque ante, tristique non mauris et, ultrices rhoncus velit. Suspendisse et risus eu nisi varius consectetur a at leo. Ut vehicula metus et dolor condimentum mattis. Duis viverra pharetra tincidunt. Phasellus ornare nunc arcu, vel condimentum nisi laoreet id. Phasellus at nisi sit amet urna interdum semper id luctus ipsum. Suspendisse potenti. Donec faucibus tempus mattis. Duis sed diam consectetur, condimentum erat sed, adipiscing tortor. Duis vel pellentesque magna, in ultricies diam. Nunc ultricies a mauris ut blandit. Vivamus vel neque nisl. Duis ac interdum purus. Duis eu tortor sit amet purus vulputate lacinia in et magna. Fusce porta congue tellus, blandit tempus ante vulputate vel. Pellentesque in arcu non massa tempus consectetur.', 'Tee-shirt', '', 'publish', 'closed', 'closed', '', 'tee-shirt', '', '', '2014-04-15 18:45:45', '2014-04-15 17:45:45', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=58', 0, 'shop', '', 0),
(59, 1, '2014-04-15 17:38:28', '2014-04-15 16:38:28', '', 'tee-shirt42', '', 'inherit', 'open', 'open', '', 'tee-shirt42', '', '', '2014-04-15 17:38:28', '2014-04-15 16:38:28', '', 58, 'http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/tee-shirt42.png', 0, 'attachment', 'image/png', 0),
(60, 1, '2014-04-15 17:42:38', '2014-04-15 16:42:38', '', 'Bienvenue sur le Shop 42 !', '', 'publish', 'open', 'open', '', 'bienvenue-sur-le-shop-42', '', '', '2014-04-15 18:27:03', '2014-04-15 17:27:03', '', 0, 'http://wp.webusco.fr/mandre/?page_id=60', 0, 'page', '', 0),
(61, 1, '2014-04-15 17:42:38', '2014-04-15 16:42:38', '', 'Bienvenue sur le Shop 42 !', '', 'inherit', 'open', 'open', '', '60-revision-v1', '', '', '2014-04-15 17:42:38', '2014-04-15 16:42:38', '', 60, 'http://wp.webusco.fr/mandre/60-revision-v1/', 0, 'revision', '', 0),
(62, 1, '2014-04-15 17:45:00', '2014-04-15 16:45:00', '', 'Shop', '', 'publish', 'open', 'open', '', 'shop', '', '', '2014-04-15 17:45:00', '2014-04-15 16:45:00', '', 0, 'http://wp.webusco.fr/mandre/?p=62', 5, 'nav_menu_item', '', 0),
(63, 1, '2014-04-15 18:11:32', '2014-04-15 17:11:32', 'Le <strong>Lorem Ipsum</strong> est simplement du faux texte employé dans la composition et la mise en page avant impression. Le Lorem Ipsum est le faux texte standard de l''imprimerie depuis les années 1500, quand un peintre anonyme assembla ensemble des morceaux de texte pour réaliser un livre spécimen de polices de texte. Il n''a pas fait que survivre cinq siècles, mais s''est aussi adapté à la bureautique informatique, sans que son contenu n''en soit modifié. Il a été popularisé dans les années 1960 grâce à la vente de feuilles Letraset contenant des passages du Lorem Ipsum, et, plus récemment, par son inclusion dans des applications de mise en page de texte, comme Aldus PageMaker', 'Sweat', '', 'publish', 'closed', 'closed', '', 'sweat', '', '', '2014-04-15 18:18:04', '2014-04-15 17:18:04', '', 0, 'http://wp.webusco.fr/mandre/?post_type=shop&p=63', 0, 'shop', '', 0),
(64, 1, '2014-04-15 18:16:57', '2014-04-15 17:16:57', '', 'veste42', '', 'inherit', 'open', 'open', '', 'veste42', '', '', '2014-04-15 18:16:57', '2014-04-15 17:16:57', '', 63, 'http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/veste42.png', 0, 'attachment', 'image/png', 0),
(65, 1, '2014-04-15 18:18:00', '2014-04-15 17:18:00', '', 'veste42', '', 'inherit', 'open', 'open', '', 'veste42-2', '', '', '2014-04-15 18:18:00', '2014-04-15 17:18:00', '', 63, 'http://wp.webusco.fr/mandre/wp-content/uploads/2014/04/veste421.png', 0, 'attachment', 'image/png', 0);
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB 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),
(5, 2, 0),
(5, 3, 0),
(5, 4, 0),
(18, 5, 0),
(19, 5, 0),
(20, 5, 0),
(21, 5, 0),
(22, 6, 0),
(23, 6, 0),
(24, 6, 0),
(25, 6, 0),
(29, 7, 0),
(30, 7, 0),
(31, 7, 0),
(32, 7, 0),
(58, 9, 0),
(62, 7, 0),
(63, 8, 0),
(63, 9, 0),
(63, 10, 0);
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
--
-- 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),
(2, 2, 'category', '', 0, 1),
(3, 3, 'post_tag', '', 0, 1),
(4, 4, 'post_tag', '', 0, 1),
(5, 5, 'nav_menu', '', 0, 4),
(6, 6, 'nav_menu', '', 0, 4),
(7, 7, 'nav_menu', '', 0, 5),
(8, 8, 'Taille', '', 0, 1),
(9, 9, 'Taille', '', 0, 2),
(10, 10, 'Taille', '', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Non classé', 'non-classe', 0),
(2, 'Notre ambition', 'notre-ambition', 0),
(3, 'Numérique', 'numerique', 0),
(4, '42', '42', 0),
(5, 'Menu 1', 'menu-1', 0),
(6, 'Team42', 'team42', 0),
(7, 'MenuH', 'menuh', 0),
(8, 'S', 's', 0),
(9, 'M', 'm', 0),
(10, 'L', 'l', 0);
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=54 ;
--
-- 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', 'mandre'),
(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,wp360_revisions,wp360_locks'),
(13, 1, 'show_welcome_panel', '1'),
(14, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(15, 1, 'closedpostboxes_dashboard', 'a:0:{}'),
(16, 1, 'metaboxhidden_dashboard', 'a:0:{}'),
(17, 1, 'wp_user-settings', 'libraryContent=browse&hidetb=1&mfold=o&editor=tinymce'),
(18, 1, 'wp_user-settings-time', '1397579929'),
(19, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(20, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";}'),
(21, 1, 'nav_menu_recently_edited', '7'),
(34, 3, 'first_name', ''),
(35, 3, 'last_name', ''),
(36, 3, 'nickname', 'test'),
(37, 3, 'description', ''),
(38, 3, 'rich_editing', 'true'),
(39, 3, 'comment_shortcuts', 'false'),
(40, 3, 'admin_color', 'fresh'),
(41, 3, 'use_ssl', '0'),
(42, 3, 'show_admin_bar_front', 'true'),
(43, 3, 'wp_capabilities', 'a:1:{s:6:"author";b:1;}'),
(44, 3, 'wp_user_level', '2'),
(45, 3, 'default_password_nag', '1'),
(46, 1, 'facebook', 'https://www.facebook.com/allbikestoreFr'),
(47, 1, 'twitter', 'https://twitter.com/allbikestore'),
(48, 1, 'dailymotion', 'http://www.dailymotion.com/video/x13772l_allbikestore-ou-serez-vous-le-16-septembre-2013_sport'),
(49, 1, 'mood', 'Joyeux'),
(50, 1, 'closedpostboxes_page', 'a:0:{}'),
(51, 1, 'metaboxhidden_page', 'a:4:{i:0;s:16:"commentstatusdiv";i:1;s:11:"commentsdiv";i:2;s:7:"slugdiv";i:3;s:9:"authordiv";}'),
(52, 1, 'closedpostboxes_post', 'a:0:{}'),
(53, 1, 'metaboxhidden_post', 'a:6:{i:0;s:11:"postexcerpt";i:1;s:13:"trackbacksdiv";i:2;s:16:"commentstatusdiv";i:3;s:11:"commentsdiv";i:4;s:7:"slugdiv";i:5;s:9:"authordiv";}');
-- --------------------------------------------------------
--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- 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, 'mandre', '$P$BNw.JLoGXnBXRE748u1YEUm0XH7kKj0', 'mandre', 'mandre@student.42.fr', '', '2014-04-14 12:48:48', '', 0, 'mandre'),
(3, 'test', '$P$BG6vSOgqw6ZM2JVZEIesVWZD.i.YR10', 'test', 'andre.marian.78@gmail.com', '', '2014-04-14 17:16:57', '', 0, 'test');
/*!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 */;