MichaelH
Forum Replies Created
-
Forum: Themes and Templates
In reply to: is_single() doesn't work with my permalink structureI’d switch to the default permalinks, (leave the category base blank), switch to the TwentyTen theme, deactivate all plugins, to see if that resolves the problem.
Forum: Fixing WordPress
In reply to: Can we use BBCode when creating a post?Take a look at shortcodes.
Much info here:
http://www.google.com/search?q=wordpress+using+shortcodes+WordPress+Shortcodes+with+attributes+and+contentForum: Fixing WordPress
In reply to: Publish/categories etc. missing on postsWild guesses–
Disable all plugins, make sure your Screen Options are set to two columns.
According to Administration > Settings > Reading
Posts page – Select in the drop-down box the name of the Page that will now contain your Posts. If you do not select a Page here, your Posts will only be accessible via other navigation features such as category, calendar, or archive links. Even if the selected Page is Password protected, visitors will NOT be prompted for a password when viewing the Posts Page. Also, any Template assigned the Page will be ignored and the theme’s index.php (or home.php if it exists) will control the display of the posts.
Forum: Fixing WordPress
In reply to: How to remove posts tags in bulkGoto the Post Tags menu item and delete the tag(s) there.
Forum: Fixing WordPress
In reply to: transferring fifty thousand posts…Could look into using http://wordpress.org/extend/plugins/csv-importer/ but that would mean you would need to use your MS Word search and replace feature and replace HTML tags with ” and comma delimiters.
Start with a file of 2 or 3 posts.
Forum: Fixing WordPress
In reply to: Adjust code to display excerpt and date/timeReplace
<?php echo $content ?>with
<?php the_excerpt(); ?>for the time/date see the example at:
http://codex.wordpress.org/Template_Tags/the_time#Date_and_TimeForum: Fixing WordPress
In reply to: Exclude custom taxonomy from wp_querypost__not_in, category__not_in, and tag__not_in should work.
That’s just the way they show ids
This will determine if there are any terms in a taxonmy for a given post/custom post and display the terms else it will do nothing…just an example you can fit to your need
$taxonomy='your_taxonomy'; $object_terms = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'all')); if ($object_terms) { echo 'terms for '.$taxonomy; foreach ($object_terms as $term) { echo '<p><a href="' . esc_attr(get_term_link($term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $term->name ) . '" ' . '>' . $term->name.'</a><p> '; } } else { //this taxonomy doesn't exist for this post }Forum: Fixing WordPress
In reply to: List of posts using custom taxonomy termThere is nothing stopping you from putting that in a plugin. You might use a Shortcode or even filter on the_content.
Forum: Fixing WordPress
In reply to: my database errors and could not be repairs, please helpForum: Fixing WordPress
In reply to: Back Date my Article PostAlso might want to review some of the documentation
New To WordPress – Where to StartForum: Fixing WordPress
In reply to: Back Date my Article PostLogin to your admin section
Click on Posts
Click on Edit under the Post you want to change the date
To the right under the Publish module click on Edit next to the Published on date
Change the date to the desired value
Click on update
Forum: Fixing WordPress
In reply to: Stealth Profit Machine Problems@darkwzrd7 – I’ve deleted your other soliciation for skype–please answer questions here in the forum so others can benefit.
Forum: Fixing WordPress
In reply to: Pages and TemplatesContinue discussion at:
http://wordpress.org/support/topic/blog-page-cant-find-default-template?replies=1Forum: Themes and Templates
In reply to: is_single() doesn't work with my permalink structureProvide a link to the problem and maybe someone can see a solution.