方才更改了「Press This」插件的默认帖子类型为indieblocks_note。现在测试发布一下。

代码如下:

function modify_press_this_post_type( $post_data ) {
    // Check if the post data is for Press This action
    if ( isset( $post_data['post_type'] ) && 'post' === $post_data['post_type'] ) {
        // Change the post type to your custom post type
        $post_data['post_type'] = 'indieblocks_note';
    }
    return $post_data;
}

// Add filter to modify post data before saving
add_filter( 'press_this_save_post', 'modify_press_this_post_type' );