Changeset 30198 for trunk/src/wp-admin/includes/post.php
- Timestamp:
- 11/03/2014 05:54:04 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/post.php
r30105 r30198 725 725 * @since 1.2.0 726 726 * 727 * @param unknown_type$post_ID728 * @return unknown727 * @param int $post_ID 728 * @return int|bool 729 729 */ 730 730 function add_meta( $post_ID ) { … … 764 764 * @since 1.2.0 765 765 * 766 * @param unknown_type$mid767 * @return unknown766 * @param int $mid 767 * @return bool 768 768 */ 769 769 function delete_meta( $mid ) { … … 795 795 * @since 2.1.0 796 796 * 797 * @param unknown_type$mid798 * @return unknown797 * @param int $mid 798 * @return object|bool 799 799 */ 800 800 function get_post_meta_by_id( $mid ) { … … 809 809 * @since 1.2.0 810 810 * 811 * @param unknown_type$postid812 * @return unknown811 * @param int $postid 812 * @return mixed 813 813 */ 814 814 function has_meta( $postid ) { … … 825 825 * @since 1.2.0 826 826 * 827 * @param unknown_type$meta_id828 * @param unknown_type$meta_key Expect Slashed829 * @param unknown_type$meta_value Expect Slashed830 * @return unknown827 * @param int $meta_id 828 * @param string $meta_key Expect Slashed 829 * @param string $meta_value Expect Slashed 830 * @return bool 831 831 */ 832 832 function update_meta( $meta_id, $meta_key, $meta_value ) { … … 998 998 * @since 2.5.0 999 999 * 1000 * @param unknown_type$type1001 * @return unknown1000 * @param string $type 1001 * @return mixed 1002 1002 */ 1003 1003 function get_available_post_mime_types($type = 'attachment') { … … 1072 1072 * @since 2.5.0 1073 1073 * 1074 * @param unknown_type$id1075 * @param unknown_type$page1074 * @param string $id 1075 * @param string $page 1076 1076 * @return unknown 1077 1077 */
Note: See TracChangeset
for help on using the changeset viewer.