IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 ·...

27
14 October 11 November 2014 IMPACT HUB BUCHAREST

Transcript of IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 ·...

Page 1: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

14 October 2014

11 November 2014IMPACT HUB BUCHAREST

Page 2: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

The Road To Wordpress Themes

Guidelines and Plugins

Page 3: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through
Page 4: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

WHY?

Page 5: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

LEARNING THE RIGHT WAY!

• Lack of knowledge • Doing it wrong • Refresh your knowledges

FIRST

Page 6: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

Professional feedback

LEARNING THE RIGHT WAY!

FIRST

Page 7: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

SECONDVISIBILITY

Stand out from the crowd

EMIL UZELACTheme: RESPONSIVE

Leads WordPress 4.1 development team

• theme was bought by CyberChimps

• the most popular theme on wordpres.org/themes,after 3 months from publishing it

Page 8: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

THIRDGive something back to community!

Page 9: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

GUIDELINES

Page 10: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

GUIDELINES

REQUIRED

RECOMMENDED

OPTIONAL

Page 11: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

GUIDELINESREQUIRED

Theme files:

index.php style.css

screenshot.png comments.php

Page 12: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

GUIDELINES

REQUIRED

style.css

• Theme Name • Theme URI • Author • Author URI • Description • Version • License • License URI • Text domain • Tags

Should explicitly declare the copyright and release lincense information, along with the license for any bundled resources

CORE CSS CLASSES • Alignment:

alignleft, alignright, aligncenter • Caption related:

wp-caption, wp-caption-text, gallery-caption

• Post classes:sticky

• Comment Classes:bypostauthor

Page 13: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

GUIDELINES

REQUIREDscreenshot.png

Max size 880x660“Reasonable facsimile” of the Theme after it is initially activated with default

options

Page 14: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

GUIDELINES

REQUIREDindex.php comments.php

<html>

<head>

</head>

<body>

</body></html>

wp_head();

wp_footer();

comments_template();

wp_list_comments();

comment_form();

wp_enque_script(‘comment-reply’);THE WORDPRESS LOOP

Page 15: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

GUIDELINES

REQUIRED

• support for no more then one version below; now -> 3.8

• no hard coding. Use instead the hooks, filters and functions parameters to modify content

• fonts, styles and scripts are enqueued in functions.php

Page 16: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

RECOMMENDEDThemes are recommended not to implement custom

favicon functionality. If implemented, favicon functionality is required to be opt-in, and disabled by

default. If implemented, favicon functionality is required to support user-defined favicon images.

Page 17: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

RECOMMENDED

Theme files:

404.php archive.php

page.php search.php single.php

header.php footer.php

sidebar.php

If search form is used:

If login form is used:wp_login_form();

get_search_form();

Page 18: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

OPTIONAL- advices form your theme reviewer

Page 19: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

PLUGIN: Theme CheckBy Pross, Otto42

Page 20: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

define('WP_DEBUG', true);

Page 21: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

https://make.wordpress.org/themes/handbook/guidelines/

Page 22: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

GETTING YOUR THEME ON WORDPRESS

Page 23: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

Set up an account & upload your themehttps://wordpress.org/themes/upload/

Page 24: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

IMPORTANTMake things right from the beginning!

Theme recheck means going through all the checking points, including those already passed by previous checks!

All reviewers are checking themes in their free time!

A theme check could take from one week to one month or more, depending on reviewer's availability and

theme's compliance with the WordPress guidelines!

Page 25: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

Become a Reviewer

no minimum hours required! you’ll get a mentor!

you can ask help from everyone!

NEED to be willing to learn and help! NEED to give some of your time to this job!

NEED to be responsible and to love doing this!

https://make.wordpress.org/themes/

Page 26: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

Recap Some StepsFollow the guidelines !

Code like a Pro!

Verify your theme before publishing!

Have some patience and be respectful!

Do it for the people!

https://make.wordpress.org/themes/handbook/guidelines/

Theme Check - https://wordpress.org/plugins/theme-check/

Page 27: IMPACT HUB BUCHAREST - Meetupfiles.meetup.com/17352872/The Road to WordPress.pdf · 2014-11-12 · IMPORTANT Make things right from the beginning! Theme recheck means going through

THANK YOU! Negoita Alexandru

/kulsite

@kulsite

kulsite

[email protected]