Slide 1

Slide 1 text

Pressing On – 4.5 WordPress Singapore

Slide 2

Slide 2 text

[ 2 ] Jon Ang CTO & Co-founder of Wingz Communications @Kenshino WordPress • Core Component Maintainer • Support Team • Documentation Team • Theme Review Team • Community Team

Slide 3

Slide 3 text

What’s changed

Slide 4

Slide 4 text

JavaScript & CSS • Developers – jQuery, jQuery Migrate – Backbone – Underscore • Users – If your site breaks, it’s probably because of jQuery – look for theme & plugin updates [ 4 ]

Slide 5

Slide 5 text

Term Edit Page • Developers – Old link looks like this • example.com/wp-admin/edit- tags.php?action=edit&taxonomy=post_tag&tag_ID=127 – New link looks like this • example.com/wp-admin/term.php?tag_ID=123 – Fix: Your code just needs to check for get_current_screen() properly • Users – Does not affect [ 5 ]

Slide 6

Slide 6 text

Live Preview Selective Refresh [ 6 ] https://make.wordpress.org/c ore/2016/02/16/selective- refresh-in-the-customizer/

Slide 7

Slide 7 text

Live Preview • Device Based Preview [ 7 ] https://make.wordpress.org/c ore/2016/01/28/previewing- site-responsiveness-in-the- customizer/

Slide 8

Slide 8 text

Custom Theme Logos • Developers – You can add Custom Theme logos easily to the Customiser • Users – You can now expect newer themes from WordPress.org to support custom logos out of the box [ 8 ] function theme_prefix_setup() { add_theme_support( 'custom-logo' ); } add_action( 'after_setup_theme', 'theme_prefix_setup' );

Slide 9

Slide 9 text

Image Compression • Developer – Smaller file sizes especially apparently if you use add_image_size() a lot • Users – Smaller file sizes means faster download – Likely encourages people to stay a little while longer at your site – Site Speed is a signal for SEO, so Google might rank you a tiny, tiny, bit better [ 9 ]

Slide 10

Slide 10 text

Comment Template Fixes [ 10 ]

Slide 11

Slide 11 text

wp_add_inline_script • Developer – Allows you to easily add small inline scripts without having to write and maintain files • Users – Less files = faster loading = better SEO = better experience [ 11 ]