alysha
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Google in Dashboard?I just upgraded to the 2.3 beta 3 from 2.2 and I also see links from Google blog search there. The most annoying part of it is that I see blog entries from my own blog listed there.
I’m not sure if this will display here correctly, but in index-extra.php is where I see this code:
case 'incominglinks' : $rss_feed = apply_filters( 'dashboard_incoming_links_feed', 'https://blogsearch.google.com/blogsearch_feeds?hl=en&scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:' . trailingslashit( get_option('home') ) ); $more_link = apply_filters( 'dashboard_incoming_links_link', 'https://blogsearch.google.com/blogsearch?hl=en&scoring=d&partner=wordpress&q=link:' . trailingslashit( get_option('home') ) ); $rss = @fetch_rss( $rss_feed ); if ( isset($rss->items) && 1 < count($rss->items) ) { // Technorati returns a 1-item feed when it has no results ?> <h3><?php _e('Incoming Links'); ?> <cite><a href="<?php echo htmlspecialchars( $more_link ); ?>"><?php _e('More »'); ?></a></cite></h3> <ul> <?php $rss->items = array_slice($rss->items, 0, 10); foreach ($rss->items as $item ) { ?> <li><a href="<?php echo wp_filter_kses($item['link']); ?>"><?php echo wptexturize(wp_specialchars($item['title'])); ?></a></li> <?php } ?> </ul>
Forum: Everything else WordPress
In reply to: wp 2.2 backupI also had this problem after upgrading to WP 2.2, and came here to find a solution. But, then I found out that the person who created the plugin, isn’t managing it anymore, someone else is. I found an updated version at https://www.ilfilosofo.com/blog/wp-db-backup and it fixed the problem.
Forum: Themes and Templates
In reply to: live search not working since wp2.2 upgradeThanks for the suggestions! After the WP 2.2.1 upgrade, the live search is working just fine now!
Forum: Themes and Templates
In reply to: live search not working since wp2.2 upgradeI also can’t use live search now because of upgrading to WP2.2 – does anyone know of a fix for this? I can’t seem to find any solutions on the Internet for this.