= FWP_SCHEMA_25) : ?>

= FWP_SCHEMA_25) : ?>
Tag $object as...

"; if (fwp_test_wp_version(FWP_SCHEMA_28)) : // WordPress 2.8+ fwp_option_box_opener(__('Tags'), 'tagsdiv', 'postbox'); ?>

" />

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; } class FeedWordPressSettingsUI { function instead_of_posts_box ($link_id = null) { fwp_option_box_opener('Syndicated Posts, Comments & Pings', 'syndicatedpostsdiv', 'postbox'); if (!is_null($link_id)) : $from_this_feed = 'from this feed'; $by_default = ''; $id_param = "&link_id=".$link_id; else : $from_this_feed = 'from syndicated feeds'; $by_default = " by default"; $id_param = ""; endif; ?>

Use the settings page to set up how new posts will be published, whether they will accept comments and pings, any custom fields that should be set on each post, etc.

Use the settings page to set up how new posts will be assigned to authors.

Use the settings page to set up how new posts are assigned categories or tags.

0) : $userdata = array(); $userdata['ID'] = NULL; $userdata['user_login'] = sanitize_user($newuser_name); $userdata['user_login'] = apply_filters('pre_user_login', $userdata['user_login']); $userdata['user_nicename'] = sanitize_title($newuser_name); $userdata['user_nicename'] = apply_filters('pre_user_nicename', $userdata['user_nicename']); $userdata['display_name'] = $wpdb->escape($newuser_name); $newuser_id = wp_insert_user($userdata); if (is_numeric($newuser_id)) : $ret = $newuser_id; else : // TODO: Add some error detection and reporting endif; else : // TODO: Add some error reporting endif; return $ret; } /* fwp_insert_new_user () */