Docs: Don't reference non-existent hooks inline in the DocBlock description for `get_archive_template()`.
Also removes extra curly braces from the dynamic hook references added in [40962] to aid future re-parsing. See #41198. Built from https://develop.svn.wordpress.org/trunk@40963 git-svn-id: http://core.svn.wordpress.org/trunk@40813 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1e32ebe87d
commit
8ccc74c054
|
@ -97,8 +97,8 @@ function get_404_template() {
|
|||
/**
|
||||
* Retrieve path of archive template in current or parent template.
|
||||
*
|
||||
* The template hierarchy is filterable via the {@see 'archive_template_hierarchy'} hook.
|
||||
* The template path is filterable via the {@see 'archive_template'} hook.
|
||||
* The template hierarchy and template path are filterable via the {@see '$type_template_hierarchy'}
|
||||
* and {@see '$type_template'} dynamic hooks, where `$type` is 'archive'.
|
||||
*
|
||||
* @since 1.5.0
|
||||
*
|
||||
|
@ -123,8 +123,8 @@ function get_archive_template() {
|
|||
/**
|
||||
* Retrieve path of post type archive template in current or parent template.
|
||||
*
|
||||
* The template hierarchy and template path are filterable via the {@see '{$type}_template_hierarchy'}
|
||||
* and {@see '{$type}_template'} dynamic hooks, where `$type` is 'archive'.
|
||||
* The template hierarchy and template path are filterable via the {@see '$type_template_hierarchy'}
|
||||
* and {@see '$type_template'} dynamic hooks, where `$type` is 'archive'.
|
||||
*
|
||||
* @since 3.7.0
|
||||
*
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-alpha-40962';
|
||||
$wp_version = '4.9-alpha-40963';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue