Standar Pengodean Sandwich


8

Baru-baru ini saya melihat kode untuk wp-lunch.phpfile yang ditujukan untuk template WordPress, seperti apa bentuknya jika mengikuti standar pengkodean WordPress yang tepat?

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

Pertanyaan yang bagus, mari mulai permainan!
Adam

Saya pikir pertanyaan yang sempurna untuk ditanyakan di sini, the_filling()seperti apa bentuknya
Pieter Goosen

Apa yang dilakukan oleh semua WP devs di akhir pekan? ;)
Nicolai

Jawaban:


5

Apa yang terjadi jika pengguna tidak memiliki kemampuan untuk makan sandwich? WSOF?

Jika saya ingin mengikuti templat tema standar rata-rata, saya akan pergi untuk

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

Lalu

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

Kueri ini akan pecah jika tidak ada roti, karena roti tidak dianggap sebagai isi dan bagian penting dari sandwich. Saya sarankan menambahkan get_ingredients();bukan get_fillings_query();dari yang roti dan mengisi adalah bagian dari. Juga mengisi harus memiliki menghadap ke depan API JSON;)
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; ?>

Spasi disesuaikan untuk gaya pengkodean, dll.

Template sandwich dengan sedikit ranting, dimakan di Meadow akan terlihat seperti:

{% 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
Semua itu <?phpmembuatku merinding.
gmazzap

7
@ GM Saya berpikir tentang memperkenalkan template Kumis, tetapi siapa yang ingin kumis di sandwich mereka?
Rarst

4
Jika saya menemukan Ranting di sandwich saya, saya bisa mengatasinya, tetapi bukan Kumis.
Adam

1

Tidak perlu untuk semua pembatas pembukaan dan penutupan atau menghapus garis ruang saat sudah indentasi:

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

Seharusnya mungkin memiliki reset mengisi data sesudahnya juga ...

Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.