In Joomla content management system, you can set a dynamic page for your website’s blog. It gets updated each time you publish a blog post. You can display excerpts of a number of blog posts in one page with a Read More link. You must be acquainted with editing the text of Read More links and styling the Read More buttons. But this blog post introduces how you can add Joomla article title in Read More links.
Now after setting up, we need to add Joomla article title in Read More link of our blog. You can do this by the help of the following steps:
<a href="<?php echo $this->item->readmore_link; ?>" class="readon<?php echo $this->item->params->get('pageclass_sfx'); ?>">
<?php if ($this->item->readmore_register) :
echo JText::_('Register to read more...');
elseif ($readmore = $this->item->params->get('readmore')) :
echo $readmore;
else :
echo JText::sprintf('Read more...');
endif; ?></a>
echo JText::sprintf('Read more...');
echo JText::sprintf('Read more', $this->item->title);
Test it
Follow these easy steps to add Joomla article title in Read More links. If you are unable to include the titles inside the Read More buttons, then request a quote. Our team will assist you to add Joomla article title in Read More links.