Estándares de codificación de sándwich


8

Recientemente descubrí el código de un wp-lunch.phparchivo destinado a una plantilla de WordPress, ¿cómo se vería esto si siguiera los estándares de codificación de WordPress adecuados?

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 pregunta, ¡que comiencen los juegos!
Adam

Creo que la pregunta perfecta para hacer aquí, ¿cómo debería the_filling()verse
Pieter Goosen

¿Qué hacen todos esos desarrolladores de WP los fines de semana? ;)
Nicolai

Respuestas:


5

¿Qué sucede si el usuario no tiene la capacidad de comer sandwich? WSOF?

Si quisiera seguir las plantillas de temas predeterminadas promedio, elegiría

// 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' );

Y entonces

// 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;

Esta consulta se rompería si no hubiera pan, ya que el pan no se considera un relleno y una parte esencial de un sándwich. Recomiendo agregar en get_ingredients();lugar de get_fillings_query();qué pan y relleno forman parte. También el relleno debe tener una API JSON frontal;)
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; ?>

Espaciado ajustado para el estilo de codificación, etc.

La plantilla de sándwich con un poco de Twig, que se come en Meadow se verá así:

{% 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
Todo eso <?phpme da escalofríos.
gmazzap

77
@ GM Pensé en presentar la plantilla de bigote, pero ¿quién quiere bigote en su emparedado?
Rarst

44
Si encontraba una ramita en mi emparedado, podría manejarlo, pero no un bigote.
Adam

1

No es necesario tener todos los delimitadores de apertura y cierre o espacios de líneas claros cuando ya están sangrados:

<?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();
}

Probablemente también debería tener un restablecimiento de los datos de llenado después ...

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.