我试图在帖子通过代码插入后获得帖子元,但它不起作用。
Post meta not showing:
$id = wp_insert_post( $post_args );
$zip=get_post_meta( $id,\'baseSalary\',true);
print_r($zip);
Below code is working:
$id = wp_insert_post( $post_args );
$zip=get_the_title( $id);
print_r($zip);