Расширение постов и страниц дополнительными полями
Популярный - имеет много различных типов полей
https://wordpress.org/plugins/advanced-custom-fields/
Если нужна возможность создавать объекты и массивы объектов (Repeater), есть возможность платного расширения до версии PRO
https://www.advancedcustomfields.com/pro/
Бесплатная альтернатива. Имеется тип Loop (массив объектов, подобен Repeater в ACF PRO). Количество типов полей ограничено 14.
https://wordpress.org/plugins/custom-field-suite/
СЕО оптимизация
https://wordpress.org/plugins/wordpress-seo/
Спрятать страничку логина для пущей безопасности
https://wordpress.org/plugins/wps-hide-login/
Оптимизация и кеширование (для ускорения загрузки сайта)
https://wordpress.org/plugins/wp-fastest-cache/
Организаця структуры данных по https://schema.org/ для поисковиков
https://wordpress.org/plugins/schema/
Оптимизация скриптов
Тут можно создать шаблон http://plugin.michael-simpson.com/ Так же есть много статей для разработчика.
function disable_canonical_redirect_for_front_page( $redirect ) {
if (is_page() && $front_page = get_option( 'page_on_front' )) {
if ( is_page( $front_page ) )
$redirect = false;
}
return $redirect;
}
add_filter( 'redirect_canonical', 'disable_canonical_redirect_for_front_page' );
add_action( 'init', function () {
add_rewrite_rule(
'^(.+/)(start-trial|request-demo|get-full-list|thank-you)(/?)$',
'index.php?pagename=$matches[1]',
'top'
);
add_rewrite_rule(
'^(start-trial|request-demo|get-full-list|thank-you)(/?)$',
'index.php',
'top'
);
flush_rewrite_rules( false );
});