Standard di codifica sandwich


8

Di recente ho individuato il codice per un wp-lunch.phpfile destinato a un modello WordPress, come sarebbe se seguissi gli standard di codifica WordPress corretti?

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

Ottima domanda, lascia che i giochi abbiano inizio!
Adam,

Penso che la domanda perfetta da porre qui, come dovrebbe the_filling()essere
Pieter Goosen,

Cosa fanno tutti questi sviluppatori WP nei fine settimana? ;)
Nicolai,

Risposte:


5

Cosa succede se l'utente non ha la capacità di mangiare un panino? WSOF?

Se volessi seguire i modelli di temi predefiniti medi, sceglierei

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

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

Questa query si spezzerebbe se non ci fosse pane, poiché il pane non è considerato un ripieno e una parte essenziale di un panino. Consiglio di aggiungere get_ingredients();invece di get_fillings_query();quali pane e ripieno fanno parte. Anche il riempimento dovrebbe avere un'API JSON frontale;)
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; ?>

Spaziatura regolata per lo stile di codifica, ecc.

Il modello sandwich con un po 'di ramoscello, mangiato su Meadow sarà simile a:

{% 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
Tutto ciò <?phpmi fa venire i brividi.
gmazzap

7
@GM Ho pensato di introdurre il modello Moustache, ma chi vuole i baffi nel loro sandwich?
Rarst

4
Se trovassi un ramoscello nel mio panino, potrei gestirlo, ma non un baffo.
Adam,

1

Non sono necessari tutti i delimitatori di apertura e chiusura o gli spazi di riga liberi quando sono già rientrati:

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

Probabilmente dopo dovrebbe essere ripristinato anche il riempimento dei dati ...

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.