Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_content_more_link

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
360
361                     /**
362                      * Filters the Read More link text.
363                      *
364                      * @since 2.8.0
365                      *
366                      * @param string $more_link_element Read More link element.
367                      * @param string $more_link_text    Read More text.
368                      */
369                     $output .= apply_filters( 'the_content_more_link', ' <a href="' . get_permalink( $_post ) . "#more-{$_post->ID}\" class=\"more-link\">$more_link_text</a>", $more_link_text );
370                }
371                $output = force_balance_tags( $output );
372           }
373      }
374
375      return $output;
376 }
377
378 /**