Link
Embed
Share
Beginning
This slide
Copy link URL
Copy link URL
Copy iframe embed code
Copy iframe embed code
Copy javascript embed code
Copy javascript embed code
Share
Tweet
Share
Tweet
Slide 1
Slide 1 text
CHILD-THEMES WORDPRESS THEMES RICHTIG ANPASSEN 1
Slide 2
Slide 2 text
TWENTY SIXTEEN 1 1 Screenshots von "Customizing Twenty Sixteen: Four Takes on Our Annual Theme" 2
Slide 3
Slide 3 text
TWENTY SIXTEEN 1 1 Screenshots von "Customizing Twenty Sixteen: Four Takes on Our Annual Theme" 3
Slide 4
Slide 4 text
TWENTY SIXTEEN 1 1 Screenshots von "Customizing Twenty Sixteen: Four Takes on Our Annual Theme" 4
Slide 5
Slide 5 text
EIN THEME PASST NIE ZU 100% 5
Slide 6
Slide 6 text
HELP! 6
Slide 7
Slide 7 text
CHILD-THEMES ! ! ! 7
Slide 8
Slide 8 text
WIR BACKEN UNS EIN CHILD-THEME ! ▸ Neues Verzeichnis in wp-content/themes darin: ▸ Neue style.css Datei ▸ Neue functions.php Datei ▸ Fertig (fast) 8
Slide 9
Slide 9 text
DEMO 9
Slide 10
Slide 10 text
DAS EINGEMACHTETM für unsere style.css: /** * Theme Name: Adenauer * Description: WP Meetup Bonn Child-Theme. * Author: Simon Kraft * Template: twentyseventeen * Version: 0.1 **/ 10
Slide 11
Slide 11 text
DAS EINGEMACHTETM für unsere functions.php: function adenauer_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', 1 ); } add_action( 'wp_enqueue_scripts', 'adenauer_styles' ); 11
Slide 12
Slide 12 text
DEMO 12
Slide 13
Slide 13 text
THEME-MECHANIK ! 13
Slide 14
Slide 14 text
CHILD-THEMES KÖNNEN ALLE FAST ALLE DATEIEN DES PARENT-THEMES ÜBERSCHREIBEN 14
Slide 15
Slide 15 text
AUSNAHMEN style.css (wird von uns schon nachgeladen) functions.php (wird vom Child-Theme ergänzt) 15
Slide 16
Slide 16 text
DEMO 16
Slide 17
Slide 17 text
DAS CHILD-THEME DILEMMA 17
Slide 18
Slide 18 text
SIMON KRAFT @KRAFIT 18
Slide 19
Slide 19 text
FOLIEN WPFRA.DE/39-FOLIEN childthemes.de 19