尝试添加默认文本以显示在被调用标题文本之前

时间:2018-06-22 13:58:00

标签: php css wordpress

试图在被调用的get_the_title钩子之前的同一h5标题中添加默认文本(了解更多信息)。

现在显示的示例:

  

MLS#T3110937 9313 MANDRAKE CT,坦帕,佛罗里达州33647

添加LEARN MORE的示例:总是在被调用的标题挂钩之前添加:

  

了解更多信息:MLS#T3110937 9313 MANDRAKE CT,TAMPA,FL 33647

这是我正在使用的代码:

<div class="overlay">
  <div class="container">
    <h1><?php echo balanceTags($title);?></h1>

    <li>
      <div class="pull-left"><?php echo balanceTags($title);?> </div>
        <h5>
          <div style="text-align: center;">
              <?php echo get_the_title();?> 
          </div>
        </h5>
    </li>	            
  </div>
</div>

2 个答案:

答案 0 :(得分:0)

我认为您正在寻找的是

<div style="text-align: center;">
    <?php echo 'Learn More: ' . get_the_title();?> 
</div>

要在php中进行连接,请在两个或多个输出变量之间添加一个.

您还可以将文本放在PHP标记的外部。

<div style="text-align: center;">
    Learn More: <?php echo get_the_title();?> 
</div>

答案 1 :(得分:0)

尝试一下,我想您也需要该文本上的固定链接。

<div class="overlay">
  <div class="container">
    <h1><?php echo balanceTags($title);?></h1>
    <div class="pull-left"><?php echo balanceTags($title);?></div>
    <h5 style="text-align: center;">

              <?php the_title(); ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">Learn More</a>

    </h5>            
  </div>
</div>

也对此进行反弹:

https://developer.wordpress.org/reference/functions/the_permalink/