Hello,

Problem: I have Created 'Custom Post'
In Publish Button which i have to insert in Custom Table of database.

Right now i have create template single-Posttype.php but on Publish button not insert in custom table
Is Any Hooks for that ?

Thank You.

Got Solution of Above Question
Using Hook

add_action('publish_{custom-post-name}', 'insert_into_wp_faourite', 10, 2);

function insert_into_wp_faourite
{
    //db query here
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.