我已经使用comment\\u post-action-hook完成了这项工作。如果将来有人需要,这里有答案。
add_action(\'comment_post\', \'insert_gallery\');
function insert_gallery() {
global $wpdb, $post;
$post_id = $post->ID;
$wpdb->insert(
$wpdb->prefix. \'my_medias\',
array(
\'post_id\' => $post_id,
\'image_name\' => \'trial-image1\',
\'status\' => 1
),
array(
\'%d\',
\'%s\',
\'%d\'
)
);
}