Opened 14 months ago
Last modified 14 months ago
#59169 new defect (bug)
Deprecated arguments description is a bit misleading.
Reported by: | sulemanhelp | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | trivial | Version: | |
Component: | General | Keywords: | has-patch close |
Focuses: | docs | Cc: |
Description
Here: https://developer.wordpress.org/reference/functions/get_bloginfo/
in the description of the function
“Deprecated arguments include:
‘siteurl’ – Use ‘url’ instead”
is a bit misleading. “‘siteurl’ – Use ‘wpurl’ instead” is correct.
Change History (3)
This ticket was mentioned in PR #5053 on WordPress/wordpress-develop by @sulemanhelp.
14 months ago
#1
- Keywords has-patch added
#2
@
14 months ago
- Keywords close added
Thanks @sulemanhelp for the ticket and PR. home
and siteurl
both use url
so we don't need to update it.
#3
@
14 months ago
Hi there, welcome to WordPress Trac! Thanks for the PR.
This might be a bit confusing, but as noted above, both home
and siteurl
fall through to the url
value for backward compatibility, so the current documentation is correct.
Some history here:
- [1157] added the
siteurl
value. - [1731] added the
home
andwpurl
values. - [4983] / #3623 deprecated the
home
andsiteurl
values. - [12587] / #11652 added the
_deprecated_argument()
call. - [36382] / #35581 added the documentation for deprecated values.
- [44565] / #45934 documented the intentional fall-through to the
url
value.
Note: See
TracTickets for help on using
tickets.
Small fix for get_bloginfo() function doc. 'siteurl' - Use 'url' instead was a bit misleading.