Передайте переменную в get_template_part
3 ответ
- голосов
-
- 2017-06-14
В
category-about.php
у меня<?php /** * The template for displaying the posts in the About category * */ ?> <!-- category-about.php --> <?php get_header(); ?> <?php $args = array( 'post_type' => 'post', 'category_name' => 'about', ); ?> <?php // important bit set_query_var( 'query_category', $args ); get_template_part('template-parts/posts', 'loop'); ?> <?php get_footer(); ?>
и в файле шаблона
posts-loops.php
теперь у меня<!-- posts-loop.php --> <?php // important bit $args = get_query_var('query_category'); $cat_name = $args['category_name']; $query = new WP_Query( $args ); if($query->have_posts()) : ?> <section id="<?php echo $cat_name ?>-section"> <h1 class="<?php echo $cat_name ?>-section-title"> <strong><?php echo ucfirst($cat_name) ?> Section</strong> </h1><?php while($query->have_posts()) : $query->the_post(); ?> <strong><?php the_title(); ?></strong> <div <?php post_class() ?> > <?php the_content(); ?> </div> <?php endwhile; ?> </section> <?php endif; wp_reset_query();
и это работает.
Ссылка:
http://keithdevon.com/passing-variables-to-get_template_part-in-wordpress/# comment-110459 https://wordpress.stackexchange.com/a/176807/77054In
category-about.php
I have<?php /** * The template for displaying the posts in the About category * */ ?> <!-- category-about.php --> <?php get_header(); ?> <?php $args = array( 'post_type' => 'post', 'category_name' => 'about', ); ?> <?php // important bit set_query_var( 'query_category', $args ); get_template_part('template-parts/posts', 'loop'); ?> <?php get_footer(); ?>
and in template file
posts-loops.php
I now have<!-- posts-loop.php --> <?php // important bit $args = get_query_var('query_category'); $cat_name = $args['category_name']; $query = new WP_Query( $args ); if($query->have_posts()) : ?> <section id="<?php echo $cat_name ?>-section"> <h1 class="<?php echo $cat_name ?>-section-title"> <strong><?php echo ucfirst($cat_name) ?> Section</strong> </h1><?php while($query->have_posts()) : $query->the_post(); ?> <strong><?php the_title(); ?></strong> <div <?php post_class() ?> > <?php the_content(); ?> </div> <?php endwhile; ?> </section> <?php endif; wp_reset_query();
and it works.
Reference:
http://keithdevon.com/passing-variables-to-get_template_part-in-wordpress/#comment-110459 https://wordpress.stackexchange.com/a/176807/77054 -
- 2019-01-23
Первый способ :
Шаблон,в который включена часть шаблона:
$value_to_sent = true; set_query_var( 'my_var', $value_to_sent );
Включенная часть шаблона:
$get_my_var = get_query_var('my_var'); if ($get_my_var == true) { ... }
Второй способ:
Шаблон,в который включена часть шаблона:
global $my_var; $my_var= true;
Включенная часть шаблона:
global $my_var; if ($my_var == true) { ... }
Я предпочел бы пойти первым путем.First way:
Template in which template part is included:
$value_to_sent = true; set_query_var( 'my_var', $value_to_sent );
Included template part:
$get_my_var = get_query_var('my_var'); if ($get_my_var == true) { ... }
Second way:
Template in which template part is included:
global $my_var; $my_var= true;
Included template part:
global $my_var; if ($my_var == true) { ... }
I would rather go with the first way. -
- 2020-08-13
WordPress 5.5 позволяет передавать
$args
вget_template_part
.Помимо этой функции есть наборы шаблонных функций,которые теперь могут принимать аргументы.get_header get_footer get_sidebar get_template_part_{$slug} get_template_part
Более подробную информацию можно найти по адресу: https://make.wordpress.org/core/2020/07/17/passing-arguments-to-template-files-in-wordpress-5-5/
WordPress 5.5 allows passing
$args
toget_template_part
. Apart from this function there are sets of template function which can now accept arguments.get_header get_footer get_sidebar get_template_part_{$slug} get_template_part
Please refer more details at: https://make.wordpress.org/core/2020/07/17/passing-arguments-to-template-files-in-wordpress-5-5/
В
category-about.php
у меняКак мне получить переменные из
category-about.php
в файле шаблонаposts-loop.php
?Просматривая этот комментарий и < a href="https://wordpress.stackexchange.com/questions/176804/passing-a-variable-to-get-template-part"> этот ответ Мне не удается собрать все вместе.
Я хотел бы лучше понять это,вместо того,чтобы использовать какие-либо вспомогательные функции,указанные в ответах. Я понимаю,что правильным способом было бы использовать
set_query_var
иget_query_var
,однако мне нужна небольшая помощь с этим.Вместо того,чтобы писать основной код цикла для каждой категории,мне нравится просто определять
$args
в шаблоне категории,а затем использовать его в файле шаблона. Любая помощь приветствуется.