This article describes how to introduce a template file for WordPress theme creation. it describes how to use the get_template_part () function. For more information, see get_template_part, similar to get_header (), get_sidebar (), and get_footer (), except that the get_template_part () file can introduce a custom name.
Usage
get_template_part( $slug, $name );
Parameters
$ Slug
(String) (required) name of the template to be introduced, excluding the suffix. php, that is, if you need to introduce the loop of the root directory of the current topic. enter "loop" in the php file $ slug.
Default value: None
$ Name
(String) (optional) the sub-file name of the file of the template to be introduced, if you want to introduce the loop-img.php file for the current topic root directory $ slug parameter fill in "loop ", set $ name to "img ".
Default value: None
Return value
This function has no return value.
Example
Introduce the endskin.com file in the root directory of the current topic:
get_template_part( 'endskin' );
Introduce the loop. php file in the current topic part directory:
get_template_part( 'part/loop' );
Introduce the endskin-com.php file for the current topic root directory:
get_template_part( 'endskin', 'com' );
Others
This function is located in: wp-des/general-template.php