equal
deleted
inserted
replaced
151 * bookmark was last updated. |
151 * bookmark was last updated. |
152 * 'echo' - Default is 1 (integer). Whether to echo (default) or return the |
152 * 'echo' - Default is 1 (integer). Whether to echo (default) or return the |
153 * formatted bookmarks. |
153 * formatted bookmarks. |
154 * 'categorize' - Default is 1 (integer). Whether to show links listed by |
154 * 'categorize' - Default is 1 (integer). Whether to show links listed by |
155 * category (default) or show links in one column. |
155 * category (default) or show links in one column. |
|
156 * 'show_description' - Default is 0 (integer). Whether to show the description |
|
157 * of the bookmark. |
156 * |
158 * |
157 * These options define how the Category name will appear before the category |
159 * These options define how the Category name will appear before the category |
158 * links are displayed, if 'categorize' is 1. If 'categorize' is 0, then it will |
160 * links are displayed, if 'categorize' is 1. If 'categorize' is 0, then it will |
159 * display for only the 'title_li' string and only if 'title_li' is not empty. |
161 * display for only the 'title_li' string and only if 'title_li' is not empty. |
160 * 'title_li' - Default is 'Bookmarks' (translatable string). What to show |
162 * 'title_li' - Default is 'Bookmarks' (translatable string). What to show |
248 |
250 |
249 if ( !$echo ) |
251 if ( !$echo ) |
250 return $output; |
252 return $output; |
251 echo $output; |
253 echo $output; |
252 } |
254 } |
253 |
|
254 ?> |
|