首页 > CMS > Wordpress > 正文

WordPress常用函数-get_the_title()教程

2024-09-07 00:50:42
字体:
来源:转载
供稿:网友

说明:返回指定文章ID的标题,如果文章是protected 或者private,则返回Protected: 标题或者Private:标题,在循环内部和外部都可以使用,如果在外部则必须指定文章ID.

用法:<?php echo get_the_title($ID); ?> 

参数:$ID (int) (optional) 文章ID或者在循环中是获取当前文章的标题,默认为空.

返回值:string 文章标题,如果文章是protected 或者private,则返回Protected: 标题或者Private:标题.

例子:输出当前文章标题

<?php echo get_the_title(); ?> 

页面面包屑导航,两个层次:

  1. <div class='breadcrumb'
  2.     <?php // if there is a parent, display the link 
  3.     $parent_title = get_the_title($post->post_parent); 
  4.     if ( 
  5.     $parent_title != the_title(' '' ', false) ) { 
  6.       echo '<a href=' . 
  7.     get_permalink($post->post_parent)  . ' ' . 'title=' . $parent_title . '>' . $parent_title    . '</a> » 
  8.     '; 
  9.     } 
  10.     // then go on to the current page link 
  11.     ?> 
  12.     <a href='<?php the_permalink() ?>'rel='bookmark' title='<?php the_title(); ?>'
  13.     <?php the_title(); ?></a> » 
  14.     </div> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表