spiderlinginc
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] create event not in admin menu@aspengrovestudios – Worked! Thank you!
Forum: Plugins
In reply to: espn widgetI figured it out. I used WP’s Text widget.
Forum: Plugins
In reply to: single post by authorThanks miloandrew for the info.
This helps in getting the single post, but not for one specific author. So, following the Loop link you provided and a subsequent link or two from there I found the http://codex.wordpress.org/Author_Templates. I tried the $curauth->ID variable, but got a blank page. I then opened the author-template.php file and found $authordata->ID and successfully used it with the code below.
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); if ($authordata->ID == '2') : ?> <!-- Formatting --> <?php break; ?> <?php endif; ?> <?php endwhile; ?> <?php else : ?> <H2 class="center">Not Found</H2> <P class="center">Sorry, but you are looking for something that isn't here.</P> <?php endif; ?>Forum: Fixing WordPress
In reply to: hacked or not??I understand that there isn’t any importing when upgrading. I was just wondering if I could do so after upgrading. Which I now know can be done.
Thanks for the info.
Forum: Fixing WordPress
In reply to: hacked or not??version 2.0.4
So, can I import the current tables into the database when I upgrade to the latest version? The data/posts haven’t been compromised – have they??
Thanks.