Article Title as Link Title on Pagination - Joomla! Forum - community, help and support
hello everyone!
i heavily customizing joomla make more seo friendly. therefore add title of article pagination underneath article pointing link title.
so if next button is:
i change into:
this code creating pagination output next button (found in plugins/content/pagenavigation.php):
i've tried many things already, i'm able display title of article being viewed on both prev , next button
you awesome if can me out! in advance
i heavily customizing joomla make more seo friendly. therefore add title of article pagination underneath article pointing link title.
so if next button is:
code: select all
<a href="example.html">next</a>i change into:
code: select all
<a href="example.html" title="the title of example article">next</a>this code creating pagination output next button (found in plugins/content/pagenavigation.php):
code: select all
if ($row->next) {
$html .= '
<li class="next">
<a href="'. $row->next .'" rel="next" title="'. $row->next .'">'
. jtext::_('jnext') . $pnspace . jtext::_('jglobal_gt') .'</a>
</li>';
}
i've tried many things already, i'm able display title of article being viewed on both prev , next button
you awesome if can me out! in advance
Comments
Post a Comment