alleyinteractive / archiveless

WordPress plugin to hide posts from archives (lists)
GNU General Public License v2.0
7 stars 4 forks source link

Posts made archiveless without updating post meta don't display archiveless in the editor #59

Closed srtfisher closed 8 months ago

srtfisher commented 1 year ago
wp_update_post(
    [
        'ID'          => $post,
        'post_status' => 'archiveless',
    ],
    true,
);

When the above code is run, the post is made archiveless BUT the Hide from Archives toggle does not appear in the editor as active. This is due to the meta not being set.