Changeset 13449 for trunk/src/bp-core/bp-core-functions.php
- Timestamp:
- 04/08/2023 06:31:46 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-functions.php
r13444 r13449 1103 1103 1104 1104 /** URI ***********************************************************************/ 1105 1106 /**1107 * Return the domain for the root blog.1108 *1109 * Eg: http://example.com OR https://example.com1110 *1111 * @since 1.0.01112 * @deprecated 12.0.01113 *1114 * @return string The domain URL for the blog.1115 */1116 function bp_core_get_root_domain() {1117 _deprecated_function( __FUNCTION__, '12.0.0', 'bp_rewrites_get_root_url()' );1118 $domain = bp_rewrites_get_root_url();1119 1120 /**1121 * Filters the domain for the root blog.1122 *1123 * @since 1.0.11124 * @deprecated 12.0.0 Use {@see 'bp_rewrites_get_root_url'} instead.1125 *1126 * @param string $domain The domain URL for the blog.1127 */1128 return apply_filters_deprecated( 'bp_core_get_root_domain', array( $domain ), '12.0.0', 'bp_rewrites_get_root_url' );1129 }1130 1105 1131 1106 /**
Note: See TracChangeset
for help on using the changeset viewer.