我需要一些问题的帮助。
我的主页上有一个小部件区域,里面有4个小部件。 每个小部件都有标题,图像和描述。
我想知道如何为整个区域添加动态标题,尤其是4个小部件。 用户应在小部件区域的后端更改标题。
这是我的代码:
<div class="row-fluid">
<h1>The dynamic title should be here</h1>
<?php
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('utility-area') ) : ?><?php endif;
?>
</div>
我希望这一切都有意义,非常感谢你!
答案 0 :(得分:0)
<div class="row-fluid">
<h1><?php echo($someDynamicTitleYouveGotFromYourDatabaseOrWhatever); ?></h1>
<?php
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('utility-area') ) : ?><?php endif;
?>
</div>