Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save harisrozak/78589089aadad5bffcbed64acbc38f51 to your computer and use it in GitHub Desktop.
Save harisrozak/78589089aadad5bffcbed64acbc38f51 to your computer and use it in GitHub Desktop.
WordPress :: Pass variable to template part
<?php
// file archive.php
set_query_var( 'user_id', absint( $user->ID ) );
get_template_part( 'template-parts/user', 'details' );
// file template-parts/user-details.php
var_dump($user_id);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment