What's New in WordPress 3.6 - BarCamp Orlando 2013

63

Click here to load reader

Transcript of What's New in WordPress 3.6 - BarCamp Orlando 2013

Page 1: What's New in WordPress 3.6 - BarCamp Orlando 2013

Whats New in WordPress 3.6

By James Tryon

Monday, May 20, 13

Page 2: What's New in WordPress 3.6 - BarCamp Orlando 2013

I’m James Tryon or Easily Amused

• Creative Director of Easily Amused, Inc.

• We specialize in Branding & Custom WordPress Design/Development.

• Personally been in the biz since 99

• Overflow work from Other Studios

• Work as Other Companies full Creative/Development Team.

Monday, May 20, 13

Page 3: What's New in WordPress 3.6 - BarCamp Orlando 2013

Quick Overview

• Admin UI

• Post Formats

• Audio/Video

• Autosave

• Post Lock

• Menus

• Revisions

• Twenty Thirteen

Monday, May 20, 13

Page 4: What's New in WordPress 3.6 - BarCamp Orlando 2013

Admin UI Updates

• Larger San-Serif Font

• More Breathing Room

• Flattened it a Little

• Darker Sidebar w/ Highlights

Monday, May 20, 13

Page 5: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 6: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 7: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 8: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Formats

What is Post Formats?

Post Formats are a tool for themes to visually differentiate between types of content.

Monday, May 20, 13

Page 9: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Formats

• Been a part of WordPress Since 3.2 (Feb 2011)

• User Interface Overhaul

• Giving your blog a more Tumbler Feel

• Can Hide the UI in the Screen Options

Monday, May 20, 13

Page 10: What's New in WordPress 3.6 - BarCamp Orlando 2013

Old Post Format UI

Monday, May 20, 13

Page 11: What's New in WordPress 3.6 - BarCamp Orlando 2013

New Post Formats

• Gallery

• Video

• Audio

• Chat

Monday, May 20, 13

Page 12: What's New in WordPress 3.6 - BarCamp Orlando 2013

3.6 Beta 1 UI

Monday, May 20, 13

Page 13: What's New in WordPress 3.6 - BarCamp Orlando 2013

3.6 Beta 2 UI

Monday, May 20, 13

Page 14: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Standard

Monday, May 20, 13

Page 15: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 16: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Image

Monday, May 20, 13

Page 17: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Image

Monday, May 20, 13

Page 18: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 19: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Gallery

Monday, May 20, 13

Page 20: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Gallery

Monday, May 20, 13

Page 21: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Gallery

Monday, May 20, 13

Page 22: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 23: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Link

Monday, May 20, 13

Page 24: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 25: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Video

Monday, May 20, 13

Page 26: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Video

Monday, May 20, 13

Page 27: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 28: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Audio

Monday, May 20, 13

Page 29: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Audio

Monday, May 20, 13

Page 30: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 31: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Chat

Monday, May 20, 13

Page 32: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 33: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Status

Monday, May 20, 13

Page 34: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Status

Monday, May 20, 13

Page 35: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 36: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Quote

Monday, May 20, 13

Page 37: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Quote

Monday, May 20, 13

Page 38: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 39: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Aside

Monday, May 20, 13

Page 40: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Format: Aside

Monday, May 20, 13

Page 41: What's New in WordPress 3.6 - BarCamp Orlando 2013

Monday, May 20, 13

Page 42: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Formats: New Functions

• the_post_format_video()

• the_post_format_url()

• the_remaining_content()

New functions for Post Formats allow developers to pull the meta info from the post and apply a unique design to each format.

Monday, May 20, 13

Page 43: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Formats: Theme Support

You will need to enable post formats in your theme. To do so add the following to your setup function

/* * This theme supports all available post formats by default. * See http://codex.wordpress.org/Post_Formats */

add_theme_support( 'post-formats', array('aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'

) );

Monday, May 20, 13

Page 44: What's New in WordPress 3.6 - BarCamp Orlando 2013

Disabling Post Formats

You can turn post formats off in the Admin Screen options, but its only for that user. If you would like to disable them across the board check out a plugin by Justin Tadlock.

http://wordpress.org/extend/plugins/disable-post-format-ui/

Monday, May 20, 13

Page 47: What's New in WordPress 3.6 - BarCamp Orlando 2013

Autosave

Posts are now autosaved locally. If your browser crashes, your computer dies, or the server goes offline as you’re saving, you won’t lose the your post.

• Kinda like Google Docs.

• Auto saves locally every 15 sec

Monday, May 20, 13

Page 48: What's New in WordPress 3.6 - BarCamp Orlando 2013

Cookie expiration

But what about an unexpected delays and your cookies expire!?!

Don’t worry there’s a new lightbox for that.No going back to the login screen, and no lost content.

Pick up where you left off.

Monday, May 20, 13

Page 49: What's New in WordPress 3.6 - BarCamp Orlando 2013

Cookie expiration

Monday, May 20, 13

Page 50: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Locking

• How many of you run a blog with more than one Author?

• Ever have 2 people editing a post at the same time?

• Have you ever overwritten what the other person work?

Monday, May 20, 13

Page 51: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Locking

Before you had a little red text warning at the top, Now you get this:

Monday, May 20, 13

Page 52: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post LockingThe other person see this:

Monday, May 20, 13

Page 53: What's New in WordPress 3.6 - BarCamp Orlando 2013

Post Locking

But we go one step further or should I say one step prier.

Now when you're in the admin and someone is editing, It will say [username] is currently editing next to the title in the admin list screen.

Monday, May 20, 13

Page 54: What's New in WordPress 3.6 - BarCamp Orlando 2013

Menus

• location moved to its own

• Added accordion/toggle menu

Nav menus have been simplified with an accordion-based UI, and a separate tab for bulk-assigning menus to locations.

Monday, May 20, 13

Page 55: What's New in WordPress 3.6 - BarCamp Orlando 2013

Menus: Old Look

Monday, May 20, 13

Page 56: What's New in WordPress 3.6 - BarCamp Orlando 2013

Menus: New Look

Monday, May 20, 13

Page 57: What's New in WordPress 3.6 - BarCamp Orlando 2013

Menus: New Look

Monday, May 20, 13

Page 58: What's New in WordPress 3.6 - BarCamp Orlando 2013

Menus: New Look

Monday, May 20, 13

Page 59: What's New in WordPress 3.6 - BarCamp Orlando 2013

Revisions

The all-new revisions UI features avatars, a slider that “scrubs” through history, and two-slider range comparisons.

Monday, May 20, 13

Page 60: What's New in WordPress 3.6 - BarCamp Orlando 2013

Revisions

Monday, May 20, 13

Page 61: What's New in WordPress 3.6 - BarCamp Orlando 2013

Twenty Thirteen

Shipping in the first release of the year. It’s a blog-centric theme that makes full use of Post Formats & bold Color.

I think there might be a little negativism with it comes to the yearly themes. There has also been a problem getting them out early enough in the year for the name to really matter.  

It would be best to think of Twenty Twelve as CMS driven theme and Twenty Thirteen more as a Blog drive theme. But both and do both.

Monday, May 20, 13

Page 62: What's New in WordPress 3.6 - BarCamp Orlando 2013

http://twentythirteendemo.wordpress.com/

Monday, May 20, 13

Page 63: What's New in WordPress 3.6 - BarCamp Orlando 2013

Thank You

• James Tryon

[email protected]

• http://EasilyAmusedInc.com

• @easilyamused

• http://profiles.wordpress.org/easilyamused/

Monday, May 20, 13