define( 'WP_POST_REVISIONS', false );
новые ревизии уже не создаются.WP_POST_REVISIONS:
false, 0: do not store any revisions (except the one autosave per post)
/* Disable wptexturize */
add_filter( 'run_wptexturize', '__return_false' );
remove_filter( 'the_content', 'wptexturize' ); // в записях
remove_filter( 'the_excerpt', 'wptexturize' ); // в анонсе
remove_filter( 'comment_text', 'wptexturize' ); // в комментариях
remove_filter( 'the_title', 'wptexturize' ); // в заголовках
/**
* Filter the returned comment count for a post.
*
* @param string|int $count A string representing the number of comments a post has, otherwise 0.
* @param int $post_id Post ID.
*/
function comment_count( int $count, int $post_id ): int {
if ( ! is_admin() ) {
$comments = get_comments( 'status=approve&post_id=' . $post_id );
$separate_comments = separate_comments( $comments );
return count( $separate_comments['comment'] );
} else {
return $count;
}
}
add_filter( 'get_comments_number', 'comment_count', 0 );
flex: 1 0 min-content;
даже при отсутствии white-space: nowrap;
никаких переносов не было.