MichaelH
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating a list of Categories with recent postsAlso might point you here:
http://wordpress.org/support/topic/view-a-list-of-categories-displayed-on-the-current-pageForum: Fixing WordPress
In reply to: View a list of categories displayed on the current pageForum you selected is fine.
You would need to take the appropriate code that ‘collects’ the used categories and move that into your Category Template(s).
Forum: Fixing WordPress
In reply to: exclude recent posts in a certain categoryOkay, I understand what you want to do, but you can’t get there with a single query_posts. You’d have to do 2 different queries, one to 4 posts from category 9129 that you want to offset, then using those post IDs construct a 2nd query with
post__not_in.Forum: Fixing WordPress
In reply to: "Custom fields" for custom taxonomies? Is it possible?Never used it. Will mark this resolved for now.
Forum: Fixing WordPress
In reply to: How to post without subscribers being notifiedVisit Administration > Plugins > Plugins then click on the Active filter.
Forum: Fixing WordPress
In reply to: User with multiple profiles in forumFor user profiles, WordPress checks to make sure an email address is unique.
Not sure but might consider what they do with this:
http://wordpress.org/extend/plugins/user-switching/Forum: Plugins
In reply to: Pages ControlMight need to look at how the theme author displays those pages. Typically they use the Appearances->Menus ability or they use the template tag, wp_list_pages(), in the theme’s header.php.
Related:
Stepping Into Template Tags
Stepping Into Templates
Template HierarchyForum: Fixing WordPress
In reply to: Allowing users accessMight need a plugin such as Capa Protect.
Forum: Fixing WordPress
In reply to: How to post without subscribers being notifiedLook in your list of activated plugins.
Forum: Fixing WordPress
In reply to: another way to detect homepage?Did you consider one of the Conditional Tags such as
is_home()?Forum: Fixing WordPress
In reply to: Post news on a wordpress page.There isn’t a way to ‘associate’ Pages to categories in the admin. If you use categories on posts WordPress will automatically give you access to a display of all the posts in a particular category if you use something like the Category Widget.
You can also create a Page and use a plugin such as http://wordpress.org/extend/plugins/list-category-posts/
Or the Pages article has the Page of Posts example where you can code it to say if this is Page X, display category Y posts.
Also if this is just an issue of putting both pages and categories in your navigation header see this:
How to easily display links to both Pages and Categories in the blog navigation header?And finally some other threads you might like:
http://wordpress.org/tags/page_of_categoriesForum: Fixing WordPress
In reply to: exclude recent posts in a certain categoryWhat about using the
offsetargument?See query_posts()
Forum: Fixing WordPress
In reply to: A few questionsI’ll address 1 and 2
1. Might be a setting that you need to ask your host about. For info:
this in php.ini post_max_size = 20M upload_max_filesize = 20M or .htaccess php_value upload_max_filesize 20M php_value post_max_size 20M2. You’d have to upload that media to your current host server. If you can do a bulk upload then look at using http://wordpress.org/extend/plugins/add-from-server/
Forum: Fixing WordPress
In reply to: How to post without subscribers being notifiedWordPress doesn’t not email subscribers so you must be using a plugin to do that. If you provide a link to download the plugin I’ll tag this thread so the plugin author and others might be able to help.
Thanks.
Forum: Developing with WordPress
In reply to: Install Categories with a theme.I’d recommend you consider Post Formats that are going to be released with Version 3.1.