Video_Post::update_meta( $key, $value )
Parameters
- $key
-
(Required)
- $value
-
(Required)
Return
(bool|int)
Source
File: includes/libs/video-post.class.php
protected function update_meta( $key, $value ){
if( $this->_post ) {
return update_post_meta(
$this->_post->ID,
$key,
$value
);
}
}
