最好的方法可能是在每个帖子上附加一个自定义字段,以保持增量{n}。
大意是:
$attach_inc = 1;
if ( is_single() ) {
if ( $attach_inc = get_post_meta( $post_id, \'attachment_inc\', true ) ) {
$attach_inc++;
update_post_meta( $post_id, \'attachment_inc\', $attach_inc );
} else {
add_post_meta( $post_id, \'attachment_inc\', $attach_inc );
}
} else {
if ( $attach_inc = get_option( \'attachment_inc\' ) ) {
$attach_inc++;
set_option( \'attachment_inc\', $attach_inc );
} else {
add_option( \'attachment_inc\', $attach_inc );
}
}
// DO YOUR ADD ATTACHMENT STUFF HERE