Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




delete_comment_meta [ WordPress Function ]

delete_comment_meta ( $comment_id, $meta_key, $meta_value = '' )
Parameters:
  • (int) $comment_id comment ID
  • (string) $meta_key Metadata name.
  • (mixed) $meta_value Optional. Metadata value.
Uses:
Links:
Returns:
  • (bool) False for failure. True for success.
Defined at:



Remove metadata matching criteria from a comment.

You can match based on the key, or key and value. Removing based on key and value, will keep from removing duplicate metadata with the same key. It also allows removing all metadata matching key, if needed.

Source


<?php
function delete_comment_meta($comment_id$meta_key$meta_value '') {
    return 
delete_metadata('comment'$comment_id$meta_key$meta_value);
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics