'post_tag', 'textarea_name' => NULL, 'textarea_id' => NULL, 'input_id' => NULL, 'input_name' => NULL, 'id' => NULL, 'box_title' => __('Post Tags'), )); if (!is_array($tags)) : $tags = array(); endif; $tax_name = $params['taxonomy']; $oTax = get_taxonomy($params['taxonomy']); $oTaxLabels = get_taxonomy_labels($oTax); $disabled = (!current_user_can($oTax->cap->assign_terms) ? 'disabled="disabled"' : ''); $desc = "

Tag $object as...

"; if (is_null($params['textarea_name'])) : $params['textarea_name'] = "tax_input[$tax_name]"; endif; if (is_null($params['textarea_id'])) : $params['textarea_id'] = "tax-input-${tax_name}"; endif; if (is_null($params['input_id'])) : $params['input_id'] = "new-tag-${tax_name}"; endif; if (is_null($params['input_name'])) : $params['input_name'] = "newtag[$tax_name]"; endif; if (is_null($params['id'])) : $params['id'] = $tax_name; endif; print $desc; $helps = __('Separate tags with commas.'); $box['title'] = __('Tags'); ?>

add_or_remove_items; ?>

cap->assign_terms) ) :?>
add_new_item; ?>

separate_items_with_commas ); ?>

cap->assign_terms) ) : ?>

choose_from_most_used; ?>

0) : $idPrefix = $prefix.'-'; $idSuffix = "-".$prefix; $namePrefix = $prefix . '_'; else : $idPrefix = 'feedwordpress-'; $idSuffix = "-feedwordpress"; $namePrefix = 'feedwordpress_'; endif; ?>

$taxonomy, 'hide_empty' => 0, 'id' => $idPrefix.'new'.$taxonomy.'-parent', 'class' => 'new'.$taxonomy.'-parent', 'name' => $newcat.'_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3, ) ); ?>

Updating ".$feed['link/name']." from <".$feed['link/uri']."> ..."; flush(); } function update_feeds_finish ($feed, $added, $dt) { if (is_wp_error($added)) : $mesgs = $added->get_error_messages(); foreach ($mesgs as $mesg) : echo "
Feed error: $mesg"; endforeach; echo "\n"; else : echo " completed in $dt second".(($dt==1)?'':'s')."\n"; endif; flush(); } function fwp_author_list () { global $wpdb; $ret = array(); $users = get_users(); if (is_array($users)) : foreach ($users as $user) : $id = (int) $user->ID; $ret[$id] = $user->display_name; if (strlen(trim($ret[$id])) == 0) : $ret[$id] = $user->user_login; endif; endforeach; endif; return $ret; } function fwp_insert_new_user ($newuser_name) { global $wpdb; $ret = null; if (strlen($newuser_name) > 0) : $userdata = array(); $userdata['ID'] = NULL; $userdata['user_login'] = apply_filters('pre_user_login', sanitize_user($newuser_name)); $userdata['user_nicename'] = apply_filters('pre_user_nicename', sanitize_title($newuser_name)); $userdata['display_name'] = $newuser_name; $userdata['user_pass'] = substr(md5(uniqid(microtime())), 0, 6); // just something random to lock it up $blahUrl = get_bloginfo('url'); $url = parse_url($blahUrl); $userdata['user_email'] = substr(md5(uniqid(microtime())), 0, 6).'@'.$url['host']; $newuser_id = wp_insert_user($userdata); $ret = $newuser_id; // Either a numeric ID or a WP_Error object else : // TODO: Add some error reporting endif; return $ret; } /* fwp_insert_new_user () */ function fwp_syndication_manage_page_links_table_rows ($links, $page, $visible = 'Y') { $fwp_syndicated_sources_columns = array(__('Name'), __('Feed'), __('Updated')); $subscribed = ('Y' == strtoupper($visible)); if ($subscribed or (count($links) > 0)) : ?> ${col}\n"; endforeach; print "\n"; print "\n"; print "\n"; print "\n"; $alt_row = true; if (count($links) > 0): foreach ($links as $link): $trClass = array(); // Prep: Get last updated timestamp $sLink = new SyndicatedLink($link->link_id); if (!is_null($sLink->setting('update/last'))) : $lastUpdated = 'Last checked '. fwp_time_elapsed($sLink->setting('update/last')); else : $lastUpdated = __('None yet'); endif; // Prep: get last error timestamp, if any $fileSizeLines = array(); $feed_type = $sLink->get_feed_type(); if (is_null($sLink->setting('update/error'))) : $errorsSince = ''; if (!is_null($sLink->setting('link/item count'))) : $N = $sLink->setting('link/item count'); $fileSizeLines[] = sprintf((($N==1) ? __('%d item') : __('%d items')), $N) . ", " . $feed_type; endif; if (!is_null($sLink->setting('link/filesize'))) : $fileSizeLines[] = size_format($sLink->setting('link/filesize')). ' total'; endif; else : $trClass[] = 'feed-error'; $theError = unserialize($sLink->setting('update/error')); $errorsSince = "
" ."

Returning errors since " .fwp_time_elapsed($theError['since']) ."

" ."

Most recent (" .fwp_time_elapsed($theError['ts']) ."):
" .implode("
", $theError['object']->get_error_messages()) ."

" ."
\n"; endif; $nextUpdate = "
"; $ttl = $sLink->setting('update/ttl'); if (is_numeric($ttl)) : $next = $sLink->setting('update/last') + $sLink->setting('update/fudge') + ((int) $ttl * 60); if ('automatically'==$sLink->setting('update/timed')) : if ($next < time()) : $nextUpdate .= 'Ready and waiting to be updated since '; else : $nextUpdate .= 'Scheduled for next update '; endif; $nextUpdate .= fwp_time_elapsed($next); if (FEEDWORDPRESS_DEBUG) : $nextUpdate .= " [".(($next-time())/60)." minutes]"; endif; else : $lastUpdated .= " · Next "; if ($next < time()) : $lastUpdated .= 'ASAP'; elseif ($next - time() < 60) : $lastUpdated .= fwp_time_elapsed($next); elseif ($next - time() < 60*60*24) : $lastUpdated .= gmdate('g:ia', $next + (get_option('gmt_offset') * 3600)); else : $lastUpdated .= gmdate('F j', $next + (get_option('gmt_offset') * 3600)); endif; $nextUpdate .= "Scheduled to be checked for updates every ".$ttl." minute".(($ttl!=1)?"s":"")."
This update schedule was requested by the feed provider"; if ($sLink->setting('update/xml')) : $nextUpdate .= " using a standard <".$sLink->setting('update/xml')."> element"; endif; $nextUpdate .= "."; endif; else: $nextUpdate .= "Scheduled for update as soon as possible"; endif; $nextUpdate .= "
"; $fileSize = ''; if (count($fileSizeLines) > 0) : $fileSize = '
'.implode(" / ", $fileSizeLines)."
"; endif; unset($sLink); $alt_row = !$alt_row; if ($alt_row) : $trClass[] = 'alternate'; endif; ?> 0) ? ' class="'.implode(" ", $trClass).'"':''); ?>> link_rss) > 0) ? __('Switch Feed') : $caption=__('Find Feed') ); ?> link_rss) > 0): ?>
link_name); ?>
display_feed_settings_page_links(array( 'before' => '
Settings > ', 'after' => '
', 'subscription' => $link, )); endif; ?>
Actions > | |
link_rss, 32)); ?>

no feed assigned

There are no websites currently listed for syndication.