Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php echo $this->Html->link($post['Post']['total_comments'].' comments', array('controller' => 'posts', 'action' => 'view', $post['Post']['slug'].'#comments'),array('class' => 'comments-icon')); ?>
  2.  
  3. echo $this->Html->link($post['Post']['total_comments'].' comments', array(
  4. 'controller' => 'posts',
  5. 'action' => 'view',
  6. $post['Post']['slug'],
  7. '#' => 'comments' //Or #comments only without key
  8. ), array('class' => 'comments-icon'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement