Docs: Various improvements to inline docblocks.

See #55646


git-svn-id: https://develop.svn.wordpress.org/trunk@54470 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn
2022-10-11 09:00:33 +00:00
parent c8a7216896
commit a99a48c3b9
6 changed files with 14 additions and 18 deletions

View File

@@ -1138,11 +1138,11 @@ function get_block_file_template( $id, $template_type = 'wp_template' ) {
}
/**
* Prints a template-part.
* Prints a block template part.
*
* @since 5.9.0
*
* @param string $part The template-part to print. Use "header" or "footer".
* @param string $part The block template part to print. Use "header" or "footer".
*/
function block_template_part( $part ) {
$template_part = get_block_template( get_stylesheet() . '//' . $part, 'wp_template_part' );
@@ -1153,7 +1153,7 @@ function block_template_part( $part ) {
}
/**
* Prints the header template-part.
* Prints the header block template part.
*
* @since 5.9.0
*/
@@ -1162,7 +1162,7 @@ function block_header_area() {
}
/**
* Prints the footer template-part.
* Prints the footer block template part.
*
* @since 5.9.0
*/