jessi-ray
Forum Replies Created
-
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Images but no SlideshowOh, and for your usefulness, here is the snippet of header code where I have the slideshow.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head> <meta name="writing alone" content="writing alone, site, short stories, short story, blog, fantasy, video games, literature, pages"> <link href="https://www.godsibb.net/wptest/wp-content/themes/godsibbevo/style.css" rel="stylesheet" type="text/css"> <title>Godsibb EVO test skin</title> </head> <body> <?php wp_enqueue_script("jquery"); ?>. <div id="hold"> <div id="banner"> <div id="tab"> </div> <img src="https://www.godsibb.net/wptest/wp-content/themes/Godsibb2.0/images/Godsibbnet.png" class="toplogo" alt="godsibb.net"/> <div id="logo"> <?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?> </div> </div>
Forum: Plugins
In reply to: NEXTGEN GALLERY: Trouble getting thumbnails for large imagesThat worked I think! Thank you.
Forum: Installing WordPress
In reply to: mySQL error #1062Well I am hosted on a subdomain by someone else, or was. My hostess uses Dream Host. I just got hostmonster for another site, which also uses wordpress, but I know the database names are different. The one I’m uploading is Jessisql, and the one that is on there is wp-something… I’m not sure but I know it’s different.
As far as HOW I’m uploading, I’m just going to my php admin, and then going to import, browse for my sql file and upload. Is there something I have to do to specify a separate upload? Please, let me know!!
Forum: Installing WordPress
In reply to: A good web host?I just switched to Host Monster and they’ve been great. You can auto install wordpress and everything. My friend who I code for has Blue Host and it works just as good for WP but I find that the server is a little more… slow? But either one would be fine for wordpress.
Forum: Fixing WordPress
In reply to: Displaying Blog Post on a Static Page?Well I’ve gotten it to work, and it does quite well actually!
I just have one more question…. anyway I can get a link to the single post to display for comments? Also I need post pagination but I can’t seem to get that either. =/
There’s my site… My loop is going something like this now:
<?php $my_query = new WP_Query('cat=1&showposts=1'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p class="post"><h2><?php the_title(); ?></h2></p>
<div class="entry">
<div class="innerpost"><p>
<?php the_content(); ?>
<?php _e('Filed under:'); ?> <?php the_category(', ') ?> on <?php the_time('F jS, Y') ?> <?php _e('by'); ?> <?php the_author(); ?>
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link('Edit', ' | ', ''); ?>
It’s pretty much the same on all of the pages, save for the category numbers.