Changeset 57860 for trunk/src/wp-admin/includes/post.php
- Timestamp:
- 03/20/2024 07:05:04 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/post.php
r57580 r57860 1085 1085 * @global wpdb $wpdb WordPress database abstraction object. 1086 1086 * 1087 * @param int $post id A post ID.1087 * @param int $post_id A post ID. 1088 1088 * @return array[] { 1089 1089 * Array of meta data arrays for the given post ID. … … 1099 1099 * } 1100 1100 */ 1101 function has_meta( $post id ) {1101 function has_meta( $post_id ) { 1102 1102 global $wpdb; 1103 1103 … … 1107 1107 FROM $wpdb->postmeta WHERE post_id = %d 1108 1108 ORDER BY meta_key,meta_id", 1109 $post id1109 $post_id 1110 1110 ), 1111 1111 ARRAY_A
Note: See TracChangeset
for help on using the changeset viewer.