Padrões de codificação em sanduíche


8

Recentemente, localizei o código de um wp-lunch.phparquivo destinado a um modelo do WordPress. Como isso seria se seguisse os padrões de codificação adequados do WordPress?

wp-lunch.php

<?php if ( current_user_can('has_sandwich') ): ?>

    <?php get_sandwich_header(); ?>

        <?php while( has_filling() ): the_filling(); ?>

            <?php get_sandwich_part( 'thick_layer',
    get_filling() ); ?>

        <?php endwhile; ?>

    <?php get_sandwich_footer(); ?>

<?php endif; ?>

Excelente pergunta, vamos começar os jogos!
24414 Adam

Acho que a questão perfeito para perguntar aqui, como deve the_filling()parecer
Pieter Goosen

O que todos os desenvolvedores do WP fazem nos fins de semana? ;)
Nicolai

Respostas:


5

O que acontecerá se o usuário não tiver capacidade de comer sanduíche? WSOF?

Se eu quiser seguir os modelos de temas padrão médios, busco

// eat-sandwich.php (as @Rarst said avoid wp-lunch.php as it's not part of WP core)

get_header( 'sandwich' );

if ( current_user_can( 'eat_sandwich' ) ) {

  get_template_part( 'eat-sandwich', 'content' );

} else { // user can't eat sandwich. An apple?

  $alternative = apply_filters( 'alternative_to_sandwich', 'apple' );

  if ( 'sandwich' == $alternative ) {
     // No sandwich allowed!
     $alternative = 'apple';
  }

  get_template_part( "eat-$alternative", 'content' );

}

get_footer( 'sandwich' );

E depois

// eat-sandwich-content.php

$fillings = get_fillings_query(); // in functions.php

if ( $fillings->have_posts() ) : while ( $fillings->have_posts() ) :

   get_template_part( 'filling', get_filling_type() );

endwhile;

wp_reset_postdata();

else :

  _e( 'Sorry, no fillings found. Eating an apple may help to stop hunger.', 'txtdomain');

endif;

Essa consulta seria interrompida se não houvesse pão, pois o pão não é considerado um recheio e uma parte essencial de um sanduíche. Eu recomendo adicionar em get_ingredients();vez de get_fillings_query();que pão e recheio fazem parte. Além disso, o enchimento deve ter uma frente virada para JSON API;)
Wyck

5
<!-- file shouldn't be named wp-lunch.php as it's not part of WP core -->

<?php if ( current_user_can( 'eat_sandwich' ) ): // more specific verb makes more sense to me ?>

    <?php get_header( 'sandwich' ); // native function accepts type argument ?>

    <?php while ( have_fillings() ): the_filling(); // maybe native API, but feels acceptable wrapper for semantics ?>

        <?php get_template_part( 'filling', get_filling_type() ); // native API, what would be `thick_layer` base? ?>

    <?php endwhile; wp_reset_postdata(); // reset $post global ?>

    <?php get_footer( 'sandwich' ); // native function accepts type argument ?>

<?php endif; ?>

Espaçamento ajustado para o estilo de codificação, etc.

O modelo de sanduíche com um pouco de Twig, comido no Meadow, será algo como:

{% if ( current_user_can( 'eat_sandwich' ) ) %}

    {% include 'header-sandwich.twig' %}

    {% loop fillings %}

        {% include 'filling-' ~ get_filling_type() ~ '.twig' ignore missing %}

    {% endloop %}

    {% include 'footer-sandwich.twig' %}

{% endif %}

3
Tudo isso <?phpme dá calafrios.
gmazzap

7
@ GM Pensei em introduzir o modelo do bigode, mas quem quer o bigode no sanduíche?
Rarst 24/05

4
Se eu encontrasse um galho no meu sanduíche, eu poderia lidar com isso, mas não um bigode.
24414 Adam

1

Não há necessidade de todos os delimitadores de abertura e fechamento ou espaços de linhas limpos quando já recuados:

<?php
if ( current_user_can( 'has_sandwich' ) ) {
    get_sandwich_header();
    while ( has_filling() ) {
        the_filling();
        get_sandwich_part( 'thick_layer', get_filling() );
    }
    get_sandwich_footer();
}

Provavelmente também deve ter uma redefinição de dados de preenchimento depois ...

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.