WordPress Theming & Frameworks Essentials

WordPress Theming & Frameworks Essentials

Thessaloniki 22 Oct 2016

A717e9d055b2284e573b2412e32f5397?s=128

WordPress Greek Community

October 22, 2016
Tweet

Transcript

  1. 3.

    Athanasiadis Evagelos General Translation Editor WordPress Meetup Organizer WordPress Member

    Since 2005 WordPress Theming & Frameworks Essentials @eathanasiadis athanasiadis.me
  2. 5.

    WordPress Theming & Frameworks Essentials Fundamentally, the WordPress Theme system

    is a way to "skin” your weblog. Yet, it is more than just a "skin." Skinning your site implies that only the design is changed. WordPress Themes can provide much more control over the look and presentation of the material on your website. WordPress Theming & Frameworks Essentials
  3. 8.

    WordPress Theming WordPress Theming & Frameworks Essentials • Hard To

    Read • Difficult UI • Slow • Ugly WordPress Theming & Frameworks Essentials
  4. 10.

    WordPress Theming WordPress Theming & Frameworks Essentials What is a

    theme? WordPress Theming & Frameworks Essentials
  5. 15.

    style.css WordPress Theming & Frameworks Essentials /* Theme Name: Twenty

    Thirteen Theme URI: http://wordpress.org/themes/twentythirteen Author: the WordPress team Author URI: http://wordpress.org/ Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small. Version: 1.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, flexible-width, custom- header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready Text Domain: twentythirteen This theme, like WordPress, is licensed under the GPL. Use it to make something cool, have fun, and share what you've learned with others. */
  6. 18.

    The Loop WordPress Theming & Frameworks Essentials <?php if (

    have_posts() ) { while ( have_posts() ) { the_post(); // // Post Content here // } // end while } // end if ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> https://codex.wordpress.org/Theme_Development
  7. 20.

    Starter & Frameworks Themes WordPress Theming & Frameworks Essentials •

    Faster and Easier Development • Fits to anyone • Quality • Community & Support • Don’t Break after Upgrades
  8. 21.

    Starter & Frameworks Themes WordPress Theming & Frameworks Essentials •

    Bones • Cherry Framework • JointsWP • Skeleton • Underscores • …. https://athanasiadis.me/wordpress-frameworks/