How to add post meta in custom post type?
-
Hi,
I want to add post meta for custom post type “ad”.
Here is the code I am using to add post meta.
I have put this code in my theme’s functions.php file but still post meta not showing in any ad from wordpress admin.
function add_ads_shared( $post_id ) {
add_post_meta( $post_id, 'et_ad_shared', 0, true);
}
add_action( 'ad', 'add_ads_shared' );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to add post meta in custom post type?’ is closed to new replies.