This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('acf/fields/taxonomy/wp_list_categories/name=mycat-tree1', 'mycat1_filter', 10, 2); | |
} | |
function mycat1_filter($args, $field) { | |
$cat = get_category_by_slug('mycat1-slug'); | |
if (empty($cat)) { | |
return $args; | |
} | |
$args['parent'] = $cat->cat_ID; | |
return $args; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* convert column name to index number. | |
* | |
* @param string $col 'Z', 'AA', 'ZAA' | |
*/ | |
function col2idx($col = 'AZ') { | |
$idx = 0; | |
$k = count(range('A', 'Z')); |
OlderNewer