-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhigh_bandwidth.html
6870 lines (5355 loc) · 833 KB
/
high_bandwidth.html
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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<meta name='robots' content='noindex,follow' />
<link rel="alternate" type="application/rss+xml" title="Orchid Society of Santa Barbara » Feed" href="http://orchidsb.org/feed/" />
<link rel="alternate" type="application/rss+xml" title="Orchid Society of Santa Barbara » Comments Feed" href="http://orchidsb.org/comments/feed/" />
<link rel="alternate" type="text/calendar" title="Orchid Society of Santa Barbara » iCal Feed" href="http://orchidsb.org/events/?ical=1" />
<link rel='stylesheet' id='twentytwelve-fonts-css' href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700&subset=latin,latin-ext' type='text/css' media='all' />
<link rel='stylesheet' id='twentytwelve-style-css' href='http://orchidsb.org/wp-content/themes/twentytwelve/style.css?ver=4.0.13' type='text/css' media='all' />
<link href="//s.w.org/wp-includes/css/dashicons.css?20160504" rel="stylesheet" type="text/css" />
<link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//s.w.org/style/wp4.css?49" />
<link media="only screen and (max-device-width: 480px)" href="//s.w.org/style/iphone.css?1" type="text/css" rel="stylesheet" />
<link rel="shortcut icon" href="//s.w.org/favicon.ico?2" type="image/x-icon" />
<link href="//s.w.org/wp-includes/css/dashicons.css?20160504" rel="stylesheet" type="text/css" />
<link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//s.w.org/style/wp4.css?49" />
<link media="only screen and (max-device-width: 480px)" href="//s.w.org/style/iphone.css?1" type="text/css" rel="stylesheet" />
<link rel="shortcut icon" href="//s.w.org/favicon.ico?2" type="image/x-icon" />
<script type="text/javascript">
var loadStartTime = new Date().getTime();
var loadEndTime;
// A timer function set to wait 5 seconds
var newDiv = window.setTimeout(showLowBandDiv, 5000);
// Lets check if Basic DOM is loaded
var loadStart = window.addEventListener("DOMContentLoaded",function(event){
//Console demo code starts
console.log("Basis Dom is Loaded @: "+loadStartTime);
//Console demo ends
});
// Lets check if Complete DOM with all resources is loaded
var loadEnds = window.addEventListener("load",function(event){
loadEndTime = new Date().getTime();
//Console demo code starts
console.log("The Dom with all resources is loaded @:"+loadEndTime);
var netLoadTime = loadEndTime - loadStartTime;
console.info("Net Load time is: "+netLoadTime);
// Console demo ends
});
function showLowBandDiv(){
var nowTimeIs = new Date().getTime();
var timeDiff = nowTimeIs-loadStartTime;
if ( loadEndTime ){
//Console demo code starts
console.info("Waited for: "+timeDiff);
//Console demo ends
//Do Nothing in real life scenario as bandwidth is good - below code is only for demo.
document.getElementById('lowBand').innerHTML = "Bandwidth is Good !";
}
else {
//Console demo code starts
console.info("Waited for: "+timeDiff);
//Console demo ends
//Suggest user with alternative link with low bandwidth ( Or you can default redirect to low bandwidth page)
document.getElementById('lowBand').innerHTML = "<a href='low_bandwidth.html'> Low bandwidth detected - Link to low bandwidth Page. </a>";
}
}
</script>
<style>
.noticeBox {width:100%; border:1px dashed blue; color:blue; font:1.5em;text-align: center; padding:10px 0;}
.noticeBox a{color:red; font:1.5em; text-decoration:underline;}
</style>
</head>
<body>
<div id="lowBand" class="noticeBox">Checking Bandwidth....</div>
<div>
<div id="pagebody">
<div class="wrapper">
<div class="col-9">
<h2 class="fancy">Loading a page with ~ 6 MB of Data </h2>
<div class="wrapper"></div>
<div class="meta">Posted November 15, 2016 by <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>. Filed under <a href="https://wordpress.org/news/category/wordcamp/" rel="category tag">WordCamp</a>. </div>
<div class="storycontent">
<p><img class="aligncenter" src="https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&ssl=1" width="632" height="253"></p>
<p>The title says it all. We had some great applications for cities to host <a href="http://us.wordcamp.org/">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>
<p>Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>
<p>By the way, if you haven’t yet, now is a great time to <a href="https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey">take the Annual WordPress Survey</a> and ask your friends to as well.</p>
<p><a href="https://www.flickr.com/photos/143951935@N07/27492741871">Photo Credit</a>.</p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4571" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4571" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">66</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4571" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4571-582bb24bb138c" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4571&origin=wordpress.org&obj_id=14607090-4571-582bb24bb138c" data-name="like-post-frame-14607090-4571-582bb24bb138c"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4571-582bb24bb138c" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4571&origin=wordpress.org&obj_id=14607090-4571-582bb24bb138c"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<h2 class="fancy"><a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/">WordPress 4.7 Beta 3</a></h2>
<div class="meta">Posted November 11, 2016 by <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandi</a>. Filed under <a href="https://wordpress.org/news/category/development/" rel="category tag">Development</a>, <a href="https://wordpress.org/news/category/releases/" rel="category tag">Releases</a>. </div>
<div class="storycontent">
<p>WordPress 4.7 Beta 3 is now available!</p>
<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.7-beta3.zip">download the beta here</a> (zip).</p>
<p>For more information on what’s new in 4.7, check out the <a href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/">Beta 1</a> and <a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/">Beta 2</a> blog posts, along with <a href="https://make.wordpress.org/core/tag/4-7+dev-notes/">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>
<ul>
<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>
<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>
<li><strong>I18N:</strong> Added the ability to change user’s locale back to site’s locale. (<a href="https://core.trac.wordpress.org/ticket/38632">#38632</a>)</li>
<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>
<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href="https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/">the developer guide to the customizer preview’s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</li>
<li><strong>Various bug fixes:</strong> We’ve made <a href="https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39200&stop_rev=39143&limit=200&verbose=on&sfp_email=&sfph_mail=">over 50 changes</a> in the last week.</li>
</ul>
<p>Do you speak a language other than English? <a href="https://translate.wordpress.org/projects/wp/dev">Help us translate WordPress into more than 100 languages!</a></p>
<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on WordPress Trac</a>, where you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a>.</p>
<p><em>Building the future</em><br>
<em>A global community</em><br>
<em>Stronger together</em></p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4566" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4566" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">402</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4566" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4566-582bb24bb46de" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4566&origin=wordpress.org&obj_id=14607090-4566-582bb24bb46de" data-name="like-post-frame-14607090-4566-582bb24bb46de"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4566-582bb24bb46de" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4566&origin=wordpress.org&obj_id=14607090-4566-582bb24bb46de"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<h2 class="fancy"><a href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/">WordPress 4.7 Beta 2</a></h2>
<div class="meta">Posted November 4, 2016 by <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandi</a>. Filed under <a href="https://wordpress.org/news/category/development/" rel="category tag">Development</a>, <a href="https://wordpress.org/news/category/releases/" rel="category tag">Releases</a>. </div>
<div class="storycontent">
<p>WordPress 4.7 Beta 2 is now available!</p>
<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.7-beta2.zip">download the beta here</a> (zip).</p>
<p>Notable changes since WordPress 4.7 Beta 1:</p>
<ul>
<li><strong>Twenty Seventeen:</strong> The theme wasn’t being installed on upgrades – sorry about that! Now you should see it if you’re upgrading an existing site. There are also plenty of fixes, especially for the header and small screen views.</li>
<li><strong>Edit shortcuts:</strong> These are always visible while editing (hide them on bigger screens by collapsing the controls) and should now work properly in Firefox. (<a href="https://core.trac.wordpress.org/ticket/27403">#27403</a> and <a href="https://core.trac.wordpress.org/ticket/38532">#38532</a>)</li>
<li><strong>REST API endpoints:</strong> There have been a number of changes over the past week; your attention is requested on the following:
<ul>
<li>The <code>DELETE</code> response format has changed and may need to be accounted for. (<a href="https://core.trac.wordpress.org/ticket/38494">#38494</a>)</li>
<li>Enabled querying by multiple post statuses. (<a href="https://core.trac.wordpress.org/ticket/38420">#38420</a>)</li>
<li>Return an error when JSON decoding fails. (<a href="https://core.trac.wordpress.org/ticket/38547">#38547</a>)</li>
</ul>
</li>
<li><strong>More developer notes</strong>
<ul>
<li><a href="https://make.wordpress.org/core/2016/10/28/fine-grained-capabilities-for-taxonomy-terms-in-4-7/">Fine grained capabilities for taxonomy terms</a></li>
<li><a href="https://make.wordpress.org/core/2016/10/29/wp_taxonomy-in-4-7/"><code>WP_Taxonomy</code></a></li>
<li><a href="https://make.wordpress.org/core/2016/11/02/wp_list_sort-and-wp_list_util-in-4-7/"><code>wp_list_sort()</code> and <code>WP_List_Util</code></a></li>
<li><a href="https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/">Post type templates</a></li>
<li><a href="https://make.wordpress.org/core/2016/11/03/new-post-type-labels-in-4-7/">New post type labels</a></li>
<li><a href="https://make.wordpress.org/core/2016/11/03/attributes-for-resource-hints-in-4-7/">Attributes for resource hints</a></li>
</ul>
</li>
<li><strong>Various bug fixes:</strong> We’ve made <a href="https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39142&stop_rev=38995&limit=200&verbose=on&sfp_email=&sfph_mail=">almost 150 changes</a> in the last week.</li>
</ul>
<p>For more of what’s new in version 4.7, <a href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/">check out the Beta 1 blog post</a>.</p>
<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href="https://make.wordpress.org/core/tag/4-7/">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href="https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.7&group=component&order=priority">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>
<p>Do you speak a language other than English? <a href="https://translate.wordpress.org/projects/wp/dev">Help us translate WordPress into more than 100 languages!</a></p>
<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on WordPress Trac</a>, where you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a>.</p>
<p>Happy testing!</p>
<p><em>Ya es la hora</em><br>
<em> Time for another beta</em><br>
请您帮下忙!</p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4552" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4552" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">463</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4552" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4552-582bb24bb742e" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4552&origin=wordpress.org&obj_id=14607090-4552-582bb24bb742e" data-name="like-post-frame-14607090-4552-582bb24bb742e"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4552-582bb24bb742e" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4552&origin=wordpress.org&obj_id=14607090-4552-582bb24bb742e"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<h2 class="fancy"><a href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/">WordPress 4.7 Beta 1</a></h2>
<div class="meta">Posted October 28, 2016 by <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandi</a>. Filed under <a href="https://wordpress.org/news/category/development/" rel="category tag">Development</a>, <a href="https://wordpress.org/news/category/releases/" rel="category tag">Releases</a>. </div>
<div class="storycontent">
<p>WordPress 4.7 Beta 1 is now available!</p>
<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.7-beta1.zip">download the beta here</a> (zip).</p>
<p>WordPress 4.7 is slated for release on <a href="https://make.wordpress.org/core/4-7/">December 6</a>, but we need your help to get there. We’ve been working on a lot of things, many of them to make getting your site set up the way you want it much easier. Here are some of the bigger items to test and help us find as many bugs as possible in the coming weeks:</p>
<ul>
<li><a href="http://2017.wordpress.net/"><strong>Twenty Seventeen</strong></a> – A brand new default theme brings your site to life with immersive featured images, video headers, and subtle animations. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.</li>
<li><strong>Video Headers</strong> – Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</li>
<li><strong>Set up your site in one flow</strong> – From finding and installing themes right inside the customizer, to automatically staged theme-specific starter content, to clickable shortcuts that jump directly to editing an item from the preview pane, to adding pages while you’re building a nav menu or setting a static front page: getting a new site spun up and ready to share with a friend or a coworker is faster and easier than it’s ever been. Note: starter content appears when live previewing brand new sites and is currently only available in Twenty Seventeen. We’ll be expanding this to other bundled themes very soon, and perhaps to sites with existing content in future releases of WordPress.</li>
<li><strong>Custom CSS with live previews</strong> – Ever needed to hide or tweak the look of something in your theme or from a plugin? Now you can do it with CSS and live preview the results while customizing your site. CSS can be a powerful tool; you may find that you won’t need the theme editor or child themes anymore.</li>
<li><strong>User admin languages</strong> – Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. To try this out, you’ll need to have more than one language installed, which will make a user language option available in your profile.</li>
<li><strong>PDF thumbnail previews</strong> – Uploading PDFs will now generate thumbnail images so you can more easily distinguish between all your documents.</li>
</ul>
<p>As always, there have been exciting changes for developers to explore as well, such as:</p>
<ul>
<li><strong>REST API content endpoints</strong> – If you only test one thing as a developer, please test these. This phase is particularly helpful for people building plugins, themes, and in-admin interfaces. Can you build the things you need? Are these ready for release, and is the world ready for them? (<a href="https://core.trac.wordpress.org/ticket/38373">#38373</a>)</li>
<li><strong><code>WP_Hook</code></strong> – The code that lies beneath actions and filters has been overhauled. You likely aren’t affected, but if you’ve done things to the <code>$wp_filter</code> global or experienced funky recursion bugs in the past, <a href="https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/">please take a moment to read the dev note</a> and test your code.</li>
<li><a href="https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/"><strong>Custom bulk actions</strong></a> – List tables, now with more than bulk edit and delete.</li>
<li>Expanded <a href="https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/"><strong>Settings Registration API</strong></a> via <code>register_setting()</code>.</li>
<li>For theme developers: <strong>Post type templates</strong> (<a href="https://core.trac.wordpress.org/ticket/18375">#18375</a>)</li>
<li><strong><a href="https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/">More goodies for theme developers!</a></strong></li>
<li><strong>Locale switching</strong> (<a href="https://core.trac.wordpress.org/ticket/26511">#26511</a>)</li>
<li><a href="https://make.wordpress.org/core/2016/10/11/comment-allowed-checks-in-wordpress-4-7/"><strong>Comment allowed checks</strong></a> have the potential for a back-compat break.</li>
</ul>
<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href="https://make.wordpress.org/core/tag/4-7/">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href="https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.7&group=component&order=priority">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>
<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on WordPress Trac</a>, where you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a>.</p>
<p>Happy testing, and please enjoy this extended haiku break, courtesy of <a href="https://profiles.wordpress.org/ramiabraham">Rami Abraham</a><em>.</em></p>
<p><em>Exquisite endpoints</em><br>
<em>Extol epic exabytes</em><br>
<em>Enabling earthlings</em></p>
<p><em>Careful interfaces</em><br>
<em>Considerately conjured</em><br>
<em>Customizer chic</em></p>
<p><em>Ring in the new year</em><br>
<em>With elegance and balance</em><br>
<em>Twenty Seventeen</em></p>
<p><em>Hooks hook healthily</em><br>
<em>17817</em><br>
<em>Sane iterations</em></p>
<p><em>Admin in your tongue<br>
One site, many languages<br>
We all speak WordPress</em></p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4535" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4535" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">1K+</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4535" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4535-582bb24bbaa05" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4535&origin=wordpress.org&obj_id=14607090-4535-582bb24bbaa05" data-name="like-post-frame-14607090-4535-582bb24bbaa05"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4535-582bb24bbaa05" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4535&origin=wordpress.org&obj_id=14607090-4535-582bb24bbaa05"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<h2 class="fancy"><a href="https://wordpress.org/news/2016/10/join-us-again-for-global-wordpress-translation-day/">Join Us Again for Global WordPress Translation Day</a></h2>
<div class="meta">Posted October 14, 2016 by <a href="https://profiles.wordpress.org/petya">Petya Raykovska</a>. Filed under <a href="https://wordpress.org/news/category/community/" rel="category tag">Community</a>. </div>
<div class="storycontent">
<p>The WordPress Polyglots team is organizing the second <a href="https://wptranslationday.org/">Global WordPress Translation Day</a> on November 12th. Everyone is invited to join – from anywhere in the world!</p>
<p>Translating is one of the easiest ways to get involved with WordPress and contribute to the project. Global WordPress Translation Day is your chance to learn more about translating WordPress, meet people from all over the world, and <a href="https://make.wordpress.org/polyglots/teams">translate WordPress into one of more than 160 languages</a>.</p>
<h3>Join us on November 12th from anywhere in the world</h3>
<p>The translation day starts on Saturday, November 12th, 2016, at 0:00 UTC and ends 24 hours later. <a href="http://arewemeetingyet.com/UTC/2016-11-12/00:00/Global%20WordPress%20Translation%20Day%202">See what time that is for you!</a> You can join right from the start, or any time it’s convenient for you throughout the day.</p>
<h3>What are we doing?</h3>
<p>Local contributor days are happening all over the world, and are a great way to get involved. <a href="https://www.google.com/maps/d/viewer?mid=12Gni4JMfShyWHPqGNwh5-PMneMM&usp=sharing">Check out this map</a> to see if there’s already a local event happening near you. Can’t find one? <a href="https://make.wordpress.org/polyglots/2016/09/22/global-wordpress-translation-day-2-on-november-12th-2016/">Organize a local event!</a></p>
<p>At the same time, <a href="https://www.crowdcast.io/e/gwtd2/register">join the community for 24 hours of live-streamed, remote sessions</a> in numerous languages. Sessions will cover localization, internationalization, and contributing in your language.</p>
<h3>Who’s it for?</h3>
<p>Whether you’re new to translating and want to learn how to translate, or an experienced translation editor building a strong team, the translation day is for <i>you</i>. Developers will also enjoy topics from experienced contributors, whether you’re learning about internationalization and or want to find more translators for your themes and plugins. There’s a session for everyone!</p>
<h3>Get Involved</h3>
<p>Joining is easy! On November 12th, in your own timezone, <a href="https://translate.wordpress.org">translate WordPress</a> or your favorite plugins and themes into your language, while watching live sessions over the course of the day.</p>
<p>Want to get more involved? <a href="https://make.wordpress.org/polyglots/2016/09/22/global-wordpress-translation-day-2-on-november-12th-2016/">Sign up to organize a local event</a> and invite your local community to translate together on November 12th. Events can be formal or completely informal – grab your laptop and a couple of friends, and head to a local coffee shop to translate for an hour or two.</p>
<h3>Can you get involved if you only speak English?</h3>
<p>Absolutely! Even if you only speak English, there are great sessions about internationalization that can benefit every developer. There’s also lots of English variants that need your help! For example, English is spoken and written differently in Australia, Canada, New Zealand, South Africa, and the United Kingdom. You can learn about these differences and why these variants are important during the sessions.</p>
<p>And if you’re feeling fun, try translating WordPress into emoji! Yep, we have a translation of WordPress in emoji! <img draggable="false" class="emoji" alt="🌎" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f30e.svg"><img draggable="false" class="emoji" alt="🌍" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f30d.svg"><img draggable="false" class="emoji" alt="🌏" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f30f.svg"></p>
<h3>Questions?</h3>
<p>If you have any questions, the polyglots team and the event organizers hang out in <a href="http://wordpress.slack.com/messages/polyglots/">#polyglots in Slack</a> and are happy to help! (Get an invite to Slack at <a href="https://chat.wordpress.org">chat.wordpress.org</a>.)</p>
<p>Sign up to take part in the event on the <a href="https://wptranslationday.org/">official website</a>.</p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4516" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/10/join-us-again-for-global-wordpress-translation-day/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4516" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/10/join-us-again-for-global-wordpress-translation-day/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">433</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4516" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/10/join-us-again-for-global-wordpress-translation-day/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/10/join-us-again-for-global-wordpress-translation-day/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4516-582bb24bbd9ca" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4516&origin=wordpress.org&obj_id=14607090-4516-582bb24bbd9ca" data-name="like-post-frame-14607090-4516-582bb24bbd9ca"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4516-582bb24bbd9ca" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4516&origin=wordpress.org&obj_id=14607090-4516-582bb24bbd9ca"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<h2 class="fancy"><a href="https://wordpress.org/news/2016/09/wordpress-4-6-1-security-and-maintenance-release/">WordPress 4.6.1 Security and Maintenance Release</a></h2>
<div class="meta">Posted September 7, 2016 by <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>. Filed under <a href="https://wordpress.org/news/category/releases/" rel="category tag">Releases</a>, <a href="https://wordpress.org/news/category/security/" rel="category tag">Security</a>. </div>
<div class="storycontent">
<p>WordPress 4.6.1 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>
<p>WordPress versions 4.6 and earlier are affected by two security issues: a cross-site scripting vulnerability via image filename, reported by SumOfPwn researcher <a href="https://twitter.com/cengizhansahin">Cengiz Han Sahin</a>; and a path traversal vulnerability in the upgrade package uploader, reported by <a href="https://dominikschilling.de/">Dominik Schilling</a> from the WordPress security team.</p>
<p>Thank you to the reporters for practicing <a href="https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/">responsible disclosure</a>.</p>
<p>In addition to the security issues above, WordPress 4.6.1 fixes 15 bugs from 4.6. For more information, see the <a href="https://codex.wordpress.org/Version_4.6.1">release notes</a> or consult the <a href="https://core.trac.wordpress.org/query?milestone=4.6.1">list of changes</a>.</p>
<p><a href="https://wordpress.org/download/">Download WordPress 4.6.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.6.1.</p>
<p>Thanks to everyone who contributed to 4.6.1:</p>
<p><a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/gitlost">bonger</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/chaos-engine">Chaos Engine</a>, <a href="https://profiles.wordpress.org/danielkanchev">Daniel Kanchev</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/flixos90">Felix Arntz</a>, <a href="https://profiles.wordpress.org/frozzare">Fredrik Forsmo</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/geminorum">geminorum</a>, <a href="https://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="https://profiles.wordpress.org/ionutst">Ionut Stanciu</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>, <a href="https://profiles.wordpress.org/clorith">Marius L. J. (Clorith)</a>, <a href="https://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="https://profiles.wordpress.org/rpayne7264">Robert D Payne</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, and <a href="https://profiles.wordpress.org/nmt90">Triet Minh</a>.</p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4507" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/09/wordpress-4-6-1-security-and-maintenance-release/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4507" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/09/wordpress-4-6-1-security-and-maintenance-release/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">1K+</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4507" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/09/wordpress-4-6-1-security-and-maintenance-release/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/09/wordpress-4-6-1-security-and-maintenance-release/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4507-582bb24bc01c3" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4507&origin=wordpress.org&obj_id=14607090-4507-582bb24bc01c3" data-name="like-post-frame-14607090-4507-582bb24bc01c3"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4507-582bb24bc01c3" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4507&origin=wordpress.org&obj_id=14607090-4507-582bb24bc01c3"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
d
<h2 class="fancy"><a href="https://wordpress.org/news/2016/08/pepper/">WordPress 4.6 “Pepper”</a></h2>
<div class="meta">Posted August 16, 2016 by <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>. Filed under <a href="https://wordpress.org/news/category/releases/" rel="category tag">Releases</a>. </div>
<div class="storycontent">
<p>Version 4.6 of WordPress, named “Pepper” in honor of jazz baritone saxophonist Park Frederick “Pepper” Adams III, is available for download or update in your WordPress dashboard. New features in 4.6 help you to focus on the important things while feeling more at home.</p>
<p><div width="632" height="354" src="https://videopress.com/embed/GbdhpGF3?hd=1" frameborder="0" allowfullscreen=""></div><img src="https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243"></p></p>
<hr>
<h2 style="text-align: center">Streamlined Updates</h2>
<p><img class="aligncenter wp-image-4454 size-large" src="https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=632%2C379&ssl=1" srcset="https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=1024%2C614&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=300%2C180&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=768%2C461&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?w=1264&ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?w=1896&ssl=1 1896w" sizes="(max-width: 632px) 100vw, 632px" width="632" height="379"></p>
<p>Don’t lose your place: stay on the same page while you update, install, and delete your plugins and themes.</p>
<hr>
<h2 style="text-align: center">Native Fonts</h2>
<p><img class="aligncenter wp-image-4455 size-large" src="https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=632%2C379&ssl=1" srcset="https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=1024%2C614&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=300%2C180&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=768%2C461&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?w=1264&ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?w=1896&ssl=1 1896w" sizes="(max-width: 632px) 100vw, 632px" width="632" height="379"></p>
<p>The WordPress dashboard now takes advantage of the fonts you already have, making it load faster and letting you feel more at home on whatever device you use.</p>
<hr>
<h2 style="text-align: center">Editor Improvements</h2>
<div style="float: left;width: 48%;margin: 0">
<h3>Inline Link Checker</h3>
<p><img class="aligncenter wp-image-4456 size-full" src="https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=632%2C379&ssl=1" srcset="https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?w=992&ssl=1 992w, https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=300%2C180&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=768%2C461&ssl=1 768w" sizes="(max-width: 632px) 100vw, 632px" width="303" height="182"></p>
<p>Ever accidentally made a link to https://wordpress.org/example.org? Now WordPress automatically checks to make sure you didn’t.</p>
</div>
<div style="float: right;width: 48%;margin: 0">
<h3>Content Recovery</h3>
<p><img class="aligncenter wp-image-4457 size-full" src="https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=632%2C379&ssl=1" srcset="https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?w=992&ssl=1 992w, https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=300%2C180&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=768%2C461&ssl=1 768w" sizes="(max-width: 632px) 100vw, 632px" width="303" height="182"></p>
<p>As you type, WordPress saves your content to the browser. Recovering saved content is even easier with WordPress 4.6.</p>
</div>
<hr style="clear: both">
<h2 style="text-align: center">Under The Hood</h2>
<h3>Resource Hints</h3>
<p><a href="https://make.wordpress.org/core/2016/07/06/resource-hints-in-4-6/">Resource hints help browsers</a> decide which resources to fetch and preprocess. WordPress 4.6 adds them automatically for your styles and scripts making your site even faster.</p>
<h3>Robust Requests</h3>
<p>The HTTP API now leverages the Requests library, improving HTTP standard support and adding case-insensitive headers, parallel HTTP requests, and support for Internationalized Domain Names.</p>
<h3><code>WP_Term_Query</code> and <code>WP_Post_Type</code></h3>
<p>A new <code><a href="https://developer.wordpress.org/reference/classes/wp_term_query">WP_Term_Query</a></code> class adds flexibility to query term information while a new <code><a href="https://developer.wordpress.org/reference/classes/wp_post_type">WP_Post_Type</a></code> object makes interacting with post types more predictable.</p>
<h3>Meta Registration API</h3>
<p>The Meta Registration API <a href="https://make.wordpress.org/core/2016/07/08/enhancing-register_meta-in-4-6/">has been expanded</a> to support types, descriptions, and REST API visibility.</p>
<h3>Translations On Demand</h3>
<p>WordPress will install and use the newest language packs for your plugins and themes as soon as they’re available from <a href="https://translate.wordpress.org/">WordPress.org’s community of translators</a>.</p>
<h3>JavaScript Library Updates</h3>
<p>Masonry 3.3.2, imagesLoaded 3.2.0, MediaElement.js 2.22.0, TinyMCE 4.4.1, and Backbone.js 1.3.3 are bundled.</p>
<h3>Customizer APIs for Setting Validation and Notifications</h3>
<p>Settings now have an <a href="https://make.wordpress.org/core/2016/07/05/customizer-apis-in-4-6-for-setting-validation-and-notifications/">API for enforcing validation constraints</a>. Likewise, customizer controls now support notifications, which are used to display validation errors instead of failing silently.</p>
<h3>Multisite, now faster than ever</h3>
<p>Cached and comprehensive site queries improve your network admin experience. The addition of <code><a href="https://developer.wordpress.org/reference/classes/wp_site_query">WP_Site_Query</a></code> and <code><a href="https://developer.wordpress.org/reference/classes/wp_network_query">WP_Network_Query</a></code> help craft advanced queries with less effort.</p>
<hr>
<h2 style="text-align: center">The Crew</h2>
<p>This release was led by <a href="https://dominikschilling.de/">Dominik Schilling</a>, backed up by <a href="https://www.garthmortensen.com/">Garth Mortensen</a> as Release Deputy, and with the help of these fine individuals. There are <span style="font-weight: 400">272</span> contributors with props in this release. Pull up some Pepper Adams on your music service of choice, and check out some of their profiles:</p>
<a href="https://profiles.wordpress.org/a5hleyrich">A5hleyRich</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/achbed">achbed</a>, <a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/adamsoucie">Adam Soucie</a>, <a href="https://profiles.wordpress.org/adrianosilvaferreira">Adriano Ferreira</a>, <a href="https://profiles.wordpress.org/afineman">afineman</a>, <a href="https://profiles.wordpress.org/mrahmadawais">Ahmad Awais</a>, <a href="https://profiles.wordpress.org/aidvu">aidvu</a>, <a href="https://profiles.wordpress.org/akibjorklund">Aki Björklund</a>, <a href="https://profiles.wordpress.org/xknown">Alex Concha</a>, <a href="https://profiles.wordpress.org/xavortm">Alex Dimitrov</a>, <a href="https://profiles.wordpress.org/alexkingorg">Alex King</a>, <a href="https://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="https://profiles.wordpress.org/alexvandervegt">alexvandervegt</a>, <a href="https://profiles.wordpress.org/ambrosey">Alice Brosey</a>, <a href="https://profiles.wordpress.org/aaires">Ana Aires</a>, <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/andg">Andrea Gandino</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/rockwell15">Andrew Rockwell</a>, <a href="https://profiles.wordpress.org/afragen">Andy Fragen</a>, <a href="https://profiles.wordpress.org/andizer">Andy Meerwaldt</a>, <a href="https://profiles.wordpress.org/andy">Andy Skelton</a>, <a href="https://profiles.wordpress.org/anilbasnet">Anil Basnet</a>, <a href="https://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>, <a href="https://profiles.wordpress.org/anneschmidt">anneschmidt</a>, <a href="https://profiles.wordpress.org/zuige">Antti Kuosmanen</a>, <a href="https://profiles.wordpress.org/ideag">Arunas Liuiza</a>, <a href="https://profiles.wordpress.org/barry">Barry</a>, <a href="https://profiles.wordpress.org/barryceelen">Barry Ceelen</a>, <a href="https://profiles.wordpress.org/kau-boy">Bernhard Kau</a>, <a href="https://profiles.wordpress.org/birgire">Birgir Erlendsson (birgire)</a>, <a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="https://profiles.wordpress.org/gitlost">bonger</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>, <a href="https://profiles.wordpress.org/bradt">Brad Touesnard</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/brianvan">brianvan</a>, <a href="https://profiles.wordpress.org/borgesbruno">Bruno Borges</a>, <a href="https://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="https://profiles.wordpress.org/purcebr">Bryan Purcell</a>, <a href="https://profiles.wordpress.org/chandrapatel">Chandra Patel</a>, <a href="https://profiles.wordpress.org/chaos-engine">Chaos Engine</a>, <a href="https://profiles.wordpress.org/chouby">Chouby</a>, <a href="https://profiles.wordpress.org/chris_dev">Chris Mok</a>, <a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="https://profiles.wordpress.org/chriscct7">chriscct7</a>, <a href="https://profiles.wordpress.org/christophherr">Christoph Herr</a>, <a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="https://profiles.wordpress.org/cliffseal">Cliff Seal</a>, <a href="https://profiles.wordpress.org/clubduece">clubduece</a>, <a href="https://profiles.wordpress.org/cmillerdev">cmillerdev</a>, <a href="https://profiles.wordpress.org/craig-ralston">Craig Ralston</a>, <a href="https://profiles.wordpress.org/crstauf">crstauf</a>, <a href="https://profiles.wordpress.org/dabnpits">dabnpits</a>, <a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="https://profiles.wordpress.org/danielhuesken">Daniel Hüsken</a>, <a href="https://profiles.wordpress.org/danielkanchev">Daniel Kanchev</a>, <a href="https://profiles.wordpress.org/mte90">Daniele Scasciafratte</a>, <a href="https://profiles.wordpress.org/dashaluna">dashaluna</a>, <a href="https://profiles.wordpress.org/davewarfel">davewarfel</a>, <a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="https://profiles.wordpress.org/davidanderson">David Anderson</a>, <a href="https://profiles.wordpress.org/dbrumbaugh10up">David Brumbaugh</a>, <a href="https://profiles.wordpress.org/dcavins">David Cavins</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/davidmosterd">David Mosterd</a>, <a href="https://profiles.wordpress.org/dshanske">David Shanske</a>, <a href="https://profiles.wordpress.org/realloc">Dennis Ploetner</a>, <a href="https://profiles.wordpress.org/valendesigns">Derek Herman</a>, <a href="https://profiles.wordpress.org/downstairsdev">Devin Price</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/dougwollison">Doug Wollison</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/iseulde">Ella Iseulde Van Dorpe</a>, <a href="https://profiles.wordpress.org/elrae">elrae</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="https://profiles.wordpress.org/ethitter">Erick Hitter</a>, <a href="https://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>, <a href="https://profiles.wordpress.org/faison">Faison</a>, <a href="https://profiles.wordpress.org/flixos90">Felix Arntz</a>, <a href="https://profiles.wordpress.org/flyingdr">flyingdr</a>, <a href="https://profiles.wordpress.org/foliovision">FolioVision</a>, <a href="https://profiles.wordpress.org/francescobagnoli">francescobagnoli</a>, <a href="https://profiles.wordpress.org/bueltge">Frank Bueltge</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/efarem">Frank Martin</a>, <a href="https://profiles.wordpress.org/frozzare">Fredrik Forsmo</a>, <a href="https://profiles.wordpress.org/mintindeed">Gabriel Koen</a>, <a href="https://profiles.wordpress.org/gma992">Gabriel Maldonado</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/gblsm">gblsm</a>, <a href="https://profiles.wordpress.org/geekysoft">Geeky Software</a>, <a href="https://profiles.wordpress.org/geminorum">geminorum</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/hardeepasrani">Hardeep Asrani</a>, <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandí</a>, <a href="https://profiles.wordpress.org/henrywright">Henry Wright</a>, <a href="https://profiles.wordpress.org/hugobaeta">Hugo Baeta</a>, <a href="https://profiles.wordpress.org/polevaultweb">Iain Poulson</a>, <a href="https://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="https://profiles.wordpress.org/igmoweb">Ignacio Cruz Moreno</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/inderpreet99">Inderpreet Singh</a>, <a href="https://profiles.wordpress.org/ionutst">Ionut Stanciu</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/macmanx">James Huff</a>, <a href="https://profiles.wordpress.org/jnylen0">James Nylen</a>, <a href="https://profiles.wordpress.org/underdude">Janne Ala-Äijälä</a>, <a href="https://profiles.wordpress.org/jaspermdegroot">Jasper de Groot</a>, <a href="https://profiles.wordpress.org/javorszky">javorszky</a>, <a href="https://profiles.wordpress.org/jfarthing84">Jeff Farthing</a>, <a href="https://profiles.wordpress.org/cheffheid">Jeffrey de Wit</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/endocreative">Jeremy Green</a>, <a href="https://profiles.wordpress.org/jeherve">Jeremy Herve</a>, <a href="https://profiles.wordpress.org/jmichaelward">Jeremy Ward</a>, <a href="https://profiles.wordpress.org/jerrysarcastic">Jerry Bates (jerrysarcastic)</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/jipmoors">Jip Moors</a>, <a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>, <a href="https://profiles.wordpress.org/joelwills">Joel Williams</a>, <a href="https://profiles.wordpress.org/j-falk">Johan Falk</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="https://profiles.wordpress.org/johnpgreen">John P. Green</a>, <a href="https://profiles.wordpress.org/john_schlick">John_Schlick</a>, <a href="https://profiles.wordpress.org/kenshino">Jon (Kenshino)</a>, <a href="https://profiles.wordpress.org/jbrinley">Jonathan Brinley</a>, <a href="https://profiles.wordpress.org/spacedmonkey">Jonny Harris</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/josephscott">Joseph Scott</a>, <a href="https://profiles.wordpress.org/shelob9">Josh Pollock</a>, <a href="https://profiles.wordpress.org/joshuagoodwin">Joshua Goodwin</a>, <a href="https://profiles.wordpress.org/jpdavoutian">jpdavoutian</a>, <a href="https://profiles.wordpress.org/jrf">jrf</a>, <a href="https://profiles.wordpress.org/jsternberg">jsternberg</a>, <a href="https://profiles.wordpress.org/juanfra">Juanfra Aldasoro</a>, <a href="https://profiles.wordpress.org/juhise">Juhi Saxena</a>, <a href="https://profiles.wordpress.org/julesaus">julesaus</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/khag7">Kevin Hagerty</a>, <a href="https://profiles.wordpress.org/ixkaito">Kite</a>, <a href="https://profiles.wordpress.org/kjbenk">kjbenk</a>, <a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/kurtpayne">Kurt Payne</a>, <a href="https://profiles.wordpress.org/offereins">Laurens Offereins</a>, <a href="https://profiles.wordpress.org/lukecavanagh">Luke Cavanagh</a>, <a href="https://profiles.wordpress.org/latz">Lutz Schröer</a>, <a href="https://profiles.wordpress.org/mpol">Marcel Pol</a>, <a href="https://profiles.wordpress.org/clorith">Marius L. J. (Clorith)</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/mapk">Mark Uraine</a>, <a href="https://profiles.wordpress.org/martinkrcho">martin.krcho</a>, <a href="https://profiles.wordpress.org/mattmiklic">Matt Miklic</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/borkweb">Matthew Batchelder</a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/wzislam">Mayeenul Islam</a>, <a href="https://profiles.wordpress.org/mdwheele">mdwheele</a>, <a href="https://profiles.wordpress.org/medariox">medariox</a>, <a href="https://profiles.wordpress.org/mehulkaklotar">Mehul Kaklotar</a>, <a href="https://profiles.wordpress.org/meitar">Meitar</a>, <a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/roseapplemedia">Michael</a>, <a href="https://profiles.wordpress.org/michaelarestad">Michael Arestad</a>, <a href="https://profiles.wordpress.org/michael-arestad">Michael Arestad</a>, <a href="https://profiles.wordpress.org/michaelbeil">Michael Beil</a>, <a href="https://profiles.wordpress.org/stuporglue">Michael Moore</a>, <a href="https://profiles.wordpress.org/mbijon">Mike Bijon</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mikeschroder">Mike Schroder</a>, <a href="https://profiles.wordpress.org/dimadin">Milan Dinić</a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/mt8biz">moto hachi ( mt8.biz )</a>, <a href="https://profiles.wordpress.org/m_uysl">Mustafa Uysal</a>, <a href="https://profiles.wordpress.org/nicholas_io">Nícholas André</a>, <a href="https://profiles.wordpress.org/nextendweb">Nextendweb</a>, <a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nikschavan">Nikhil Chavan</a>, <a href="https://profiles.wordpress.org/rabmalin">Nilambar Sharma</a>, <a href="https://profiles.wordpress.org/ninos-ego">Ninos</a>, <a href="https://profiles.wordpress.org/alleynoah">Noah</a>, <a href="https://profiles.wordpress.org/noahsilverstein">noahsilverstein</a>, <a href="https://profiles.wordpress.org/odysseygate">odyssey</a>, <a href="https://profiles.wordpress.org/ojrask">ojrask</a>, <a href="https://profiles.wordpress.org/olarmarius">Olar Marius</a>, <a href="https://profiles.wordpress.org/ovann86">ovann86</a>, <a href="https://profiles.wordpress.org/pansotdev">pansotdev</a>, <a href="https://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="https://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="https://profiles.wordpress.org/bassgang">Paul Vincent Beigang</a>, <a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/pcarvalho">pcarvalho</a>, <a href="https://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>, <a href="https://profiles.wordpress.org/peterrknight">PeterRKnight</a>, <a href="https://profiles.wordpress.org/walbo">Petter Walbø Johnsgård</a>, <a href="https://profiles.wordpress.org/petya">Petya Raykovska</a>, <a href="https://profiles.wordpress.org/wizzard_">Pieter</a>, <a href="https://profiles.wordpress.org/pollett">Pollett</a>, <a href="https://profiles.wordpress.org/postpostmodern">postpostmodern</a>, <a href="https://profiles.wordpress.org/presskopp">Presskopp</a>, <a href="https://profiles.wordpress.org/prettyboymp">prettyboymp</a>, <a href="https://profiles.wordpress.org/r-a-y">r-a-y</a>, <a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="https://profiles.wordpress.org/rafaelangeline">rafaelangeline</a>, <a href="https://profiles.wordpress.org/zetaraffix">raffaella isidori</a>, <a href="https://profiles.wordpress.org/rahulsprajapati">Rahul Prajapati</a>, <a href="https://profiles.wordpress.org/ramiy">Rami Yushuvaev</a>, <a href="https://profiles.wordpress.org/rianrietveld">Rian Rietveld </a>, <a href="https://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="https://profiles.wordpress.org/rpayne7264">Robert D Payne</a>, <a href="https://profiles.wordpress.org/littlerchicken">Robin Cornett</a>, <a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="https://profiles.wordpress.org/ronalfy">Ronald Huereca</a>, <a href="https://profiles.wordpress.org/ruudjoyo">Ruud Laan</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/welcher">Ryan Welcher</a>, <a href="https://profiles.wordpress.org/samantha-miller">Samantha Miller</a>, <a href="https://profiles.wordpress.org/solarissmoke">Samir Shah</a>, <a href="https://profiles.wordpress.org/rosso99">Sara Rosso</a>, <a href="https://profiles.wordpress.org/schlessera">schlessera</a>, <a href="https://profiles.wordpress.org/scottbasgaard">Scott Basgaard</a>, <a href="https://profiles.wordpress.org/sc0ttkclark">Scott Kingsley Clark</a>, <a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="https://profiles.wordpress.org/screamingdev">screamingdev</a>, <a href="https://profiles.wordpress.org/sebastianpisula">Sebastian Pisula</a>, <a href="https://profiles.wordpress.org/semil">semil</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shahpranaf">shahpranaf</a>, <a href="https://profiles.wordpress.org/sidati">Sidati</a>, <a href="https://profiles.wordpress.org/neverything">Silvan Hagen</a>, <a href="https://profiles.wordpress.org/simonvik">Simon Vikström</a>, <a href="https://profiles.wordpress.org/sirjonathan">sirjonathan</a>, <a href="https://profiles.wordpress.org/smerriman">smerriman</a>, <a href="https://profiles.wordpress.org/soean">Soeren Wrede</a>, <a href="https://profiles.wordpress.org/southp">southp</a>, <a href="https://profiles.wordpress.org/metodiew">Stanko Metodiev</a>, <a href="https://profiles.wordpress.org/stephdau">Stephane Daury (stephdau)</a>, <a href="https://profiles.wordpress.org/coderste">Stephen</a>, <a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="https://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="https://profiles.wordpress.org/stubgo">stubgo</a>, <a href="https://profiles.wordpress.org/sudar">Sudar Muthu</a>, <a href="https://profiles.wordpress.org/patilswapnilv">Swapnil V. Patil</a>, <a href="https://profiles.wordpress.org/tacoverdo">Taco Verdonschot</a>, <a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="https://profiles.wordpress.org/karmatosed">Tammie Lister</a>, <a href="https://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="https://profiles.wordpress.org/themiked">theMikeD</a>, <a href="https://profiles.wordpress.org/thomaswm">thomaswm</a>, <a href="https://profiles.wordpress.org/tfrommen">Thorsten Frommen</a>, <a href="https://profiles.wordpress.org/timothyblynjacobs">Timothy Jacobs</a>, <a href="https://profiles.wordpress.org/tloureiro">tloureiro</a>, <a href="https://profiles.wordpress.org/travisnorthcutt">Travis Northcutt</a>, <a href="https://profiles.wordpress.org/nmt90">Triet Minh</a>, <a href="https://profiles.wordpress.org/grapplerulrich">Ulrich</a>, <a href="https://profiles.wordpress.org/unyson">Unyson</a>, <a href="https://profiles.wordpress.org/szepeviktor">Viktor Szépe</a>, <a href="https://profiles.wordpress.org/vishalkakadiya">Vishal Kakadiya</a>, <a href="https://profiles.wordpress.org/vortfu">vortfu</a>, <a href="https://profiles.wordpress.org/svovaf">vovafeldman</a>, <a href="https://profiles.wordpress.org/websupporter">websupporter</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/wp_smith">wp_smith</a>, <a href="https://profiles.wordpress.org/wpfo">wpfo</a>, <a href="https://profiles.wordpress.org/xavivars">Xavi Ivars</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>, and <a href="https://profiles.wordpress.org/zakb8">zakb8</a>.
<p> </p>
<p>Special thanks go to <a href="https://jerrysarcastic.com/">Jerry Bates</a> for producing the release video and <a href="http://hugobaeta.com/">Hugo Baeta</a> for providing marketing graphics.</p>
<p>Finally, thanks to all the community translators who worked on WordPress 4.6. Their efforts make it possible to use WordPress 4.6 in 52 languages. The WordPress 4.6 release video has been captioned into 43 languages.</p>
<p>If you want to follow along or help out, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.7!</p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4444" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/08/pepper/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4444" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/08/pepper/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">4K+</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4444" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/08/pepper/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/08/pepper/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4444-582bb24bcd45f" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4444&origin=wordpress.org&obj_id=14607090-4444-582bb24bcd45f" data-name="like-post-frame-14607090-4444-582bb24bcd45f"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4444-582bb24bcd45f" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4444&origin=wordpress.org&obj_id=14607090-4444-582bb24bcd45f"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<h2 class="fancy"><a href="https://wordpress.org/news/2016/08/wordpress-4-6-rc2/">WordPress 4.6 RC2</a></h2>
<div class="meta">Posted August 11, 2016 by <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>. Filed under <a href="https://wordpress.org/news/category/development/" rel="category tag">Development</a>, <a href="https://wordpress.org/news/category/releases/" rel="category tag">Releases</a>. </div>
<div class="storycontent">
<p>The second release candidate for WordPress 4.6 is now available.</p>
<p>We’ve made over <a href="https://core.trac.wordpress.org/log/branches/4.6/src?action=stop_on_copy&mode=follow_copy&rev=38246&stop_rev=38170&limit=200&verbose=on&sfp_email=&sfph_mail=">30 changes</a> since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on <strong>Tuesday, August 16</strong>, but we need <em>your</em> help to get there.</p>
<p>If you haven’t tested 4.6 yet, now is the time!</p>
<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>
<p>To test WordPress 4.6, you can use the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin or you can <a href="https://wordpress.org/wordpress-4.6-RC2.zip">download the release candidate here</a> (zip).</p>
<p>For more information about what’s new in version 4.6, check out the <a href="https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/">Beta 1</a>, <a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/">Beta 2</a>, <a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/">Beta 3</a>, <a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/">Beta 4</a>, and <a href="https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/">RC 1</a> blog posts.</p>
<p>A few changes of note since the first release candidate:</p>
<ul>
<li>Support for custom HTTP methods and proxy authentication has been restored.</li>
<li>Various fixes for the streamlined updates, including better failure messages and error handling, basic back-compat styling for custom update notifications, and additional and standardized JavaScript events.</li>
<li>Unnecessary reference parameters have been removed from new multisite functions.</li>
<li>A compatibility issue with PHP 7.0.9 (and PHP 7.1) has been fixed.</li>
</ul>
<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.6 and update your plugin’s <em>Tested up to</em> version in the readme to 4.6. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we never want to break things.</p>
<p>Be sure to read the <a href="https://make.wordpress.org/core/2016/07/26/wordpress-4-6-field-guide/">in-depth field guide</a>, a post with all the developer-focused changes that take place under the hood.</p>
<p><strong>Translators</strong>, strings are now frozen, including the About Page, so you are clear to translate! <a href="https://translate.wordpress.org/projects/wp/dev">Help us translate WordPress into more than 100 languages!</a></p>
<p>Happy testing!</p>
<p><em>The verdict is in,</em><br>
<em>Can I haz all the features,</em><br>
<em>Your best WordPress yet.</em></p>
<p><img draggable="false" class="emoji" alt="🏳️🌈" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f3f3-fe0f-200d-1f308.svg"></p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4427" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/08/wordpress-4-6-rc2/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4427" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/08/wordpress-4-6-rc2/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">600</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4427" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/08/wordpress-4-6-rc2/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/08/wordpress-4-6-rc2/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4427-582bb24bd1aca" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4427&origin=wordpress.org&obj_id=14607090-4427-582bb24bd1aca" data-name="like-post-frame-14607090-4427-582bb24bd1aca"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4427-582bb24bd1aca" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4427&origin=wordpress.org&obj_id=14607090-4427-582bb24bd1aca"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<h2 class="fancy"><a href="https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/">WordPress 4.6 Release Candidate</a></h2>
<div class="meta">Posted July 27, 2016 by <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>. Filed under <a href="https://wordpress.org/news/category/development/" rel="category tag">Development</a>, <a href="https://wordpress.org/news/category/releases/" rel="category tag">Releases</a>. </div>
<div class="storycontent">
<p>The release candidate for WordPress 4.6 is now available.</p>
<p>We’ve made <a href="https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=38169&stop_rev=38124&limit=200&verbose=on">a few refinements</a> since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on <strong>Tuesday, August 16</strong>, but we need <em>your</em> help to get there.</p>
<p>If you haven’t tested 4.6 yet, now is the time!</p>
<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>
<p>To test WordPress 4.6, you can use the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin or you can <a href="https://wordpress.org/wordpress-4.6-RC1.zip">download the release candidate here</a> (zip).</p>
<p>For more information about what’s new in version 4.6, check out the <a href="https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/">Beta 1</a>, <a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/">Beta 2</a>, <a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/">Beta 3</a>, and <a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/">Beta 4</a> blog posts.</p>
<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.6 and update your plugin’s <em>Tested up to</em> version in the readme to 4.6. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we never want to break things.</p>
<p>Be sure to read the <a href="https://make.wordpress.org/core/2016/07/26/wordpress-4-6-field-guide/">in-depth field guide</a>, a post with all the developer-focused changes that take place under the hood.</p>
<p>Do you speak a language other than English? <a href="https://translate.wordpress.org/projects/wp/dev">Help us translate WordPress into more than 100 languages!</a></p>
<p>Happy testing!</p>
<p><em>Der Sommer ist da,</em><br>
<em>Zeit für ein neues Release.</em><br>
<em>Bald ist es soweit.</em></p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4416" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4416" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">821</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4416" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4416-582bb24bd3e89" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4416&origin=wordpress.org&obj_id=14607090-4416-582bb24bd3e89" data-name="like-post-frame-14607090-4416-582bb24bd3e89"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4416-582bb24bd3e89" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4416&origin=wordpress.org&obj_id=14607090-4416-582bb24bd3e89"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<h2 class="fancy"><a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/">WordPress 4.6 Beta 4</a></h2>
<div class="meta">Posted July 20, 2016 by <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>. Filed under <a href="https://wordpress.org/news/category/development/" rel="category tag">Development</a>, <a href="https://wordpress.org/news/category/releases/" rel="category tag">Releases</a>. </div>
<div class="storycontent">
<p>WordPress 4.6 Beta 4 is now available!</p>
<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.6-beta4.zip">download the beta here</a> (zip).</p>
<p>For more information on what’s new in 4.6, check out the <a href="https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/">Beta 1</a>, <a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/">Beta 2</a>, and <a href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/">Beta 3</a> blog posts, along with <a href="https://make.wordpress.org/core/tag/4-6+dev-notes/">in-depth field guides</a>. This is the final <a href="https://make.wordpress.org/core/version-4-6-project-schedule/">planned beta</a> of WordPress 4.6, with a release candidate scheduled for next week.</p>
<p>Some of the fixes in Beta 4 include:</p>
<ul>
<li><strong>Media</strong>: <code>alt</code> attributes are now always added to images inserted from URLs (<a href="https://core.trac.wordpress.org/ticket/36735">#36735</a>).</li>
<li>Object subtype handling has been removed from <code>register_meta()</code>. Details about this change are explained in <a href="https://make.wordpress.org/core/2016/07/20/additional-register_meta-changes-in-4-6/">a post for developers</a>.</li>
<li><strong>Resource hints</strong> are now limited to enqueued assets (<a href="https://core.trac.wordpress.org/ticket/37385">#37385</a>).</li>
<li>A regression with query alterations introduced by the new <code>WP_Term_Query</code> has been fixed (<a href="https://core.trac.wordpress.org/ticket/37378">#37378</a>).</li>
<li>The Ajax searches for <strong>installed and new plugins</strong> have been enhanced to fix several accessibility issues and to improve compatibility with older browsers. (<a href="https://core.trac.wordpress.org/ticket/37233">#37233</a>, <a href="https://core.trac.wordpress.org/ticket/37373">#37373</a>)</li>
<li>The media player <strong>MediaElement.js</strong> has been updated to 2.22.0 to fix YouTube video embeds (<a href="https://core.trac.wordpress.org/ticket/37363">#37363</a>).</li>
<li>The <strong>Import screen</strong> was overhauled, improving accessibility and making it much easier to install and run an importer (<a href="https://core.trac.wordpress.org/ticket/35191">#35191</a>).</li>
<li><strong>Emoji support</strong> has been updated to include all of the latest Unicode 9 emoji characters (<a href="https://core.trac.wordpress.org/ticket/37361">#37361</a>). <img draggable="false" class="emoji" alt="🤠" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f920.svg"><img draggable="false" class="emoji" alt="🥕" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f955.svg"><img draggable="false" class="emoji" alt="🥓" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f953.svg"><img draggable="false" class="emoji" alt="🕺🏽" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f57a-1f3fd.svg"><img draggable="false" class="emoji" alt="🤝🏿" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f91d-1f3ff.svg"></li>
<li><strong>Various bug fixes</strong>. We’ve made <a href="https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=38123&stop_rev=38060&limit=200&verbose=on">more than 60 changes</a> during the last week.</li>
</ul>
<p>Do you speak a language other than English? <a href="https://translate.wordpress.org/projects/wp/dev">Help us translate WordPress into more than 100 languages!</a></p>
<p>If you think you’ve found a bug, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href="https://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.6">everything we’ve fixed</a>.</p>
<p>Happy testing!</p>
<p><em>This is Beta 4,</em><br>
<em>The last before RC 1.</em><br>
<em>Please test all the things.</em></p>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow" data-shared="sharing-twitter-4396" class="share-twitter sd-button share-icon" href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/?share=twitter&nb=1" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow" data-shared="sharing-facebook-4396" class="share-facebook sd-button share-icon" href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/?share=facebook&nb=1" target="_blank" title="Click to share on Facebook"><span>Facebook<span class="share-count">505</span></span></a></li><li class="share-google-plus-1"><a rel="nofollow" data-shared="sharing-google-4396" class="share-google-plus-1 sd-button share-icon" href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/?share=google-plus-1&nb=1" target="_blank" title="Click to share on Google+"><span>Google</span></a></li><li class="share-email share-service-visible"><a rel="nofollow" data-shared="" class="share-email sd-button share-icon" href="https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/?share=email&nb=1" target="_blank" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div><div class="sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-loaded" id="like-post-wrapper-14607090-4396-582bb24bd67e9" data-src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4396&origin=wordpress.org&obj_id=14607090-4396-582bb24bd67e9" data-name="like-post-frame-14607090-4396-582bb24bd67e9"><h3 class="sd-title">Like this:</h3><div class="likes-widget-placeholder post-likes-widget-placeholder" style="height: 55px; display: none;"><span class="button"><span>Like</span></span> <span class="loading">Loading...</span></div><div class="post-likes-widget jetpack-likes-widget" name="like-post-frame-14607090-4396-582bb24bd67e9" height="55px" width="100%" frameborder="0" src="//widgets.wp.com/likes/#blog_id=14607090&post_id=4396&origin=wordpress.org&obj_id=14607090-4396-582bb24bd67e9"></div><span class="sd-text-color"></span><a class="sd-link-color"></a></div></div>
<a href="https://wordpress.org/news/page/2/">Older Posts »</a>
</div>
<div class="col-3">
<div class="blog-categories">
<h4>See Also:</h4>
<p>For more WordPress news, check out the <a href="http://planet.wordpress.org/">WordPress Planet</a>.</p>
<p>There’s also a <a href="https://make.wordpress.org/core/">development P2 blog</a>.</p>
<p>To see how active the project is <a href="https://core.trac.wordpress.org/timeline">check out our Trac timeline</a>, it often has 20–30 updates per day.</p>
<h4>Categories</h4>
<ul>
<li class="cat-item cat-item-14"><a href="https://wordpress.org/news/category/releases/">Releases</a> (199)
</li>
<li class="cat-item cat-item-5"><a href="https://wordpress.org/news/category/development/">Development</a> (190)
</li>
<li class="cat-item cat-item-15"><a href="https://wordpress.org/news/category/security/">Security</a> (44)
</li>
<li class="cat-item cat-item-3"><a href="https://wordpress.org/news/category/community/">Community</a> (43)
</li>
<li class="cat-item cat-item-12"><a href="https://wordpress.org/news/category/meta/">Meta</a> (43)
</li>
<li class="cat-item cat-item-7"><a href="https://wordpress.org/news/category/events/">Events</a> (33)
</li>
<li class="cat-item cat-item-18"><a href="https://wordpress.org/news/category/testing/">Testing</a> (23)
</li>
<li class="cat-item cat-item-22"><a href="https://wordpress.org/news/category/wordcamp/">WordCamp</a> (20)
</li>
<li class="cat-item cat-item-10"><a href="https://wordpress.org/news/category/general/">General</a> (18)
</li>
<li class="cat-item cat-item-6"><a href="https://wordpress.org/news/category/documentation/">Documentation</a> (15)
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="pagebody">
<div class="wrapper">
<div class="col-12 filter-bar">
<div class="wp-filter">
<ul class="filter-links">
<li class="plugin-install-search"><a href="https://wordpress.org/plugins/search.php" class="current">Search Results</a> </li>
<li class="plugin-install-featured"><a href="/plugins/" class="">Featured</a> </li>
<li class="plugin-install-popular"><a href="https://wordpress.org/plugins/browse/popular/" class="">Popular</a> </li>
<li class="plugin-install-favorites"><a href="https://wordpress.org/plugins/browse/favorites/" class="">Favorites</a></li>
<li class="plugin-install-beta"><a href="https://wordpress.org/plugins/browse/beta/" class="">Beta Testing</a></li>
<li class="plugin-developer"><a href="/plugins/about/">Developers</a></li>
</ul>
<form class="search-form search-plugins" method="get" action="https://wordpress.org/plugins/search.php">
<select name="type" id="typeselection">
<option value="term">Keyword</option>
<option value="author">Author</option>
<option value="tag" selected="selected">Tag</option>
</select>
<label><span class="screen-reader-text">Search Plugins</span>
<input type="search" name="q" value="widget" class="wp-filter-search" placeholder="Search plugins...">
</label>
<input type="submit" name="" id="search-submit" class="button screen-reader-text" value="Search Plugins">
</form>
</div>
</div>
</div>
<div class="wrapper">
<div class="col-12" itemscope="" itemtype="http://schema.org/SoftwareApplication">
<div class="nav top">
<span class="page-numbers current" title="Page 1">1</span><a class="page-numbers" href="/plugins/tags/widget/page/2" title="Page 2">2</a><span class="page-numbers dots">…</span><a class="page-numbers" href="/plugins/tags/widget/page/178" title="Page 178">178</a><a class="next page-numbers" href="/plugins/tags/widget/page/2" title="Next page">Next »</a> </div>
<div class="plugin-group">
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/siteorigin-panels/" class="plugin-icon"><style type="text/css">#plugin-icon-siteorigin-panels { width:128px; height:128px; background-image: url(//ps.w.org/siteorigin-panels/assets/icon-128x128.png?rev=1395033); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-siteorigin-panels { background-image: url(//ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1395033); } }</style><div class="plugin-icon" id="plugin-icon-siteorigin-panels" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/siteorigin-panels/">Page Builder by SiteOrigin</a></h4>
</div>
<div class="desc column-description">
<p>Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/gpriday/">Greg Priday</a> and braam-genis.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> <span class="num-ratings" title="Rating based on 323 reviews">(323)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-11-7">
1 week ago </span>
</div>
<div class="column-installs">
1+ million active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/black-studio-tinymce-widget/" class="plugin-icon"><style type="text/css">#plugin-icon-black-studio-tinymce-widget { width:128px; height:128px; background-image: url(//ps.w.org/black-studio-tinymce-widget/assets/icon-128x128.png?rev=1002774); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-black-studio-tinymce-widget { background-image: url(//ps.w.org/black-studio-tinymce-widget/assets/icon-256x256.png?rev=1002774); } }</style><div class="plugin-icon" id="plugin-icon-black-studio-tinymce-widget" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/black-studio-tinymce-widget/">Black Studio TinyMCE Widget</a></h4>
</div>
<div class="desc column-description">
<p>The visual editor widget for WordPress.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/black-studio/">Black Studio</a>, <a href="//profiles.wordpress.org/marcochiesi/">Marco Chiesi</a>, and <a href="//profiles.wordpress.org/thedarkmist/">Francesco Canovi</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> <span class="num-ratings" title="Rating based on 155 reviews">(155)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-9-23">
2 months ago </span>
</div>
<div class="column-installs">
800,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/so-widgets-bundle/" class="plugin-icon"><style type="text/css">#plugin-icon-so-widgets-bundle { width:128px; height:128px; background-image: url(//ps.w.org/so-widgets-bundle/assets/icon-128x128.png?rev=1044942); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-so-widgets-bundle { background-image: url(//ps.w.org/so-widgets-bundle/assets/icon-256x256.png?rev=1044942); } }</style><div class="plugin-icon" id="plugin-icon-so-widgets-bundle" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/so-widgets-bundle/">SiteOrigin Widgets Bundle</a></h4>
</div>
<div class="desc column-description">
<p>A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/gpriday/">Greg Priday</a> and braam-genis.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> <span class="num-ratings" title="Rating based on 63 reviews">(63)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-11-10">
6 days ago </span>
</div>
<div class="column-installs">
700,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/mailchimp-for-wp/" class="plugin-icon"><style type="text/css">#plugin-icon-mailchimp-for-wp { width:128px; height:128px; background-image: url(//ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-mailchimp-for-wp { background-image: url(//ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577); } }</style><div class="plugin-icon" id="plugin-icon-mailchimp-for-wp" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/mailchimp-for-wp/">MailChimp for WordPress</a></h4>
</div>
<div class="desc column-description">
<p>MailChimp for WordPress, the absolute best. Subscribe your WordPress site visitors to your MailChimp lists, with ease.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/ibericode/">Ibericode</a>, <a href="//profiles.wordpress.org/dvankooten/">Danny van Kooten</a>, <a href="//profiles.wordpress.org/hchouhan/">Harish Chouhan</a>, and <a href="//profiles.wordpress.org/lapzor/">Lap</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> <span class="num-ratings" title="Rating based on 605 reviews">(605)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-10-25">
3 weeks ago </span>
</div>
<div class="column-installs">
600,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="site-container"><header class="site-header" itemscope="" itemtype="http://schema.org/WPHeader"><div class="wrap"><div class="title-area"><p class="site-title" itemprop="headline"><a href="http://www.photocrati.com/">Photocrati</a></p><p class="site-description" itemprop="description">WordPress Themes for Photographers</p></div><div class="widget-area header-widget-area"><section id="nav_menu-3" class="widget widget_nav_menu"><div class="widget-wrap"><nav class="nav-header" itemscope="" itemtype="http://schema.org/SiteNavigationElement"><div class="responsive-menu-icon"></div><ul id="menu-new-main" class="menu genesis-nav-menu responsive-menu"><li id="menu-item-20319" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20319"><a href="http://www.photocrati.com/photography-wordpress-themes/" itemprop="url"><span itemprop="name">Theme Features</span></a></li>
<li id="menu-item-20320" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-12909 current_page_item menu-item-20320"><a href="http://www.photocrati.com/demos/" itemprop="url"><span itemprop="name">Demos</span></a></li>
<li id="menu-item-20322" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-has-children menu-item-20322"><a href="http://www.photocrati.com/#pricing" itemprop="url"><span itemprop="name">Pricing</span></a>
<ul class="sub-menu">
<li id="menu-item-20338" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20338"><a href="https://members.photocrati.com/checkout/" itemprop="url"><span itemprop="name">Buy Now</span></a></li>
</ul>
</li>
<li id="menu-item-20321" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20321"><a href="http://www.photocrati.com/blog/" itemprop="url"><span itemprop="name">Blog</span></a></li>
<li id="menu-item-20323" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20323"><a href="http://members.photocrati.com" itemprop="url"><span itemprop="name">Members</span></a></li>
</ul></nav></div></section>
</div></div></header><div class="site-inner"><div class="content-sidebar-wrap"><main class="content"><article class="post-12909 page type-page status-publish entry" itemscope="" itemtype="http://schema.org/CreativeWork"><header class="entry-header"><h1 class="entry-title" itemprop="headline">Demos: 60+ Stunning, Built-In Designs</h1>
</header><div class="entry-content" itemprop="text"><div class="share-before share-filled share-small" id="share-before-12909"><div class="googlePlus sharrre" id="googleplus-before-12909" data-url="http://www.photocrati.com/demos/" data-urlalt="http://www.photocrati.com/?p=12909" data-text="Demos: 60+ Stunning, Built-In Designs" data-title="Share"><div class="box"><a class="count" href="#">14</a><a class="share" href="#">Share</a></div></div><div class="facebook sharrre" id="facebook-before-12909" data-url="http://www.photocrati.com/demos/" data-urlalt="http://www.photocrati.com/?p=12909" data-text="Demos: 60+ Stunning, Built-In Designs" data-title="Share"><div class="box"><a class="count" href="#">42</a><a class="share" href="#">Share</a></div></div><div class="twitter sharrre" id="twitter-before-12909" data-url="http://www.photocrati.com/demos/" data-urlalt="http://www.photocrati.com/?p=12909" data-text="Demos: 60+ Stunning, Built-In Designs" data-title="Tweet"><div class="box no-count"><a class="count" href="#"></a><a class="share" href="#">Tweet</a></div></div><div class="pinterest sharrre" id="pinterest-before-12909" data-url="http://www.photocrati.com/demos/" data-urlalt="http://www.photocrati.com/?p=12909" data-text="Demos: 60+ Stunning, Built-In Designs" data-title="Pin"><div class="box"><a class="count" href="#">102</a><a class="share" href="#">Pin</a></div></div></div>
<p style="text-align: center;"><span style="color: #888888;">Endless design possibilities. Over 60 starting designs. Plus customize, save and share your own designs. Switch designs with one click.</span></p>
<p></p><center><br>
<a class="button" href="https://members.photocrati.com/checkout/"> Buy Photocrati Now </a><br>
</center><p></p>
<div class="demodivleft"><a href="http://transparency.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/transparency.jpg" alt="Transparency WordPress Themes"></a></div>
<div class="demodivright"><a href="http://transparencywhite.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/transparency-white.jpg" alt="Transparency White WordPress Themes"></a></div>
<div class="demodivleft"><a href="http://overexposed.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/overexposed.jpg" alt="Overexposed WordPress Theme"></a></div>
<div class="demodivright"><a href="http://overexposedwhite.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/overexposed-white.jpg" alt=""></a></div>
<div class="demodivleft"><a href="http://underexposed.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/underexposed.jpg" alt="Underexposed WordPress Theme"></a></div>
<div class="demodivright"><a href="http://underexposedwhite.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/underexposed-white.jpg" alt="Underexposed White WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://sidewinder.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/sidewinder.jpg" alt="Sidewinder WordPress Theme"></a></div>
<div class="demodivright"><a href="http://sidewinderdark.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/sidewinder-dark.jpg" alt="Sidewinder Dark WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://sidewinderfull.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/sidewinder-full.jpg" alt="Sidewinder Full WordPress Themes"></a></div>
<div class="demodivright"><a href="http://contrast.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/contrast.jpg" alt="Contrast WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://contrastdark.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/contrast-dark.jpg" alt="Contrast Dark WordPress Theme"></a></div>
<div class="demodivright"><a href="http://contrastyellow.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/contrast-yellow.jpg" alt="Contrast Yellow WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://contrastred.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/contrast-red-2.jpg" alt="Contrast Red WordPress Theme"></a></div>
<div class="demodivright"><a href="http://barebulb.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/bare-bulb.jpg" alt="Bare Bulb WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://barebulbbarndoors.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/bare-bulb-barndoors.jpg" alt="Bare Bulb Barn Doors WordPress Theme"></a></div>
<div class="demodivright"><a href="http://scout.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/scout.jpg" alt="Scout WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://streetside.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/streetside.jpg" alt="Streetside WordPress Theme"></a></div>
<div class="demodivright"><a href="http://texture.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/texture.jpg" alt="Texture WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://texturegreen.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/texture-green.jpg" alt="Texture Green WordPress Theme"></a></div>
<div class="demodivright"><a href="http://textureblue.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/texture-blue.jpg" alt="Texture Blue WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://city.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/city.jpg" alt="City WordPress Theme"></a></div>
<div class="demodivright"><a href="http://bold.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/bold.jpg" alt="Bold WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://street.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/street.jpg" alt="Street WordPress Theme"></a></div>
<div class="demodivright"><a href="http://obscura.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/obscura.jpg" alt="Obscura WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://print.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/print.jpg" alt="Print WordPress Theme"></a></div>
<div class="demodivright"><a href="http://autofocus.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/autofocus.jpg" alt="Autofocus WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://autofocusblue.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/autofocusblue.jpg" alt="Autofocus Blue WordPress Theme"></a></div>
<div class="demodivright"><a href="http://autofocusyellow.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/autofocusyellow.jpg" alt="Autofocus Yellow WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://autofocusblackblue.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/autofocusblackblue.jpg" alt="Autofocus Black Blue WordPress Theme"></a></div>
<div class="demodivright"><a href="http://autofocusblackyellow.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/autofocusblackyellow.jpg" alt="Autofocus Black Yellow WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://backlightblue.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/backlightblue.jpg" alt="Backlight Blue WordPress Theme"></a></div>
<div class="demodivright"><a href="http://backlightyellow.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/backlightyellow.jpg" alt="Backlight Yellow WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://backlightgreen.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/backlightgreen.jpg" alt="Backlight Green WordPress Theme"></a></div>
<div class="demodivright"><a href="http://catchlightblue.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/catchlightblue.jpg" alt="Catchlight Blue WordPress Theme"></a></div>
<div class="demodivleft"><a href="http://catchlight.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/catchlight.jpg" alt="Catchlight WordPress Theme"></a></div>
<div class="demodivright"><a href="http://bokeh3.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/bokeh3.jpg" alt="Bokeh 3"></a></div>
<div class="demodivleft"><a href="http://lightbox3.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/lightbox3.jpg" alt="Lightbox 3"></a></div>
<div class="demodivright"><a href="http://lightbox2.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/lightbox2.jpg" alt="Lightbox 2"></a></div>
<div class="demodivleft"><a href="http://10stop.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/10Stop.jpg" alt="10 Stop 1"></a></div>
<div class="demodivright"><a href="http://polarized.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/polarized.jpg" alt="Polarized"></a></div>
<div class="demodivleft"><a href="http://polarized3.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/polarized3.jpg" alt="Polarized 3"></a></div>
<div class="demodivright"><a href="http://darkroom3.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/darkroom3.jpg" alt="Darkroom 3"></a></div>
<div class="demodivleft"><a href="http://darkroom2.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/darkroom2.jpg" alt="Darkroom 2"></a></div>
<div class="demodivright"><a href="http://rangefinder.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/rangefinder.jpg" alt="Rangefinder"></a></div>
<div class="demodivleft"><a href="http://fstop3.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/fstop3.jpg" alt="Print"></a></div>
<div class="demodivright"><a href="http://wideangle3.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/wideangle3.jpg" alt="Wide Angle 3"></a></div>
<div class="demodivleft"><a href="http://wideangle2.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/wideangle2.jpg" alt="Wide Angle 2"></a></div>
<div class="demodivright"><a href="http://emulsion3.photocrati.com/" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/emulsion3.jpg" alt="Emulsion 3"></a></div>
<div class="demodivleft"><a href="http://filter2.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/filter2.jpg" alt="Filter 2"></a></div>
<div class="demodivright"><a href="http://silverhalide3.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/silverhalide3.jpg" alt="Silver Halide 3"></a></div>
<div class="demodivleft"><a href="http://exposure.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/exposure.jpg" alt="Exposure"></a></div>
<div class="demodivright"><a href="http://signature3.photocrati.com" target="_blank"><img class="demoimage" src="http://www.photocrati.com/wp-content/uploads/screenshots/signature.jpg" alt="Signature 3"></a></div>
<div style="clear: both;"></div>
<p> </p>
<p></p><center><a class="button" href="https://members.photocrati.com/checkout/"> Buy Photocrati Now </a></center> <p></p>
<div class="share-after share-filled share-small" id="share-after-12909"><div class="googlePlus sharrre" id="googleplus-after-12909" data-url="http://www.photocrati.com/demos/" data-urlalt="http://www.photocrati.com/?p=12909" data-text="Demos: 60+ Stunning, Built-In Designs" data-title="Share"><div class="box"><a class="count" href="#">14</a><a class="share" href="#">Share</a></div></div><div class="facebook sharrre" id="facebook-after-12909" data-url="http://www.photocrati.com/demos/" data-urlalt="http://www.photocrati.com/?p=12909" data-text="Demos: 60+ Stunning, Built-In Designs" data-title="Share"><div class="box"><a class="count" href="#">42</a><a class="share" href="#">Share</a></div></div><div class="twitter sharrre" id="twitter-after-12909" data-url="http://www.photocrati.com/demos/" data-urlalt="http://www.photocrati.com/?p=12909" data-text="Demos: 60+ Stunning, Built-In Designs" data-title="Tweet"><div class="box no-count"><a class="count" href="#"></a><a class="share" href="#">Tweet</a></div></div><div class="pinterest sharrre" id="pinterest-after-12909" data-url="http://www.photocrati.com/demos/" data-urlalt="http://www.photocrati.com/?p=12909" data-text="Demos: 60+ Stunning, Built-In Designs" data-title="Pin"><div class="box"><a class="count" href="#">102</a><a class="share" href="#">Pin</a></div></div></div>
</div></article></main></div></div><div class="footer-widgets"><div class="wrap"><div class="footer-widgets-1 widget-area"><section id="text-11" class="widget widget_text"><div class="widget-wrap"> <div class="textwidget"><strong>CREATE A STUNNING PHOTOGRAPHY SITE TODAY:<br>
<a class="button" href="/photography-wordpress-themes/"> Features </a> <a class="button" href="/demos/"> Demos </a> <a class="button" href="https://members.photocrati.com/checkout/"> Buy Now </a>
<br></strong></div><strong>
</strong></div></section><strong>
</strong></div></div></div><footer class="site-footer" itemscope="" itemtype="http://schema.org/WPFooter"><div class="wrap"><nav class="nav-secondary" itemscope="" itemtype="http://schema.org/SiteNavigationElement"><div class="wrap"><ul id="menu-footer" class="menu genesis-nav-menu menu-secondary"><li id="menu-item-20764" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20764"><strong><a href="http://www.photocrati.com/about/" itemprop="url"><span itemprop="name">About Photocrati</span></a></strong></li><strong>
<li id="menu-item-21241" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21241"><a target="_blank" href="https://www.imagely.com/team/" itemprop="url"><span itemprop="name">The Team</span></a></li>
<li id="menu-item-20763" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20763"><a href="http://www.photocrati.com/testimonials/" itemprop="url"><span itemprop="name">The Love</span></a></li>
<li id="menu-item-20761" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20761"><a href="http://www.photocrati.com/member-area/" itemprop="url"><span itemprop="name">Members</span></a></li>
<li id="menu-item-21371" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21371"><a href="http://affiliates.photocrati.com/" itemprop="url"><span itemprop="name">Affiliates</span></a></li>
</strong></ul></div></nav><p><strong>Copyright © 2016 Photocrati Media • Powered by WordPress | <a href="/terms-conditions/">Terms & Conditions</a> | <a href="/privacy-policy/">Privacy Policy</a> | <a href="/contact/">CONTACT US</a></strong></p></div></footer></div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/breadcrumb-navxt/" class="plugin-icon"><style type="text/css">#plugin-icon-breadcrumb-navxt { width:128px; height:128px; background-image: url(//ps.w.org/breadcrumb-navxt/assets/icon-128x128.png?rev=1058520); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-breadcrumb-navxt { background-image: url(//ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=1058520); } }</style><div class="plugin-icon" id="plugin-icon-breadcrumb-navxt" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/breadcrumb-navxt/">Breadcrumb NavXT</a></h4>
</div>
<div class="desc column-description">
<p>Adds breadcrumb navigation showing the visitor's path to their current location.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/mtekk/">John Havlik</a> and <a href="//profiles.wordpress.org/hakre/">hakre</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-half"></span></div> <span class="num-ratings" title="Rating based on 94 reviews">(94)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-9-30">
2 months ago </span>
</div>
<div class="column-installs">
600,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/image-widget/" class="plugin-icon"><style type="text/css">#plugin-icon-image-widget { width:128px; height:128px; background-image: url(//ps.w.org/image-widget/assets/icon-128x128.jpg?rev=985707); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-image-widget { background-image: url(//ps.w.org/image-widget/assets/icon-256x256.jpg?rev=985707); } }</style><div class="plugin-icon" id="plugin-icon-image-widget" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/image-widget/">Image Widget</a></h4>
</div>
<div class="desc column-description">
<p>A simple image widget that uses the native WordPress media manager to add image widgets to your site.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/moderntribe/">Modern Tribe, Inc.</a>, <a href="//profiles.wordpress.org/peterchester/">Peter Chester</a>, <a href="//profiles.wordpress.org/borkweb/">Matthew Batchelder</a>, and <a href="//profiles.wordpress.org/zbtirrell/">Zach Tirrell</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> <span class="num-ratings" title="Rating based on 273 reviews">(273)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-2-29">
9 months ago </span>
</div>
<div class="column-installs">
500,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.4.5</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/the-events-calendar/" class="plugin-icon"><style type="text/css">#plugin-icon-the-events-calendar { width:128px; height:128px; background-image: url(//ps.w.org/the-events-calendar/assets/icon-128x128.png?rev=1449388); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-the-events-calendar { background-image: url(//ps.w.org/the-events-calendar/assets/icon-256x256.png?rev=1449388); } }</style><div class="plugin-icon" id="plugin-icon-the-events-calendar" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/the-events-calendar/">The Events Calendar</a></h4>
</div>
<div class="desc column-description">
<p>The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/moderntribe/">Modern Tribe, Inc.</a>, <a href="//profiles.wordpress.org/borkweb/">Matthew Batchelder</a>, <a href="//profiles.wordpress.org/zbtirrell/">Zach Tirrell</a>, <a href="//profiles.wordpress.org/barryhughes-1/">Barry</a>, <a href="//profiles.wordpress.org/bordoni/">Gustavo Bordoni</a>, and others.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-half"></span></div> <span class="num-ratings" title="Rating based on 1,307 reviews">(1,307)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-11-2">
2 weeks ago </span>
</div>
<div class="column-installs">
400,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/google-analyticator/" class="plugin-icon"><style type="text/css">#plugin-icon-google-analyticator { width:128px; height:128px; background-image: url(//ps.w.org/google-analyticator/assets/icon-128x128.png?rev=1165890); background-size:128px 128px; }</style><div class="plugin-icon" id="plugin-icon-google-analyticator" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/google-analyticator/">Google Analyticator</a></h4>
</div>
<div class="desc column-description">
<p>Easily view your Google Analytics and real-time statistics inside WordPress! Makes it super simple to add your tracking code too.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/noahkagan/">noahkagan</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="3 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-half"></span><span class="dashicons dashicons-star-empty"></span></div> <span class="num-ratings" title="Rating based on 102 reviews">(102)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-9-30">
2 months ago </span>
</div>
<div class="column-installs">
300,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/wysija-newsletters/" class="plugin-icon"><style type="text/css">#plugin-icon-wysija-newsletters { width:128px; height:128px; background-image: url(//ps.w.org/wysija-newsletters/assets/icon-128x128.png?rev=1390234); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-wysija-newsletters { background-image: url(//ps.w.org/wysija-newsletters/assets/icon-256x256.png?rev=1390234); } }</style><div class="plugin-icon" id="plugin-icon-wysija-newsletters" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/wysija-newsletters/">MailPoet Newsletters</a></h4>
</div>
<div class="desc column-description">
<p>Send newsletters post notifications or autoresponders from WordPress easily, and beautifully. Start to capture subscribers with our widget now.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/wysija/">MailPoet</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> <span class="num-ratings" title="Rating based on 2,450 reviews">(2,450)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-8-18">
3 months ago </span>
</div>
<div class="column-installs">
300,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.5.4</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/add-to-any/" class="plugin-icon"><style type="text/css">#plugin-icon-add-to-any { width:128px; height:128px; background-image: url(//ps.w.org/add-to-any/assets/icon-128x128.png?rev=1333252); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-add-to-any { background-image: url(//ps.w.org/add-to-any/assets/icon-256x256.png?rev=1333252); } }</style><div class="plugin-icon" id="plugin-icon-add-to-any" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/add-to-any/">AddToAny Share Buttons</a></h4>
</div>
<div class="desc column-description">
<p>Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/micropat/">micropat</a> and addtoany.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-half"></span></div> <span class="num-ratings" title="Rating based on 494 reviews">(494)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-11-14">
1 day ago </span>
</div>
<div class="column-installs">
300,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.7</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/formidable/" class="plugin-icon"><style type="text/css">#plugin-icon-formidable { width:128px; height:128px; background-image: url(//ps.w.org/formidable/assets/icon-128x128.png?rev=1109774); background-size:128px 128px; }@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-formidable { background-image: url(//ps.w.org/formidable/assets/icon-256x256.png?rev=1109774); } }</style><div class="plugin-icon" id="plugin-icon-formidable" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/formidable/">Formidable Forms</a></h4>
</div>
<div class="desc column-description">
<p>Beautiful forms in 60 seconds. The WordPress form builder that enables you to create forms with a simple drag-and-drop interface and in-place editing.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/sswells/">Steph Wells</a>, <a href="//profiles.wordpress.org/srwells/">srwells</a>, and <a href="//profiles.wordpress.org/jamiewahlin/">jamie.wahlin</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-half"></span></div> <span class="num-ratings" title="Rating based on 158 reviews">(158)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-10-31">
2 weeks ago </span>
</div>
<div class="column-installs">
300,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/photo-gallery/" class="plugin-icon"><style type="text/css">#plugin-icon-photo-gallery { width:128px; height:128px; background-image: url(//ps.w.org/photo-gallery/assets/icon-128x128.png?rev=1508783); background-size:128px 128px; }</style><div class="plugin-icon" id="plugin-icon-photo-gallery" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/photo-gallery/">Gallery</a></h4>
</div>
<div class="desc column-description">
<p>Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/webdorado/">webdorado</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-half"></span></div> <span class="num-ratings" title="Rating based on 656 reviews">(656)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2016-11-8">
1 week ago </span>
</div>
<div class="column-installs">
300,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.6.1</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/widget-logic/" class="plugin-icon"><style type="text/css">#plugin-icon-widget-logic { width:128px; height:128px; background-image: url(//ps.w.org/widget-logic/assets/icon-128x128.png?rev=1133957); background-size:128px 128px; }</style><div class="plugin-icon" id="plugin-icon-widget-logic" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/widget-logic/">Widget Logic</a></h4>
</div>
<div class="desc column-description">
<p>Widget Logic lets you control on which pages widgets appear using WP's conditional tags. It also adds a 'widget_content' filter.</p>
<p class="authors"><cite>By: <a href="//profiles.wordpress.org/alanft/">alanft</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="4 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> <span class="num-ratings" title="Rating based on 134 reviews">(134)</span>
</div>
<div class="column-updated">
<strong>Last Updated:</strong> <span title="2015-2-16">
2 years ago </span>
</div>
<div class="column-installs">
300,000+ active installs </div>
<div class="column-compatibility">
<strong>Compatible up to:</strong>
<span class="compatibility">4.1.13</span>
</div>
</div>
</div>
<div class="plugin-card">
<div class="plugin-card-top">
<a href="https://wordpress.org/plugins/disqus-comment-system/" class="plugin-icon"><style type="text/css">@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { #plugin-icon-disqus-comment-system { background-image: url(//ps.w.org/disqus-comment-system/assets/icon-256x256.png?rev=1012448); } }#plugin-icon-disqus-comment-system { width:128px; height:128px; background-image: url(//ps.w.org/disqus-comment-system/assets/icon.svg?rev=1012448); background-size:128px 128px; }</style><div class="plugin-icon" id="plugin-icon-disqus-comment-system" style="float:left; margin: 3px 6px 6px 0px;"></div></a>
<div class="name column-name">
<h4><a href="https://wordpress.org/plugins/disqus-comment-system/">Disqus Comment System</a></h4>
</div>
<div class="desc column-description">
<p>The Disqus comment system replaces your WordPress comment system with your comments hosted and powered by Disqus.</p>
<p class="authors"><cite>By: disqus, <a href="//profiles.wordpress.org/alexkingorg/">Alex King</a>, <a href="//profiles.wordpress.org/crowdfavorite/">crowdfavorite</a>, <a href="//profiles.wordpress.org/zeeg/">zeeg</a>, <a href="//profiles.wordpress.org/tail/">tail</a>, <a href="//profiles.wordpress.org/thetylerhayes/">Tyler Hayes</a>, and <a href="//profiles.wordpress.org/ryanv12/">ryanv12</a>.</cite></p>
</div>
</div>
<div class="plugin-card-bottom">
<div class="vers column-rating">
<div class="wporg-ratings" title="3 out of 5 stars" style="color:#ffb900;"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-empty"></span><span class="dashicons dashicons-star-empty"></span></div> <span class="num-ratings" title="Rating based on 120 reviews">(120)</span>