close
joomla 文章導覽列預設都是 "上一個"或"下一個"
此篇文章是將  "上一個"或"下一個" 更改為 文章標題顯示而非上一個,下一個

打開Joomla根目錄下:/plugins/content/pagenavigation.php.
 
找到第109 行
$query = 'SELECT a.id,'
替換為:
$query = 'SELECT a.id,a.title,'
 
 
第153 行
 $row->prev = JRoute::_('index.php?option=com_content&view=article&catid
='.$row->prev->catslug.'&id='.$row->prev->slug);
替換為:
  $row->prevTitle=$row->prev->title;
    $row->prev = JRoute::_('index.php?option=com_content&view=article&catid
='.$row->prev->catslug.'&id='.$row->prev->slug);
 
 
第159行
$row->next = JRoute::_('index.php?option=com_content&view=article&catid
='.$row->next->catslug.'&id='.$row->next->slug);
替換為:
$row->nextTitle=$row->next->title;
$row->next = JRoute::_('index.php?option=com_content&view=article&catid
='.$row->next->catslug.'&id='.$row->next->slug);
 
 
第177 行
 . JText::_( '<' ) . $pnSpace . JText::_( 'Prev' ) . '</a>
替換為:
 .$row->prevTitle. JText::_( '<' ) . $pnSpace . JText::_( 'Prev' ) . '</a>
 
 
第196行
. JText::_( 'Next' ) . $pnSpace . JText::_( '>' ) .'</a>
替換為:
. JText::_( 'Next' ) . $pnSpace . JText::_( '>' ).$row->nextTitle .'</a>
arrow
arrow

    拓界行銷-ajlin 發表在 痞客邦 留言(0) 人氣()