MichaelH
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Print out all pages of my siteSee what happens if you use a new query–change
query_posts( $args ); if (have_posts()) : while (have_posts()) : the_post();to
$my_query = new WP_Query($args); if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post();See The Loop for examples
Forum: Fixing WordPress
In reply to: FireFox warning – how to get rid of it?Well that nag message is from wp-admin/includes/dashboard.php — see line 28 there — hate to tell you to change core files but guess you could delete that line…
[edit]
also could see if you can use something like this explanation:
http://wordpress.org/support/topic/dashboard-widget-remover?replies=3#post-1391874Forum: Themes and Templates
In reply to: Print out all pages of my siteDidn’t test but something like this would exclude pages with the ids of 2,5,12,14,20:
$args = array( 'post_type' => array( 'page' ), 'post_status' => array( 'publish' ), 'orderby' => 'parent', 'order' => 'asc', 'posts_per_page' => 900, 'post__not_in' => array( 2, 5, 12, 14, 20 ) ); query_posts( $args );Forum: Hacks
In reply to: Can wordpress manage 1000´s of users?Number of users is virtually unlimited. WordPress.com has millions of users and it utilizes WordPress.
Forum: Fixing WordPress
In reply to: WordPress Not in Root Question – Made Changes But Path Not UpdatedNot sure how or why you would have two sites using the same web-root folder — at least that’s what it seems.
Forum: Installing WordPress
In reply to: Moving WordPress to the root directoryIf you have created any content (posts etc) it might be easier to just reinstall. Or you could move it (see Moving WordPress).
Or you could use this trick:
Assuming you installed in a folder called blog, to make WordPress available at http://mydomain.com in Settings->General, change the Site address (URL) to http://mydomain.com and put this index.php file in your web-root folder (it is the same folder that contains the blog folder)<?php /* Short and sweet */ define('WP_USE_THEMES', true); require('./blog/wp-blog-header.php'); ?>Forum: Installing WordPress
In reply to: Install.php file still showing after install completeAlso make sure your WordPress and Site addresses are correct in Administration > Settings > General
Forum: Fixing WordPress
In reply to: home pageMake sure you didn’t set a static front page via Administration > Settings > Reading
Forum: Themes and Templates
In reply to: [Twenty Eleven] Twenty Eleven "Custom Fields"Just because you decide to not display the custom field module does not disable any functionality regarding custom fields except that you don’t see the module in those screens.
Forum: Installing WordPress
In reply to: Call to undefined methodSee http://wordpress.org/support/topic/troubleshooting-wordpress-32-master-list?replies=7#post-2201144 for instructions on this
Forum: Installing WordPress
In reply to: How to upgrade new version do's and dont'sJust use the automatic upgrade under your Dashboard -> Updates
Or if you want to do it manually, see Upgrading WordPress Extended.
Forum: Fixing WordPress
In reply to: Updated to 3.2, site vanished entirelyAssuming your server meets requirements (see Hosting WordPress) then consider redoing the upgrade manually, as describe in Upgrading WordPress Extended.
Forum: Fixing WordPress
In reply to: WordPress Not in Root Question – Made Changes But Path Not UpdatedTo make WordPress available at http://mysite.com in Settings->General, change the Site address (URL) to http://mysite.com and put this index.php file in your web-root folder (it is the same folder that contains the staging folder)
<?php /* Short and sweet */ define('WP_USE_THEMES', true); require('./staging/wp-blog-header.php'); ?>Forum: Fixing WordPress
In reply to: How to get latest revisionMight review some of the examples here:
http://codex.wordpress.org/Class_Reference/WP_QueryIf you do mean revisions, then look at the Type & Status Parameters section in that article.
Forum: Fixing WordPress
In reply to: FireFox warning – how to get rid of it?There was this thread last year that might help you:
http://wordpress.org/support/topic/remove-youre-using-a-old-and-buggy-browser?replies=19