WordPress make post sticky via script?

    // Create post objects
    $my_post = array();
    $my_post['post_title'] = 'Main Blog Post Title';
    $my_post['post_content'] = 'Main Blog Post Content';
    $my_post['post_type'] = 'post';


    // Insert the post into the database
    wp_insert_post($my_post);

How can I make this post sticky via the script?

Related posts

Leave a Reply

1 comment