imaginedesignex
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Multiple Editable RegionsOne way I accomplish this is by using custom queries on the page. Essentially you create categories and posts for the extra areas of content that you are trying to manage, and then you run a separate query within the page to pull in the content.
Something like this:
<?php $test = new WP_Query(‘category_name=main&showposts=1’);
while ($test->have_posts()) : $test->the_post(); ?>
<div id=”title”>
<h2>“><?php the_title(); ?></h2>
</div><?php the_content(__(‘Read more’));?>
<?php endwhile;?>
Make sure to replace the category_name with your category name (actually its the category slug so make sure to double check that) and change the $test variable to whatever you need it to be throughout the query.
Good luck
Forum: Requests and Feedback
In reply to: No visitors or comments, whats wrong?You might double check under privacy in your admin panel and make sure that you are allowing the search engines to index your site.
Forum: Fixing WordPress
In reply to: Making an aggregation blog using wordpressI’ve had really good luck with the Lifestream plugin – http://wordpress.org/extend/plugins/lifestream/
Forum: Fixing WordPress
In reply to: Allow all commentsJust from glancing, I’ve not tried to do this before, but under the Discussion settings you at least need to make sure that:
Users must be registered and logged in to comment
An administrator must always approve the comment
Comment author must have a previously approved commentare all 3 unchecked.
Forum: Fixing WordPress
In reply to: Can’t find my API key for Akismet PluginHi,
To get an Akismet key you need to create a login on WordPress.com (if its saying page not found, give it a few it just worked for me when I tested it). Then you just go to your profile once you login and it will give you your API key there.