Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #37267, comment 4


Ignore:
Timestamp:
07/20/2016 10:42:25 PM (9 years ago)
Author:
henry.wright
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #37267, comment 4

    initial v1  
    22
    33{{{
    4 if ( ! get_option( 'thread_comments' ) ) {
    5     return '';
    6 }
     4function get_cancel_comment_reply_link( $text = '' ) {
     5    if ( ! get_option( 'thread_comments' ) ) {
     6        return '';
     7    }
     8    // Rest of code.
    79}}}