-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
419 lines (341 loc) · 15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<title>Como planejar um projeto WordPress</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', include the PDF print sheet -->
<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'css/print/pdf.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Como planejar um <br>projeto WordPress</h2>
</section>
<section>
<div class="wrap">
<div class="description">
<p><b>Leo[nardo] Germani</b></p><br>
<ul>
<li>Sócio do hacklab
<ul>
<li>Catraca Livre</li>
<li>Virada Cultural</li>
</ul>
</li>
<li>Desenvolvedor WordPress</li>
<li>Participação na comunidade e organização dos primeiros WordCamps</li>
</ul>
</div>
</div>
</section>
<section>
<section>
<h2>Guia prático</h2>
</section>
<section>
<h2>WordPress é uma ferramenta poderosa</h2>
</section>
<section>
<h2>Mas...</h2>
<img src="assets/gambi-1.jpg" alt="" title="Leo Germani" >
</section>
<section>
<h2>Ou...</h2>
<img src="assets/gambi-2.jpg" alt="" title="Leo Germani" >
</section>
<section>
<h2>O que queremos</h2>
<img src="assets/arrumado.png" alt="" title="Leo Germani" >
</section>
</section>
<section>
<section>
<h2>Estrutura do WP</h2>
</section>
<section>
<table>
<thead>
<tr>
<th>Post Types</th>
<th>Taxonomias</th>
<th>Meta-dados</th>
</tr>
</thead>
<tbody>
<tr>
<td>Posts</td>
<td class="fragment">Categorias <br/> Tags</td>
<td class="fragment">---</td>
</tr>
<tr>
<td class="fragment">Páginas</td>
<td class="fragment">---</td>
<td class="fragment">Ordem</td>
</tr>
<tr>
<td class="fragment">Filmes</td>
<td class="fragment">Gênero<br/>Sinopse<br/>Elenco<br/>Diretor<br/>Ano<br/>País ???</td>
<td class="fragment">Gênero<br/>Sinopse<br/>Elenco<br/>Diretor<br/>Ano<br/>País ???</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Hierarquia de Templates</h2>
<a href="assets/hierarquia.png"><img src="assets/hierarquia.png" alt="" ></a>
</section>
</section>
<section>
<section>
<h2>Diálogo entre</h2>
<ul>
<li>Sua arquitetura de informação</li>
<li>Hierarquia de Templates</li>
<li>Tabela de post types, taxonomias e meta-dados</li>
</ul>
</section>
<section>
<h2>Montando a estrutura</h2>
<table>
<thead>
<tr>
<th>Post Types</th>
<th>Taxonomias</th>
<th>Meta-dados</th>
<th>Templates</th>
</tr>
</thead>
<tbody>
<tr>
<td>Posts</td>
<td >Categorias <br/> Tags</td>
<td >---</td>
<td >index.php<br/>single.php</td>
</tr>
<tr>
<td >Páginas</td>
<td >---</td>
<td >Ordem</td>
<td >page.php</td>
</tr>
<tr>
<td >Filmes</td>
<td >Gênero<br/>Elenco<br/>Diretor<br/>Ano<br/>País</td>
<td >Sinopse</td>
<td >archive-filmes.php<br/>single-filmes.php<br/>archive-genero.php<br/>archive-diretor.php<br/>...</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Montando a estrutura</h2>
<table>
<thead>
<tr>
<th>Post Types</th>
<th>Taxonomias</th>
<th>Meta-dados</th>
<th>Templates</th>
</tr>
</thead>
<tbody>
<tr class="fragment">
<td >Home</td>
<td ></td>
<td ></td>
<td >front-page.php</td>
</tr>
<tr class="fragment">
<td >Resultado de busca</td>
<td ></td>
<td ></td>
<td >search.php</td>
</tr>
<tr class="fragment">
<td >Página não encontrada</td>
<td ></td>
<td ></td>
<td >404.php</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Quando usar post type ou categorias de post?</h2>
</section>
<section>
<ul>
<li>Sempre dê preferência a post types</li>
<ul>
<li>Fica mais organizado</li>
<li>É mais claro pro usuário</li>
<li>URLs mais bonitas</li>
</ul>
<li>Quando se pode usar categoria de posts?</li>
<ul>
<li>Quando você quiser misturar dois conteúdos na mesma listage (mas é possível fazer com post type)</li>
</ul>
</ul>
</section>
<section>
<h2>Quando usar taxonomia ou meta-dado?</h2>
</section>
<section>
<ul>
<li>Taxonomia
<ul>
<li>Quando você quiser uma listagem automática</li>
<li>Quando você quiser compartilhar valores entre posts</li>
</ul>
</li>
<li>Meta dado
<ul>
<li>Quando for um conteúdo único e textual</li>
<li>Quando você não quer que o usuário possa inventar novos valores</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>Para outras ocasiões</h2>
<p><b>Page Templates</b> ou <b>Custom Rewrite Rules</b></p>
</section>
</section>
<section>
<section>
<h2>Personalizando Listagens</h2>
</section>
<section>
<p> <b>pre_get_posts()</b> e <b>WP_Query</b> </p>
</section>
<section>
<h2>Personalizando Listagens</h2>
<pre><code data-trim contenteditable>
add_action('pre_get_posts', function($query) {
if ($query->is_post_type_archive('project') && $query->is_main_query()) {
$query->set('orderby', 'meta_value_num');
$query->set('meta_key', 'numero');
$query->set('order', 'ASC');
}
});
</code></pre>
</section>
<section>
<h2>Personalizando Listagens</h2>
<pre><code data-trim contenteditable>
add_action('pre_get_posts', function($query) {
if ($query->is_post_type_archive('filmes') && $query->is_main_query()) {
$query->set('posts_per_page', -1);
$query->set('orderby', 'title');
$query->set('order', 'ASC');
}
});
</code></pre>
</section>
<section>
<h2>Loop personalizado</h2>
<pre><code data-trim contenteditable>
<?php
$sections = new WP_Query(
array(
'post_type' => 'filmes',
'post_parent' => get_the_ID(),
'ignore_sticky_posts' => true,
'showposts' => -1,
'orderby' => 'title',
'order' => 'ASC'
)
);
?>
<?php if ($sections->have_posts()): ?>
<?php while ($sections->have_posts()): $sections->the_post(); ?>
<?php the_title(); ?>
...
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
</code></pre>
</section>
</section>
<section>
<section>
<h2>Recaptulando</h2>
<ul>
<li class="fragment">Planejar sua arquitetura da informação</li>
<li class="fragment">Definir quais post types, taxonomias e metadados serão usados</li>
<li class="fragment">Definir e documentar os templates que devem ser criados</li>
<li class="fragment">Definir e documentar se será necessário personalizar alguma listagem</li>
<li class="fragment">Definir e documentar se algum template terá um Loop personalizado</li>
</ul>
</section>
<section>
<h2>Recaptulando</h2>
<ul>
<li class="fragment">Para não programadores</li>
<ul>
<li class="fragment">Usar plugins para criar PTs, taxonomias e metadados</li>
<li class="fragment">Não ter medo de brincar com pre_get_posts e loops personalizados</li>
</ul>
<li class="fragment">Para programadores</li>
<ul>
<li class="fragment">Evitar o uso de plugins</li>
<li class="fragment">pre_get_posts e Loops personalizados</li>
<li class="fragment">Relação entre Post types</li>
</ul>
</ul>
</section>
<section>
<p>Adoraria ajudar com alguns casos concretos</p>
<h2>Obrigado</h2>
<p>[email protected]</p>
<small>github.com/leogermani/apresentacao-planejando-projeto-wp</small>
</section>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Parallax scrolling
// parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
// parallaxBackgroundSize: '2100px 900px',
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>