= FWP_SCHEMA_25) : ?>

= FWP_SCHEMA_25) : ?>

Place under...

" />

0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>

Place under...

Place under...

Updating ".$feed['link/name']." from <".$feed['link/uri']."> ..."; flush(); } function update_feeds_finish ($feed, $added, $dt) { echo " completed in $dt second".(($dt==1)?'':'s')."\n"; } function fwp_author_list () { global $wpdb; $ret = array(); // display_name introduced in WP 2.0 if (fwp_test_wp_version(FWP_SCHEMA_20)) : $name_column = 'display_name'; else : $name_column = 'user_nickname'; endif; $users = $wpdb->get_results("SELECT * FROM $wpdb->users ORDER BY {$name_column}"); if (is_array($users)) : foreach ($users as $user) : $id = (int) $user->ID; $ret[$id] = $user->{$name_column}; if (strlen(trim($ret[$id])) == 0) : $ret[$id] = $user->user_login; endif; endforeach; endif; return $ret; }