rooseveltrp
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Moved from a Different Host (Blank Page)Hi Mac,
That did the trick. I had to use phpmyadmin to make the changes 🙂
Forum: Fixing WordPress
In reply to: Image Caption is not being parsed!Thanks buddy, you were right. The File Manager plug-in i recently tried was causing the problem.
Forum: Fixing WordPress
In reply to: Author Page Not Found!I moved the above link elsewhere, you can see the problem here:
http://www.webhostingb.com/company-news (category)
http://www.webhostingb.com/company-news/new-website-launched.html (post)
http://www.webhostingb.com/author/Roosevelt%20Purification/ (author page)
Forum: Fixing WordPress
In reply to: Author Page Not Found!Hi,
Here’s a sample post, http://www.webhostingb.com/blog-posts/effective-video-marketing.html
and the author name is linking to: http://www.webhostingb.com/author/Roosevelt%20Purification/
Forum: Fixing WordPress
In reply to: Publish articles with special charachtersHi,
I am sorry but I don’t understand what you are trying to say.my issue is,
if I publish an article with apostrophe:
My name is john, and I am good in that. You´re welcome!
In the database it only stores up to
My name is john, and I am good in that. You
And rest of the body is completely ignored.
Forum: Fixing WordPress
In reply to: Publish articles with special charachtersAny help guys?
Forum: Plugins
In reply to: Create categories and posts from within a wordpress pluginI got it, it’s
wp_insert_category
Forum: Themes and Templates
In reply to: Fetch Random PostsAfter searching with the tag I found my solution. Here’s how it works
<?php $rand_posts = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_status = 'publish' AND post_type='post' ORDER BY RAND() LIMIT 4"); foreach($rand_posts as $post) { setup_postdata($post); ?> <?php if( get_post_meta($post->ID, "hpbottom", true) ): ?> <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php echo get_post_meta($post->ID, "hpbottom", true); ?>" alt="<?php the_title(); ?>" /></a> <?php else: ?> <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php bloginfo('template_url'); ?>/images/thumbnail.png" alt="<?php the_title(); ?>" /></a> <?php endif; ?> <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b> <?php the_content_limit(350, "[Read more]"); ?> <div style="border-bottom:1px dotted #2255AA; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div> <?php } ?>Forum: Fixing WordPress
In reply to: Display Blog Titles Under CategoryAwesome, just did :-).
Forum: Fixing WordPress
In reply to: Display Blog Titles Under CategoryThank you sooo much. In my theme archive.php did the trick :).
Still learning WP you know.
Forum: Fixing WordPress
In reply to: Display Blog Titles Under CategoryHi,
Thanks for your response.Could you tell me which template file I need to edit?
Thank you.