mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-03 20:24:26 +00:00
Ensure we're using the correct @ignore phpDocumentor tag to mark elements that should be skipped when parsing.
Up to this point, various core elements' DocBlocks incorrectly included an `@internal` tag as a means for skipping the parsing process. When paired with a description (inline or otherwise), `@internal` is a valid tag meant to provide internal-only context, but not necessarily to skip parsing the entire element. See #30987. git-svn-id: https://develop.svn.wordpress.org/trunk@31170 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -831,7 +831,9 @@ function print_footer_scripts() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @internal use
|
||||
* Print scripts (internal use only)
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
function _print_scripts() {
|
||||
global $wp_scripts, $compress_scripts;
|
||||
@@ -997,7 +999,9 @@ function print_late_styles() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @internal use
|
||||
* Print styles (internal use only)
|
||||
*
|
||||
* @ignore
|
||||
*/
|
||||
function _print_styles() {
|
||||
global $wp_styles, $compress_css;
|
||||
|
||||
Reference in New Issue
Block a user