#4624 closed defect (bug) (fixed)
DevHub: Skip wp-includes/blocks from parsing
Reported by: | SergeyBiryukov | Owned by: | coffee2code |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Developer Hub | Keywords: | has-patch |
Cc: |
Description
Background: #4144
wp-includes/blocks appears to be managed as an external package, and its @since tags are related to the package version, not the WordPress version.
At the moment, wp_latest_comments_draft_or_post_title() is incorrectly shown in the reference as introduced in WordPress 3.3.0.
Attachments (1)
Change History (6)
#3
@
5 years ago
- Owner set to coffee2code
- Resolution set to fixed
- Status changed from new to closed
In 9184:
#4
@
5 years ago
In this particular case--where entire files are not to be parsed--it is best and sufficient to exclude the files/subdirectories from being parsed as proposed in the patch.
In instances where a particular function or class is intended only for internal use and is not meant to be parsed for public documentation, then the @ignore
DocBlock tag should be used.
Note: See
TracTickets for help on using
tickets.
Functions such as this should probably be marked internal so as not to show up in the index too correct?
@coffee2code any thoughts here?