pre_get_document_title
if ( ! function_exists( 'pre_get_document_title_callback' ) ) {
/**
* Function for `pre_get_document_title` filter-hook.
*
* @param string $title The document title.
*
* @return string
*/
function pre_get_document_title_callback( $title ) {
if ( is_front_page() ) {
$title = 'Другой заголовок для главной';
}
return $title;
}
}
add_filter( 'pre_get_document_title', 'pre_get_document_title_callback' );
<?php if (have_rows('slider', 59)) : while (have_rows('slider', 59)) : the_row(); ?>
<?php echo wp_get_attachment_image(get_sub_field('slider-image'), 'large', false, array("loading" => "lazy")); ?>
<?php endwhile; endif; ?>