I used this plugin to enable my user able to make Posts from the front end of my website–
But the plugin only supports native WordPress Posts, and not Custom Post Types.
I have contacted the Author of the plugin, on how I can use the plugin to also Post Custom Post Types, and he asked me to add the Custom Code from here— https://perishablepress.com/faqs-user-submitted-posts/#usp-custom-post-type
I guess we can see the Code from that link below:
// USP submit posts to CPT
function usp_modify_post_type($post_type) {
return 'book'; // change this to the slug of your post type
}
add_filter('usp_post_type', 'usp_modify_post_type');From the look of things, the code requires the “slug” of the Custom Post Type, to work.
Your plugin is the Custom Post Type I am hoping to use the Post Submission plugin to Post.
So, what’s the slug of your Video Post Type?
Needing to hear from you soon.
Regards.
