template file not opening when passing parameters in url wp code example
Example 1: send variable to get_template_part
//NEW CLEAN way (WP 5.5.0 >=) of passing variables to template parts
$data = array('foo'=>'bar');
//add your variables as a third parameter
get_template_part( 'template-parts/file', 'name', $data );
//In the template part itself: (IMPORTANT NOTE: the name of the variable has to be args)
echo $args['foo'];
Example 2: template file not opening when passing parameters in url wp
do not pass "p" as url parameter.