Esempio n. 1
0
/**
 * Remove metadata matching criteria from a term.
 *
 * 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.
 *
 * @param int $term_id term ID
 * @param string $meta_key Metadata name.
 * @param mixed $meta_value Optional. Metadata value.
 *
 * @return bool False for failure. True for success.
 */
function fw_delete_term_meta($term_id, $meta_key, $meta_value = '')
{
    return fw_delete_metadata('fw_term', $term_id, $meta_key, $meta_value);
}
Esempio n. 2
0
/**
 * 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.
 *
 * @param int $comment_id comment ID
 * @param string $meta_key Metadata name.
 * @param mixed $meta_value Optional. Metadata value.
 *
 * @return bool True on success, false on failure.
 */
function fw_delete_comment_meta($comment_id, $meta_key, $meta_value = '')
{
    return fw_delete_metadata('comment', $comment_id, $meta_key, $meta_value);
}