MichaelH
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: 10,000s of usersShouldn’t have a problem.
Make sure you do backups routinely. See WordPress Backups, WordPress_Optimization, and wp-config.php WP_ALLOW_REPAIR
Forum: Fixing WordPress
In reply to: all categories id retriving<?php $taxonomy = 'category'; $term_args=array( 'hide_empty' => false, 'orderby' => 'name', 'order' => 'ASC', ); $allterms = get_terms($taxonomy,$term_args); if ($allterms) { foreach( $allterms as $term ) { echo $term->term_id . ' ' .$term->name; } } ?>Forum: Themes and Templates
In reply to: Adding an admin message on theme installProbably not the answer you want, but what about just going to the options page like this theme:
http://wordpress.org/extend/themes/vigilanceForum: Themes and Templates
In reply to: Category link to a HTML page ?What about one of these plugins?
http://wordpress.org/extend/plugins/page-links-to/
http://wordpress.org/extend/plugins/quick-pagepost-redirect-plugin/Forum: Everything else WordPress
In reply to: Tried to move to Root Directory — Lost sitePlease consider posting a “New Job Request” [1] [2] to have a professional work with you.
[1] http://jobs.wordpress.net/postajob.php
[2] http://www.elance.com/php/search/main/eolsearch.php?matchType=profile#page=1&matchKeywords=wordpress&catFilter=100Forum: Fixing WordPress
In reply to: Using wordpress as a portalDon’t know of something like that.
Forum: Fixing WordPress
In reply to: SQL restore errorIf you have a good backup of your database, then drop your database tables before doing the phpMyAdmin import (restore).
Forum: Fixing WordPress
In reply to: domain woesCheck with your host to make sure you don’t have a redirect setup in your hosting ‘control panel’
Forum: Plugins
In reply to: My php code is not creating a tableNot sure I can help but can point you to Creating_Tables_with_Plugins.
Forum: Plugins
In reply to: Multiple Users and Passwordshttp://www.google.com/search?q=use+.htaccess+to+password+protect
For the users can’t the normal WordPress Users/Profiles and login could suffice?
Forum: Plugins
In reply to: Any such widget to randomly display code snippetsOh forget what I said–you don’t want to use posts.
Maybe consider using a Custom Post Type and save your snippets in those, then just change the above so that
'post_type' => 'your custom post type',Forum: Plugins
In reply to: Any such widget to randomly display code snippetsConsider downloading and installing Otto’s PHP Code Widget, then something like this code in one of those widgets:
<?php $args=array( 'orderby' => 'rand' 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 1, 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p> <?php the_content(); endwhile; } wp_reset_query(); // Restore global post data stomped by the_post(). ?>Forum: Hacks
In reply to: Category Posting ListingsWith the help of Template Hierarchy determin what is display your Category Templates and delete template tag, the_content(), from that Template.
Forum: Fixing WordPress
In reply to: Display posts by tag from category which click come fromSee if this gets you anywhere:
http://wordpress.org/extend/plugins/query-multiple-taxonomies/Forum: Fixing WordPress
In reply to: Using wordpress as a portalYou might consider using Custom Fields and plugins that make those custom fields act (e.g. dropdown) the way you need:
Possibles:
* http://wordpress.org/extend/plugins/magic-fields/
* http://wordpress.org/extend/plugins/more-fields/
* http://wordpress.org/extend/plugins/supple-forms/
* http://wordpress.org/extend/plugins/custom-field-template/and related
* http://wordpress.org/extend/plugins/custom-field-taxonomies/
* http://wordpress.org/extend/plugins/wp-custom-fields-search/