Đây là code giúp anh chị custom các template như archive,single,taxonomy,font-page trong genesis
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 |
<?php add_action( 'genesis_meta', 'artisan_home_genesis_meta' ); function artisan_home_genesis_meta() { //* Force full-width-content layout setting add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); //* Add artisan-pro-home body class //add_filter( 'body_class', 'artisan_body_class' ); //* Remove the default Genesis loop remove_action( 'genesis_loop', 'genesis_do_loop' ); //* Add home top widgets add_action( 'genesis_after_header', 'custom_after_header' ); } function custom_after_header(){ ?> <div class="custom-full-wide"> <?php if ( have_posts() ) { while ( have_posts() ) {the_post(); the_post(); the_content(); } // end while } // end if ?> </div> <?php } genesis(); |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress