wp_list_cats [ WordPress Function ]
wp_list_cats ( $args = '' )
| Parameters: |
|
| See: | |
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: list_cats, wp_list_authors, wp_list_pages, wp_list_categories, wp_list_comments
No description yet.
Source
<?php
function wp_list_cats($args = '') {
_deprecated_function( __FUNCTION__, '2.1', 'wp_list_categories()' );
$r = wp_parse_args( $args );
// Map to new names.
if ( isset($r['optionall']) && isset($r['all']))
$r['show_option_all'] = $r['all'];
if ( isset($r['sort_column']) )
$r['orderby'] = $r['sort_column'];
if ( isset($r['sort_order']) )
$r['order'] = $r['sort_order'];
if ( isset($r['optiondates']) )
$r['show_last_update'] = $r['optiondates'];
if ( isset($r['optioncount']) )
$r['show_count'] = $r['optioncount'];
if ( isset($r['list']) )
$r['style'] = $r['list'] ? 'list' : 'break';
$r['title_li'] = '';
return wp_list_categories($r);
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- wp_list_cats - WordPress Codex
This function has been deprecated. That means it has been replaced by a new function or is no longer supported, and may be removed from future versions.
codex.wordpress.org - Template Tags/wp list categories « WordPress Codex
... tags replaced in WordPress 2.1, list_cats() and wp_list_cats() ...
codex.wordpress.org - WordPress › Support » Tags — wp_list_cats
Register · WordPress › Support » wp_list_cats. 12…4Next » ...
wordpress.org - wordpress - How wp_list_cats is working? - Stack Overflow
Nov 15, 2011 ... <?php wp_list_cats('sort_column=id&optioncount=0&use_desc_for_title= 0&child_of=8'); ?> How the methods work in wordpress ? They seem ...
stackoverflow.com
Gebruikersdiscussies [ wordpress.org ]
- tommysvr on "Listing Child & Sibling Categories"
- lindalibinbin on "Listing Child & Sibling Categories"
- ArielZusya on "categories and subcategories loop in a page template"
- alchymyth on "categories and subcategories loop in a page template"
- ArielZusya on "categories and subcategories loop in a page template"
- alchymyth on "categories and subcategories loop in a page template"
- esmi on "categories and subcategories loop in a page template"
- ArielZusya on "categories and subcategories loop in a page template"
- businesslogs on "when ever a new theme is uploaded,"
- johnsennnn on "when ever a new theme is uploaded,"