Editorial Content - Source Excerpt 03
Summary
This source excerpt preserves a bounded section of Anti-Christ.net/wp-content/themes/anti-christ-thin-veil/inc/editorial-content.php so readers can inspect the evidence without opening the full source file.
**Source path:** Anti-Christ.net/wp-content/themes/anti-christ-thin-veil/inc/editorial-content.php
/**
* Rename or de-prioritize the default Uncategorized lane.
*/
function actv_repair_default_category() {
$journal = get_category_by_slug( 'journal' );
if ( $journal ) {
update_option( 'default_category', (int) $journal->term_id );
}
$uncategorized = get_category_by_slug( 'uncategorized' );
if ( ! $uncategorized ) {
return;
}
wp_update_term(
(int) $uncategorized->term_id,
'category',
array(
'name' => 'Journal Intake',
'slug' => 'journal-intake',
'description' => 'Fallback intake lane for posts that still need an archive category.',
)
);
}