2016-11-28 32 views
1

我試圖把大膽的標題從WordPress的一些帖子,我有這樣的一段代碼吧:從客戶區域檢索數據WordPress的

<?php 
    $title_popup = sprintf(__('Uploaded on %s', 'cuar'), get_the_date()); 
    $file_count = cuar_get_the_attached_file_count($post->ID); 
    if(strpos(get_the_title(get_the_ID()),'Garajes Gran')!==false){ 
    ?> 

     <tr> 
      <td class="cuar-title"> 
      <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr($title_popup); ?>"><strong><?php the_title(); ?></strong></a> 
      </td> 
      <td class="text-right cuar-file-count"> 
      <span class="label label-rounded label-default"><?php echo sprintf(_n('%1$s file', '%1$s files', $file_count, 'cuar'), $file_count); ?> </span> 
      </td> 
     </tr> 
    <?php 
     } 

而且我沒有得到我想要的東西因爲所有標題都顯示在黑色上。所以錯在哪裏?我有的標題是:

Presupuestos (Garajes Gran Via) 0 files 
Presupuestos (Viviendas) 0 files 
Contratos (Garajes Gran Via) 5 files 
Contratos (Viviendas Gran Vía) 6 files 
Contadores de Agua 0 files 
Estatutos (Viviendas) 1 file 
Estatutos (Garajes Gran Vía) 

非常感謝。

回答

0

而不是使用the_title();使用get_the_title();

<td class="cuar-title"> 
      <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr($title_popup); ?>"><strong><?php echo get_the_title(); ?></strong></a> 
</td> 
+0

它不起作用,因爲當我這樣做時,標題消失。謝謝 – Carl35

+0

你在迴應嗎? – user3619389

+0

像這樣<?php echo get_the_title(); ?> – user3619389