Changeset 35725 for trunk/src/wp-includes/meta.php
- Timestamp:
- 11/22/2015 03:50:32 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r35718 r35725 533 533 } 534 534 535 /** This filter is documented in wp-includes/meta -functions.php */535 /** This filter is documented in wp-includes/meta.php */ 536 536 $check = apply_filters( "get_{$meta_type}_metadata", null, $object_id, $meta_key, true ); 537 537 if ( null !== $check ) … … 654 654 $where[$id_column] = $meta_id; 655 655 656 /** This action is documented in wp-includes/meta -functions.php */656 /** This action is documented in wp-includes/meta.php */ 657 657 do_action( "update_{$meta_type}_meta", $meta_id, $object_id, $meta_key, $_meta_value ); 658 658 659 659 if ( 'post' == $meta_type ) { 660 /** This action is documented in wp-includes/meta -functions.php */660 /** This action is documented in wp-includes/meta.php */ 661 661 do_action( 'update_postmeta', $meta_id, $object_id, $meta_key, $meta_value ); 662 662 } … … 670 670 wp_cache_delete($object_id, $meta_type . '_meta'); 671 671 672 /** This action is documented in wp-includes/meta -functions.php */672 /** This action is documented in wp-includes/meta.php */ 673 673 do_action( "updated_{$meta_type}_meta", $meta_id, $object_id, $meta_key, $_meta_value ); 674 674 675 675 if ( 'post' == $meta_type ) { 676 /** This action is documented in wp-includes/meta -functions.php */676 /** This action is documented in wp-includes/meta.php */ 677 677 do_action( 'updated_postmeta', $meta_id, $object_id, $meta_key, $meta_value ); 678 678 } … … 722 722 $object_id = $meta->{$column}; 723 723 724 /** This action is documented in wp-includes/meta -functions.php */724 /** This action is documented in wp-includes/meta.php */ 725 725 do_action( "delete_{$meta_type}_meta", (array) $meta_id, $object_id, $meta->meta_key, $meta->meta_value ); 726 726 … … 746 746 wp_cache_delete($object_id, $meta_type . '_meta'); 747 747 748 /** This action is documented in wp-includes/meta -functions.php */748 /** This action is documented in wp-includes/meta.php */ 749 749 do_action( "deleted_{$meta_type}_meta", (array) $meta_id, $object_id, $meta->meta_key, $meta->meta_value ); 750 750
Note: See TracChangeset
for help on using the changeset viewer.