MichaelH
Forum Replies Created
-
Might see if this get you started:
http://wordpress.org/extend/plugins/query-multiple-taxonomies/Use the static front page ability via Administration > Settings > Reading and in the Page Template don’t use wp_header/footer and just put the code you want–to list pages for example:
<?php wp_list_pages(); ?>Related:
wp_list_pages()Forum: Plugins
In reply to: How do I hide one category from Recent Posts widget?One of these should get you there:
* http://wordpress.org/extend/plugins/query-posts/
* http://wordpress.org/extend/plugins/wordpress-loop/
* http://wordpress.org/extend/plugins/category-posts/
* http://wordpress.org/extend/plugins/list-category/
* http://wordpress.org/extend/plugins/bns-featured-category/Forum: Plugins
In reply to: Order Posts by Number of VotesYou might want to review http://wordpress.org/extend/plugins/vote-it-up/installation/ as it does sound like you can display data for each post e.g.
<?php DisplayVotes(get_the_ID()); ?>and you could probably use wpdb on the votes table to order posts.Forum: Fixing WordPress
In reply to: Using post_date outside "The Loop"Definitely read
Forum: Installing WordPress
In reply to: Semi-functional install onlySolution 1
If allowed by your host, putting this in an .htaccess file will solve the problem:
DirectoryIndex index.html index.htm index.phpSolution 2
Some hosts allow you to make a change, via their hosting control panel, to the DirectoryIndex. It’s typically described as Indexes or Index documents, but may also require you to type something like
DirectoryIndex index.html index.htm index.php
or specify index.php as an index type file.Solution 3
Instruct Apache to treat index.php as an index file. If you own the server, or have access to the http.conf file, simply modify the DirectoryIndex line in httpd.conf to:
DirectoryIndex index.html index.htm index.phpSolution 4
Contact your hostForum: Fixing WordPress
In reply to: Only Date Posts for 1st CatUse the template tag, the_time(), instead of the_date.
From
http://codex.wordpress.org/Template_Tags/the_dateSPECIAL NOTE: When there are multiple posts on a page published under the SAME DAY, the_date() only displays the date for the first post (that is, the first instance of the_date()). To repeat the date for posts published under the same day, you should use the Template Tag the_time() or get_the_date() (since 3.0) with a date-specific format string.
Use <?php the_time(get_option(‘date_format’)); ?> to add the date set in the admin interface.Forum: Plugins
In reply to: Order Posts by Number of VotesThis has a widget
http://wordpress.org/extend/plugins/vote-it-up/Forum: Fixing WordPress
In reply to: Using post_date outside "The Loop"Assuming you are talking about this code being in one of your theme templates then
posted on ".mysql2date("m.d.y", $info['post_date']);If this is a site outside of WordPress, read Integrating_WordPress_with_Your_Website
Forum: Installing WordPress
In reply to: Unpacking the core updateBy your own statement you have 3 servers so maybe one is different than the other.
Also could be a PHP memory issue.
Also might find http://wordpress.org/extend/plugins/core-control/ and see if transports are working.
Forum: Fixing WordPress
In reply to: Using post_date outside "The Loop"An example:
<?php $my_date = mysql2date("m.d.y", $info['post_date']); echo 'date ' . $my_date; ?>Forum: Fixing WordPress
In reply to: please help.. menu with page and category combination reorderingMight look at the Order field when writing/editing a page.
Also consider this techinque so you only have to worry about pages in your menu:
How to easily display links to both Pages and Categories in the blog navigation header?Note–I deleted duplicate topic you started.
Forum: Fixing WordPress
In reply to: How do I install WordPress on a subdomain via GoDaddy?You need to talk/check with Godaddy about setting up a subdomain.
http://www.google.com/search?q=godaddy+setting+up+subdomainThen when you’ve got the sub-domain working you will install WordPress in that ‘sub folder’.
Installing WordPressForum: Fixing WordPress
In reply to: can't import database sqlThen update your permalinks by visiting Administration > Settings > Permalinks and clicking on Save Changes
Forum: Fixing WordPress
In reply to: Posts – categories, etcJust use the Category Widget and let that present the links for your categories.