具体5:在header部分更改link

Concrete5: Change link in the header section

我的 header.php 文件中包含此 div 内容 application/themes/custom_name/elements

<?php defined('C5_EXECUTE') or die("Access Denied.");
    $this->inc('elements/header_top.php');
    $cl_txt = $c->getAttribute('client_login_txt');
    $cl_url = $c->getAttribute('client_login_url');
?>
......
<div class="login">
    <a href="<?php echo $cl_url ?>" target="_blank">
        <button type="button" class="btn-login"><?php echo $cl_txt ?></button>
    </a>
</div>

我想更改 div 中包含的 link。 我在哪里可以做?

有两个页面属性,link URL 称为客户端 Link URL 和 link 文本称为客户端 Link 文本,我可以通过转到完整站点地图并单击我要更改的页面和 select 属性来编辑它。