akwhitacre
Forum Replies Created
-
Forum: Themes and Templates
In reply to: the_author_meta not displayingAh-ha, this ended up working (though the original really should have worked):
https://wordpress.org/support/topic/the_author_meta?replies=3#post-1240832
Instead of using
get_the_author_meta('display_name'), useget_the_author_meta('display_name',get_query_var('author') ).Forum: Themes and Templates
In reply to: the_author_meta not displaying@runeshai For what it’s worth nine months later, I’m having the same problem. I’m trying to get the author’s display name to appear within
<head><title></title></head>of the author template and can’t get it to appear. Plain text appears,bloginfo('admin_email');appears if I try it…everything seems to appear except fields associated withthe_author_meta();.Forum: Fixing WordPress
In reply to: Starting RSS feed items with author nameAh-ha, figured it out. Around line 114 in feed.php (in the wp-includes folder), change…
function get_the_title_rss() { $title = get_the_title(); $title = apply_filters('the_title_rss', $title); return $title; }to…
function get_the_title_rss() { $author = get_the_author(); $author = apply_filters('the_author_rss', $author); $title = get_the_title(); $title = apply_filters('the_title_rss', $title); return $author . " // " . $title; }Forum: Plugins
In reply to: Possible for user to combine categories into custom category feed?To clarify this question, I manage a blog with a ton of different authors. It would be incredibly-super-awesome to allow registered users to click checkboxes next to author names and create a custom feed of just those authors.
Anyone seen a WordPress site or plugin that does this?
Forum: Fixing WordPress
In reply to: Can’t save theme changes, get sent to front pageYep, and did so again just now. But I still get the same issue–for example, I just clicked to activate a new plugin and was bounced to the front page (and it goes without saying, the plugin didn’t activate).
Forum: Fixing WordPress
In reply to: Header.php hacked. Need advice, have tried (seemingly) everythingYou’re definitely on to something, RVoodoo! The logs pointed me to an out-of-place wp-pass.php file in one of my uploads folders along with a clearly-suspicious topper.php file, and the logs indicated that wp-pass.php was a redirect to header.php.
They happened to be in the July ’09 upload subfolder, which is right around the time the hack started making itself known.
So I’ve deleted wp-pass.php and topper.php, and I’ll reset passwords.
Thanks all. Hopefully this finally does the trick!
Forum: Fixing WordPress
In reply to: Header.php hacked. Need advice, have tried (seemingly) everythingHi, Adiant. I had that thought as well and so ran a McAfee scan last night. But alas, zero bad files on my system.
I’ll take that as good news, but still no hints as to where the problem lies.
Forum: Fixing WordPress
In reply to: Header.php hacked. Need advice, have tried (seemingly) everythingThanks for the quick reply, esmi. Yep, I’ve worked through that particular list. And I too am wondering if it might be my host–has anyone else had a WordPress hack issue with GoDaddy?
Forum: Fixing WordPress
In reply to: ERROR: WordPress 2.9 requires MySQL 4.1.2 or higherDealing with the same problem, so about to go back to 2.8.6. But Denis-de-Bernardy, it’s not necessary the host’s issue. I’ve been managing my blog for nearly five years, starting back when MySQL 4.0 was the norm. I never had a problem until using WP Automatic Upgrade last night and was told halfway through the update that I needed 4.1.2+.
Forum: Fixing WordPress
In reply to: endless redirect loop when trying to access admin systemHi guys,
I’m having the same problem, yet I’ve deactivated all my plugins and still get the endless redirect loop.
It occurs while I’m moving a WP blog within a site (http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_Within_Your_Site)–in this case, I’m helping a friend move his installation from a subdirectory to the root.
What else should I be checking if not the plugins?
Forum: Themes and Templates
In reply to: Sort Author ListA friend and I just figured out how to do this for sorting by last name, which is pretty heavy duty stuff but can be tweaked to sort by other things:
http://wordpress.org/support/topic/101637?replies=1#post-502444Fortunately, I think sorting by user ID is more straightforward. You can go into template-functions-authors.php (in your wp-includes directory), and around line 180, change “order by display_name” to “order by ID”.
Forum: Fixing WordPress
In reply to: Sorting authorsI sent this to Kakfaesqui for his thoughts, but a friend and I just figured out how to do this:
http://wordpress.org/support/topic/101637?replies=1#post-502444Forum: Plugins
In reply to: Multiple authors assinged single postAnd just a quick addition, the Multiple Authors plugin is capable of doing what I describe–with a combination of custom fields and commenting out some lines of code.
But it still seems like there should be a more straightforward way.
Forum: Fixing WordPress
In reply to: Feed for LinksI’m looking for the same thing and still haven’t found a solution. Any ideas out there?
Forum: Fixing WordPress
In reply to: Generate list of posts that share a custom field?Thanks for the link, Samsarin. That worked like a charm. It took some retooling with the way I had written my loop, but it did just want I wanted.