Changeset 15926
- Timestamp:
- 10/23/2010 12:03:54 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-links-opml.php
r13747 r15926 37 37 <?php 38 38 if ( empty($link_cat) ) 39 $cats = get_categories(array('t ype' => 'link', 'hierarchical' => 0));39 $cats = get_categories(array('taxonomy' => 'link_category', 'hierarchical' => 0)); 40 40 else 41 $cats = get_categories(array('t ype' => 'link', 'hierarchical' => 0, 'include' => $link_cat));41 $cats = get_categories(array('taxonomy' => 'link_category', 'hierarchical' => 0, 'include' => $link_cat)); 42 42 43 43 foreach ( (array)$cats as $cat ) :
Note: See TracChangeset
for help on using the changeset viewer.