MichaelH
Forum Replies Created
-
Forum: Plugins
In reply to: Category Posts WidgetWhat about the native Recent Post widget?
Forum: Fixing WordPress
In reply to: Pagination Issue Using query_postsAt the very least, this line
<?php query_posts('cat=1&showposts=5'); ?>should be
<?php query_posts('cat=1&showposts=5&paged=' . $paged); ?>Forum: Fixing WordPress
In reply to: Change the Post and Page post-type names?Just create a custom post type of Events then use http://wordpress.org/extend/plugins/post-type-switcher/ to switch any existing posts to events.
Forum: Themes and Templates
In reply to: Get posts by custom post type AND category/tag?Are you using categories or tags?
If categories you’ll need this instead
$taxonomy = 'category';// e.g. post_tag, category $param_type = 'category__in'; // e.g. tag__in, category__inForum: Fixing WordPress
In reply to: How to get post/page name?Might want to look at some of the popular post plugins to get an idea of how they do it…
Forum: Everything else WordPress
In reply to: can someone explain Tag Pages vs Taxonomy ArchivesMight provide a link to download that plugin then I’ll flag this thread so the plugin author might see it.
Forum: Everything else WordPress
In reply to: can someone explain Tag Pages vs Taxonomy ArchivesDon’t know that the 2nd example would work because it doesn’t really know what tag you want.
Forum: Fixing WordPress
In reply to: How to put something in "The Loop"?Probably somewhere in the area just before line 37.
Forum: Themes and Templates
In reply to: Custom Post IssueAt the least, after this line:
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>you would need to display the necessary info such as:
echo $loop->post->post_title;Forum: Hacks
In reply to: Adding custom fields to a taxonomyYou can’t.
But you could create ‘page’ or a ‘post’ (make it a draft if you want) and enter the custom fields, then with that $post->ID get the custom fields for that taxonomy–kind of ugly but workable…
Forum: Themes and Templates
In reply to: WordPress loop callDon’t know if I can offer much more than those Codex articles.
Forum: Themes and Templates
In reply to: WordPress loop callYou might want to look at using shortcodes for that.
Forum: Fixing WordPress
In reply to: How to get post/page name?Wouldn’t
$post->post_titlecontain what you want?Forum: Fixing WordPress
In reply to: How can I send a mass email to my users?Haven’t used this but have you looked at http://wordpress.org/extend/plugins/mass-mail/
Forum: Fixing WordPress
In reply to: Basics: How do I allow people to register for a site?