You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
// 加载投资者关系页面Banner样式
wp_enqueue_style ( 'investor-relations-css' , get_template_directory_uri () . '/assets/css/investor-relations.css' , array (), '1.0.0' );
// 设置默认标题,如果通过简码传递了标题参数则使用传递的标题
$banner_title = isset ( $title ) ? esc_html ( $title ) : '投资者关系' ;
// 设置区块ID和类名( 如果通过简码传递)
$block_id = isset ( $block [ 'id' ]) ? $block [ 'id' ] : 'investor-relations-' . uniqid ();
$block_class = isset ( $block [ 'className' ]) ? $block [ 'className' ] : '' ;
?>
<div class="page-full-width <?php echo esc_attr($block_class); ?>" id="<?php echo esc_attr($block_id); ?>">
<!-- 投资者关系Banner -->
<section class="investor-banner">
<div class="investor-banner-content">
<h2 class="investor-banner-title"><?php echo $banner_title; ?></h2>
</div>
</section>
</div>