MichaelH
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Importing database tables?Also make sure your database user does have the privleges necessary to create tables:
http://codex.wordpress.org/Installing_WordPress#Step_2:_Create_the_Database_and_a_UserForum: Fixing WordPress
In reply to: Posts – categories, etcSee how only the Blog page shows the categories and archives? How do I do that?
Use the category and archives widget.
Forum: Fixing WordPress
In reply to: How can i remove this link or move it inside my footer?Nice work afperea, at version 2.6 of that plguin there’s an option in the settings to enable (disable) the link below the footer.
Looks good. Thank afperea.
Will look forward to your 2.6 version. Thanks.
Forum: Fixing WordPress
In reply to: Order Categories by most recently updated?You’d need to add a counter and an if statement inside that foreach.
Forum: Fixing WordPress
In reply to: How can i remove this link or move it inside my footer?@jvazjr – might consider some of these:
Forum: Fixing WordPress
In reply to: How can i remove this link or move it inside my footer?@afperea – No, the base_64 is to obfuscate the copyright. It’s intentional and should be fixed.
This thread is a good example of why it should be fixed.
Forum: Fixing WordPress
In reply to: View Site Link, pleaseMight see if you like a different Admin color scheme under Your Profile.
Forum: Fixing WordPress
In reply to: View Site Link, pleaseAt the top left of the admin screen is your site name. Click on that.
Forum: Fixing WordPress
In reply to: Posts summary option doesn't workLook in all the files in the wp-content/themes/twentyten folder.
Or get http://wingrep.com and search for those (you’d need the theme folder on your local computer)
Forum: Fixing WordPress
In reply to: SQL Just wont do as its told?If you are change the URL for your site you may want to use http://wordpress.org/extend/plugins/search-and-replace/ to change the URL in your database tables.
Forum: Everything else WordPress
In reply to: Related postsCould be a plugin or even in your theme.
Use FTP to download your WordPress files to your local computer and use something like http://wingrep.com to find that string.
Forum: Fixing WordPress
In reply to: Order Categories by most recently updated?See if you can make use of something like this.
<?php // get 20 latest posts, display the categories used on those posts (most recent categories) $cat_array = array(); $args=array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 20, '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(); $cat_args=array('orderby' => 'none'); $cats = wp_get_post_terms( $post->ID , 'category', $cat_args); foreach($cats as $cat) { $cat_array[$cat->term_id] = $cat->term_id; } endwhile; } if ($cat_array) { echo '<p>List of categories used on 20 latest posts</p>'; foreach($cat_array as $cat) { $category = get_term_by('ID',$cat, 'category'); echo '<p><a href="' . esc_attr(get_term_link($category, 'category')) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a><p> '; } } wp_reset_query(); // Restore global post data stomped by the_post(). ?>Forum: Fixing WordPress
In reply to: Posts summary option doesn't workIn your theme change from using the function the_content() to using the_excerpt().
Related:
the_content()
the_excerpt()
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy