Changeset 9202 for trunk/wp-includes/bookmark-template.php
- Timestamp:
- 10/16/2008 07:13:30 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/bookmark-template.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/bookmark-template.php
r9139 r9202 33 33 * 'after' - Default is '</li>' (string). The html or text to append to each 34 34 * bookmarks. 35 * 'link_before' - Default is '' (string). The html or text to prepend to each 36 * bookmarks inside the <a> tag. 37 * 'link_after' - Default is '' (string). The html or text to append to each 38 * bookmarks inside the <a> tag. 35 39 * 'between' - Default is '\n' (string). The string for use in between the link, 36 40 * description, and image. … … 50 54 'show_images' => 1, 'show_name' => 1, 51 55 'before' => '<li>', 'after' => '</li>', 'between' => "\n", 52 'show_rating' => 0 56 'show_rating' => 0, 'link_before' => '', 'link_after' => '' 53 57 ); 54 58 … … 94 98 95 99 $output .= '<a href="' . $the_link . '"' . $rel . $title . $target. '>'; 100 101 $output .= $link_before; 96 102 97 103 if ( $bookmark->link_image != null && $show_images ) { … … 104 110 if ($show_name) $output .= $name; 105 111 112 $output .= $link_after; 113 106 114 $output .= '</a>'; 107 115
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)