You appear to be a bot. Output may be restricted
Description
Get the post's meta data.
Note: Post types such as wp_block may not have any post meta data. But we might want to clone them, so it's OK if they don't have any.
Usage
OIK_clone_tree_node::get_post_meta();
Parameters
Returns
void
Source
File name: oik-clone/admin/class-oik-clone-tree-node.php
Lines:
1 to 7 of 7
function get_post_meta() { bw_trace2( $this->post, 'this->post', false, BW_TRACE_DEBUG ); if ( !$this->post->post_meta ) { $this->post->post_meta = get_post_meta( $this->id ); } return true; }