예제 #1
0
function get_the_meta_value($key, $post = null, $content_filter = false)
{
    $value = Facade_WP_MetaBox::get($key, $post);
    if ($content_filter) {
        $value = the_content_filter($value);
    }
    return $value;
}
예제 #2
0
 protected function getValue($key)
 {
     return Facade_WP_MetaBox::get($key);
 }