1. 程式人生 > >wordpress 通過the_title()和get_the_title函式獲取文章標題

wordpress 通過the_title()和get_the_title函式獲取文章標題

the_title() 輸出或返回當前文章標題。此標籤用在主迴圈裡。如果此文章是受密碼保護的或者是私有的,
就會在文章標題前標記上"Protected:"或者"Private:"字樣。

用法: <?phpthe_title( $before, $after, $echo ); ?>

引數:

$before 字串型,標題之前放置的文字,預設是空

$after  字串型,標題之後放置的檔案,預設是空

$echo 邏輯型,true表示顯示標題,false表示返回它並用在PHP中,預設為true.

示例:

<?phpthe_title('<h3>','</h3>'); ?>


get_the_title()通過文章ID返回文章標題。如果此文章是受密碼保護的或者是私有的就會在文章標題前標記上"Protected:"或者"Private:"字樣。


用法:<?phpecho get_the_title(ID); ?>

示例:

eg1:

<?php   
   query_posts('cat=1');
    
   $dropdown="<selectname='dropdown'>";
    
    while(have_posts()):the_post();
    
   $dropdown.="<optionvalue='".get_the_title()."'>".get_the_title()."</option>";
    
   endwhile;wp_reset_query();
    
   $dropdown.="</select>";
    
    echo$dropdown;
?>

eg2:


<div class='breadcrumb'>

<?php
$parent_title =get_the_title($post->post_category);

if($parent_title !=the_title("<h3>","<h3>",false)){

  echo ('<ahref="'.get_permalink($post->post_category).'"title="'.$parent_title .'">'.$parent_title.'</a>&raquo;');
 
  }
    
?>

<a href='<?php the_permalink()?>' rel='bookmark' title='<?phpthe_title(); ?>'>

<?php the_title();?></a>&raquo;

</div>

Values


$post->post_status

$post->comment_status

$post->ping_status

$post->post_pingback

$post->post_category

$post->post_content

$post->post_title

$post->post_excerpt

$post->page_template

$post->post_parent

$post->menu_order

原始檔:the_title()和get_the_title()都在wp-includes/post-templete.php檔案。