shkola/wp-content/themes/dekart/template-parts/program-pksh/service-link.php
2026-07-18 16:05:15 +00:00

30 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Ссылка на услугу — страница /podgotovka-k-shkole/
*
* @package Dekart
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$url = carbon_get_post_meta( get_the_ID(), 'pksh_prog_service_url' );
$label = carbon_get_post_meta( get_the_ID(), 'pksh_prog_service_label' );
if ( empty( $url ) ) {
return;
}
?>
<section class="prog-section prog-section--accent">
<div class="prog-container">
<div class="prog-cta">
<h2 class="prog-section-title prog-section-title--light">Записаться на занятия</h2>
<p class="prog-text prog-text--light">Данная программа реализуется в рамках курса подготовки к школе. Запишите ребёнка на бесплатное пробное занятие и познакомьтесь с педагогами.</p>
<a href="<?php echo esc_url( $url ); ?>" class="prog-cta__btn">
<?php echo esc_html( $label ?: 'Записаться на подготовку к школе' ); ?>
</a>
</div>
</div>
</section>