Skip to content

Instantly share code, notes, and snippets.

@axxe16
Created January 10, 2020 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save axxe16/79ac87f41fd578871ef971e3a64a8e99 to your computer and use it in GitHub Desktop.
Save axxe16/79ac87f41fd578871ef971e3a64a8e99 to your computer and use it in GitHub Desktop.
passa array a template_part #get_template_part #args #pass #wp
<?php $args = get_query_var('var_post'); ?>
<article class="post">
<h3><a href="<?php echo get_the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php echo the_excerpt(); ?>
<?php echo var_post['foo']; ?>
</article>
<?php
$args = array(
'foo' => 'hello',
);
set_query_var( 'var_post', $args );
get_template_part('piece', 'post');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment