I'm trying to call a template part but I want to change a small detail every time that I call it.
Right now I'm just using:
<?php get_template_part( 'ad-banner' ); ?>
I figure there's got to be something like
<?php get_template_part( 'ad-banner', $variable='variable value' ); ?>
Does anyone have suggestions?