当前位置:首页 > CMS教程 > WordPress > 列表

WordPress常用函数-get_the_title()教程

发布:smiling 来源: PHP粉丝网  添加日期:2014-04-25 09:05:26 浏览: 评论:0 

说明:返回指定文章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> 

Tags: get_the_title() 函数

分享到: