metaboxes. do them right

41
Metaboxes. Do them right.

Upload: aniket-pant

Post on 28-Nov-2014

199 views

Category:

Technology


0 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Metaboxes. Do them right

Metaboxes.Do them right.

Page 2: Metaboxes. Do them right

Let’s tweet about this

@aniket_pant#wcpune2013

Page 3: Metaboxes. Do them right

Throw your questions at me anytime.

Ask me some thing right now!

Page 4: Metaboxes. Do them right

I’m Aniket Pant.

And I have been around for over 2 years now. I love to code and get dirty with front-end.

I am also the Curator of Mark My Word, a content and design conference.

We owe this to ourselves. We owe this to ourselves. We just can’t let this go.

Page 5: Metaboxes. Do them right

I bet this will remind you of a college lecture.

Introduction to Metaboxes 101

Page 6: Metaboxes. Do them right

Introduced in version 2.5

Gives life to the awesome CMS

called WordPress

Page 7: Metaboxes. Do them right

Trust me that they are really awesome.

What are Metaboxes?

Page 8: Metaboxes. Do them right
Page 9: Metaboxes. Do them right

Metaboxes are a great addition to WordPress.

Page 10: Metaboxes. Do them right

Makes things simpler to maintain and manage.

Implementation is fast and simple.

You will definitely fall in love with how you can make your site awesomer with it.

Page 11: Metaboxes. Do them right

One simple reason.They are cool.

Why Metaboxes?

Page 12: Metaboxes. Do them right

There is nothing better than adding more features onto an

already existing CMS.

Page 13: Metaboxes. Do them right
Page 14: Metaboxes. Do them right

And then you can use these features to intensify what you are

building.

Page 15: Metaboxes. Do them right

How do we implement Metaboxes?

Page 16: Metaboxes. Do them right

Use a library Download a plugin

Write the code yourself

/ /

Page 17: Metaboxes. Do them right

Libraries to implement Metaboxes

Page 18: Metaboxes. Do them right

Custom Metaboxes and Fields for WordPress

by Jared Atchison

jaredatchison.com

WPAlchemy

by Far In Space

farinspace.com/wpalchemy-metabox

Page 19: Metaboxes. Do them right

Custom Metaboxes and Fields for WordPress

Still in development

It’s simply awesome

Plug-and-play

Lots of built in features like time and date picker

Page 20: Metaboxes. Do them right

WPAlchemy

Extensive documentation

Used in many websites

A little slow on the maintainace

Comes along with features you can directly use

Page 21: Metaboxes. Do them right

For those who wish to use plugins

Page 22: Metaboxes. Do them right

There is a plugin called Meta Box and it does everything for you.

Page 23: Metaboxes. Do them right
Page 24: Metaboxes. Do them right

Meta Box is well maintained.

Compatible with WordPress 3.5.1

Gives full control via a full-fledged user interface.

Page 25: Metaboxes. Do them right

And we cancode it too

Page 26: Metaboxes. Do them right

<?php

$meta_boxes[] = array(

‘id’ => ‘personal’,

‘title’ => ‘Personal Information’,

‘pages’ => array(‘post’, ‘page’, ‘album’),

‘context’ => ‘normal’,

‘priority’ => ‘high’,

‘fields’ => array(

array(

‘name’ => ‘Full name’,

‘desc’ => ‘Format: Firstname Lastname’,

‘id’ => $prefix . ‘fname’,

‘type’ => ‘text’,

‘std’ => ‘Anh Tran’,

‘validate_func’ => ‘check_name’

)

)

);

?>

This is just one bit of

the actual code.

}

Page 27: Metaboxes. Do them right

Looks complex.

Page 28: Metaboxes. Do them right

It is complex.

I will recommend you to use the libraries even if you wish to code

everything yourself.

Page 29: Metaboxes. Do them right

These are live projects.

Case Studies

Page 30: Metaboxes. Do them right

Case Study #1:Current News

Project by Web Mutiny

Page 31: Metaboxes. Do them right
Page 32: Metaboxes. Do them right
Page 33: Metaboxes. Do them right

We needed new fields - Place, Date, Subheading, Intro and Timestamp.

And we used Custom Metaboxes and Fields for WordPress because it was perfect for us.

Page 34: Metaboxes. Do them right

Case Study #2:Smashing Magazine

Job Board

Page 35: Metaboxes. Do them right

http://jobs.smashingmagazine.com

Page 36: Metaboxes. Do them right
Page 37: Metaboxes. Do them right

Smashing Magazine’s Job Board is a great example of Custom

Fields and Taxonomies put into good use.

Page 38: Metaboxes. Do them right

Use metaboxes whenever you need to put in more fields to your

website.

Page 39: Metaboxes. Do them right

I have spoken on Theme Development & Customization.

It’ll give you a good picture of Theme Development with WP.

http://aniketpant.com/speaking/wordcamp-jabalpur-2011

Page 40: Metaboxes. Do them right

I hope you will use metaboxes in your next

project.

Thank youfor listening.

We are the ones, who will achieve, what the world dreams.Because we still believe.

Page 41: Metaboxes. Do them right

Liked my talk?

Follow me on twitter: @aniket_pant

Mail me: me[at]aniketpant[dot]com

Checkout my blog: aniketpant.com