mainecampus
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin upgrade doesn’t showI figured it out: The line endings were set to Mac instead of Unix. This was causing the plugin to break the plugin admin page and also for it not to automatically update.
Forum: Plugins
In reply to: Plugin upgrade doesn’t showAny thoughts?
Forum: Plugins
In reply to: Plugin upgrade doesn’t showYes, both. You can see it at http://wordpress.org/extend/plugins/courier/.
Forum: Plugins
In reply to: All tags in an array w/out linksSweet, you’re right, it worked. Thanks!
Forum: Plugins
In reply to: All tags in an array w/out linksAs far as I know, both get_tags() and get_terms() can not be returned as arrays.
Forum: Plugins
In reply to: Tweet only a certain category from wordpress entries…You can use a service like TwitterFeed and feed in a category’s RSS feed in the time being.
Forum: Plugins
In reply to: Resetting WP-Stats ?Uninstall wp stats and use Top 10 instead: http://ajaydsouza.com/wordpress/plugins/top-10/. Use Google Analytics to find out detailed data like site referrers.
Forum: Plugins
In reply to: [Plugin: Co-Authors] Search don’t workIt looks like a great plugin, but I can’t get the english 1.1.5 version to work, either. No matter what I type in, I can’t bring up the search.
Forum: Fixing WordPress
In reply to: Date and Time of Most Recent PostWell I was wondering if there was a tag that automatically added that information. This is what I have right now but it screws up my breadcrumb navigation:
<?php global $post; $the_newest = get_posts('numberposts=1'); ?> <?php foreach($the_newest as $post) : setup_postdata($post); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_time('F jS, g:i a') ?></a> <?php endforeach; ?>