$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Custom Meta fields Update hook?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Custom Meta fields Update hook?

matteradmin11PV0评论

HI Is there any hook available that we can add it into functions.php and fire only when "Custom meta fields gets edited" ? I really need this . If anyone with the knowledge , please help me.

Till now, I've discovered save_post hook but it only fires when post title field or Description fields gets edited. IN my case I've one custom post type "property" with so many custom meta fields with it. and I need to find some hook which works same as save_post but when custom fields gets edited.

Thanks

HI Is there any hook available that we can add it into functions.php and fire only when "Custom meta fields gets edited" ? I really need this . If anyone with the knowledge , please help me.

Till now, I've discovered save_post hook but it only fires when post title field or Description fields gets edited. IN my case I've one custom post type "property" with so many custom meta fields with it. and I need to find some hook which works same as save_post but when custom fields gets edited.

Thanks

Share Improve this question asked Dec 12, 2014 at 13:54 VijayVijay 11 silver badge3 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 1

Yes, there is number of hooks in generic low level update_metadata() function. Limited to the post meta you would probably want to use update_postmeta or updated_postmeta.

This hook updated_{$meta_type}_meta is called after a call to update_metadata succeeds.

<?php add_action( "updated_{$meta_type}_meta", $function_name', 10, 4 ); ?>

For example, to respond to updates to post metadata:

<?php
    add_action( 'updated_post_meta', 'my_update_post_meta', 10, 4 );

    function my_update_post_meta($meta_id, $post_id, $meta_key, $_meta_value) 
    {
        //do stuff
    }

?>

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far