Attach pdf file to custom post type
Here this is my code which i used in my wordpress site in custom post type for adding the pdf to the post and its work for me try to change its and use it. Hope it will help function add_custom_meta_boxes() { add_meta_box(‘wp_custom_attachment’, ‘Hotel Brochure’, ‘wp_custom_attachment’, ‘hotel_post’, ‘normal’, ‘high’); } add_action(‘add_meta_boxes’, ‘add_custom_meta_boxes’); function wp_custom_attachment() { … Read more