barkins
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Best way to setup a Category and Tag pageWell, I don’t want it to display in the sidebar, but on the actual page instead.
Forum: Fixing WordPress
In reply to: Backing Up and Restoring Entire WordPress site….I’m trying to get access to the FTP and server.
Is it conceivable to download all the wordpress files (ie wp-content, wp-includes, etc…) and upload them all to my new server and update the wp-config file? Will that work?
Thanks
Forum: Fixing WordPress
In reply to: Backing Up and Restoring Entire WordPress site….I don’t have access to it, only the wordpress admin portion.
Forum: Fixing WordPress
In reply to: How To Insert A Logo/Image Into My Title Header?You’ll have to open the header.php file, and insert your image where ever you wish in there.
Forum: Fixing WordPress
In reply to: How to highlight recent post currently viewing?Here’s how it’s done in case you want to know….
<?php
$IDOutsideLoop = $post->ID;
global $post;$myposts = get_posts(‘showposts=10’);
foreach($myposts as $post) :
?><li <?php if(is_single() && $IDOutsideLoop == $post->ID) print ‘class=”current_post”;’ ?>>“><?php the_title(); ?>
<?php endforeach; ?>
Forum: Fixing WordPress
In reply to: How do I set the date to appear with every post?Thanks Zeo. That worked like a charm.
Forum: Fixing WordPress
In reply to: Display Entire Post in Tag List/Search ListThat worked. Thanks
Forum: Your WordPress
In reply to: butr.net | entertaining and informativeThanks dimartensson!
Although I’m relatively new to WordPress, I’ve really been digging all the plugins available.
Any suggestions?
Forum: Installing WordPress
In reply to: How to fix my XML parsing errorScratch that.
I just want to know how to fix the enclosure error. I’m using Audio-Player 2.0 as the plugin to run my MP3s in the posts, but I think it could be to blame for the error in my RSS feed.
Anyone have any ideas on how to fix it? Thanks
Forum: Installing WordPress
In reply to: How to fix my XML parsing errorThanks, the RSS feed seems to be working now, not really sure what to do about the errors listed from the link you provided samboll.
I deleted a WordPress plugin that handled audio files and would direct them to iTunes, that seemed to have fixed the XML parsing error.
Can you please tell me where I can edit the RSS feed. I need to add a line of code from iTunes to redirect the feed to my feedburner account.
Thanks again.