在wordpress帖子中摘录为子字符串

时间:2014-02-24 13:23:27

标签: php wordpress

我从事.NET应用程序,但目前必须处理php / wordpress。我在WordPress中有一个代码,它显示图像鼠标悬停的帖子标题。

<h5><?php echo the_title(false, false); ?></h5>

我想用该帖子的描述的第一行/子字符串替换标题。 要么 我可以在这里使用摘录,即在每个帖子上写一些摘录,并将它们放在上面提到的h5标签中。 我需要一些提示来实现两个任务中的任何一个。 注意 在执行我的努力/测试目的时,我编写了这段代码,但它无法正常工作

<h5><?php echo substr(the_title(false, false),0,4); ?></h5>

谢谢,

2 个答案:

答案 0 :(得分:2)

要使用摘录,请尝试 -

<h5><?php the_excerpt(); ?></h5>

或者更好的方法是使用自定义字段。您可以从帖子/页面编辑屏幕轻松添加任何帖子或页面的自定义字段。使用特定的密钥,例如:subtitle,带有get_post_meta函数的显示 -

<h5><?php echo get_post_meta( get_the_ID(), 'subtitle', true ); ?></h5>

参考:
1.功能the_excerpt
2.功能get_post_meta
3.功能get_the_ID
4.如何添加自定义字段Youtube Video

答案 1 :(得分:0)

使用功能

<?php
$my_excerpt = get_the_excerpt();
if ( $my_excerpt != '' ) {
   }
echo $my_excerpt; 
 ?>