Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
WordPress Child-Themes
Search
Simon Kraft
October 04, 2017
Programming
0
840
WordPress Child-Themes
Simon Kraft
October 04, 2017
Tweet
Share
More Decks by Simon Kraft
See All by Simon Kraft
Optimale Bildformate im 21. Jahrhundert
krafit
0
39
WordPress Multisite
krafit
0
120
WordPress for Future
krafit
1
540
AMP - Like Dynamite
krafit
0
350
Das Pluginkollektiv liebt dich (2018)
krafit
0
320
Der WP Block-Editor
krafit
0
300
Das Pluginkollektiv liebt dich ❤️
krafit
0
400
These go to elven – Einstieg: WordPress-Perofmance
krafit
0
31
WordPress einrichten
krafit
0
85
Other Decks in Programming
See All in Programming
Le côté obscur des IA génératives
pascallemerrer
0
130
ててべんす独演会〜Flowの全てを語ります〜
tbsten
1
220
AI Coding Meetup #3 - 導入セッション / ai-coding-meetup-3
izumin5210
0
600
AIエージェント時代における TypeScriptスキーマ駆動開発の新たな役割
bicstone
4
1.5k
AIで開発生産性を上げる個人とチームの取り組み
taniigo
0
130
育てるアーキテクチャ:戦い抜くPythonマイクロサービスの設計と進化戦略
fujidomoe
1
150
CSC509 Lecture 05
javiergs
PRO
0
300
Swift Concurrency - 状態監視の罠
objectiveaudio
2
460
SpecKitでどこまでできる? コストはどれくらい?
leveragestech
0
560
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
150
Go Conference 2025: Goで体感するMultipath TCP ― Go 1.24 時代の MPTCP Listener を理解する
takehaya
7
1.6k
ネイティブ製ガントチャートUIを作って学ぶUICollectionViewLayoutの威力
jrsaruo
0
130
Featured
See All Featured
Building Applications with DynamoDB
mza
96
6.6k
Git: the NoSQL Database
bkeepers
PRO
431
66k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.7k
Making Projects Easy
brettharned
119
6.4k
Facilitating Awesome Meetings
lara
56
6.6k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
BBQ
matthewcrist
89
9.8k
YesSQL, Process and Tooling at Scale
rocio
173
14k
Testing 201, or: Great Expectations
jmmastey
45
7.7k
Code Reviewing Like a Champion
maltzj
525
40k
Visualization
eitanlees
148
16k
Transcript
CHILD-THEMES WORDPRESS THEMES RICHTIG ANPASSEN 1
TWENTY SIXTEEN 1 1 Screenshots von "Customizing Twenty Sixteen: Four
Takes on Our Annual Theme" 2
TWENTY SIXTEEN 1 1 Screenshots von "Customizing Twenty Sixteen: Four
Takes on Our Annual Theme" 3
TWENTY SIXTEEN 1 1 Screenshots von "Customizing Twenty Sixteen: Four
Takes on Our Annual Theme" 4
EIN THEME PASST NIE ZU 100% 5
HELP! 6
CHILD-THEMES ! ! ! 7
WIR BACKEN UNS EIN CHILD-THEME ! ▸ Neues Verzeichnis in
wp-content/themes darin: ▸ Neue style.css Datei ▸ Neue functions.php Datei ▸ Fertig (fast) 8
DEMO 9
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
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
DEMO 12
THEME-MECHANIK ! 13
CHILD-THEMES KÖNNEN ALLE FAST ALLE DATEIEN DES PARENT-THEMES ÜBERSCHREIBEN 14
AUSNAHMEN style.css (wird von uns schon nachgeladen) functions.php (wird vom
Child-Theme ergänzt) 15
DEMO 16
DAS CHILD-THEME DILEMMA 17
SIMON KRAFT @KRAFIT 18
FOLIEN WPFRA.DE/39-FOLIEN childthemes.de 19