Changeset 48658
- Timestamp:
- 07/28/2020 10:13:50 AM (4 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r48591 r48658 497 497 * Default false. 498 498 * @return mixed An array if $single is false. The value of meta data field 499 * if $single is true. 499 * if $single is true. False for an invalid $comment_id. 500 500 */ 501 501 function get_comment_meta( $comment_id, $key = '', $single = false ) { -
trunk/src/wp-includes/ms-site.php
r48214 r48658 1088 1088 * Default false. 1089 1089 * @return mixed An array if $single is false. The value of meta data field 1090 * if $single is true. 1090 * if $single is true. False for an invalid $site_id. 1091 1091 */ 1092 1092 function get_site_meta( $site_id, $key = '', $single = false ) { -
trunk/src/wp-includes/post.php
r48635 r48658 2121 2121 * Default false. 2122 2122 * @return mixed An array if $single is false. The value of the meta field 2123 * if $single is true. 2123 * if $single is true. False for an invalid $post_id. 2124 2124 */ 2125 2125 function get_post_meta( $post_id, $key = '', $single = false ) { -
trunk/src/wp-includes/taxonomy.php
r48600 r48658 1293 1293 * Default false. 1294 1294 * @return mixed An array if $single is false. The value of the meta field 1295 * if $single is true. 1295 * if $single is true. False for an invalid $term_id. 1296 1296 */ 1297 1297 function get_term_meta( $term_id, $key = '', $single = false ) { -
trunk/src/wp-includes/user.php
r48590 r48658 832 832 * Default false. 833 833 * @return mixed An array if $single is false. The value of meta data field 834 * if $single is true. 834 * if $single is true. False for an invalid $user_id. 835 835 */ 836 836 function get_user_meta( $user_id, $key = '', $single = false ) {
Note: See TracChangeset
for help on using the changeset viewer.