Welcome, visitor! Log in
 

Source View: user_trailingslashit

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.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: apply_filters( "hook_name", "what_to_filter" ).

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
17 function user_trailingslashit($string, $type_of_url = '') {
18      global $wp_rewrite;
19      if ( $wp_rewrite->use_trailing_slashes )
20           $string = trailingslashit($string);
21      else
22           $string = untrailingslashit($string);
23
24      // Note that $type_of_url can be one of following:
25      // single, single_trackback, single_feed, single_paged, feed, category, page, year, month, day, paged
26      $string = apply_filters('user_trailingslashit', $string, $type_of_url);
27      return $string;
28 }
29
30
31 function permalink_anchor($mode = 'id') {
32      global $post;
33      switch ( strtolower($mode) ) {
34           case 'title':
35                $title = sanitize_title($post->post_title) . '-' . $post->ID;