MichaelH
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: scheduling for custom post types?http://core.trac.wordpress.org/ticket/12842 was to have fixed that problem. If you can describe steps to duplicate you might open a ticket at trac. See Reporting Bugs.
Forum: Fixing WordPress
In reply to: How can i remove this link or move it inside my footer?From a user prospective the problem is garbage like the base_64_decoding stuff. Get rid of it please.
Forum: Fixing WordPress
In reply to: What to do to let quests be able to post articles?Post from blog
* http://wordpress.org/extend/plugins/sidebar-post/
* http://wordpress.org/extend/plugins/tdo-mini-forms/
* http://www.deliciousdays.com/cforms-plugin/
* http://wordpress.org/extend/plugins/posthaste
* or the p2 theme http://wordpress.org/extend/themes/p2
* let visitors upload files:
o http://www.deliciousdays.com/cforms-plugin/
o http://wordpress.org/extend/plugins/tdo-mini-forms/
o http://wordpress.org/extend/plugins/nextgen-public-uploader/
o http://wordpress.org/extend/plugins/contact-form-7/Forum: Plugins
In reply to: Tags Listed on a Page?Copy your index.php to page.php, delete any loop code there, then add that code.
For the TwentyTen theme the Page Template would look like:
<?php /** * Template Name: My Page of Tags * * Selectable from a dropdown menu on the edit page screen. * * @package WordPress * @subpackage Twenty Ten * @since 3.0.0 */ ?> <?php get_header(); ?> <div id="container"> <div id="content"> <?php //list terms in a given taxonomy $taxonomy = 'post_tag'; $term_args=array( 'hide_empty' => false, 'orderby' => 'name', 'order' => 'ASC' ); $tax_terms = get_terms($taxonomy, $term_args); ?> <ul> <?php foreach ($tax_terms as $tax_term) { echo '<li>' . '<a href="' . esc_attr(get_term_link($tax_term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $tax_term->name ) . '" ' . '>' . $tax_term->name.'</a></li>'; } ?> </ul> </div><!-- #content --> </div><!-- #container --> <?php get_sidebar(); ?> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: custom field – FOR PAGE – remove key valueThen make sure you are using that in a loop where
$post->IDis a valid value.If necessary paste all the code from that template (Page Template) at wordpress.pastebin.com and report the link back here and maybe someone can spot the problem.
Forum: Fixing WordPress
In reply to: Posts – categories, etc1. Code your template to list posts in different loops.
See:
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy
The Loop
2. Use plugins such as:
# http://wordpress.org/extend/plugins/postlists/
# http://wordpress.org/extend/plugins/pages-posts/
# http://wordpress.org/extend/plugins/list-category-posts/ (uses shortcode)
# http://wordpress.org/extend/plugins/simple-posts-list/ (uses shortcode}
# http://wordpress.org/extend/plugins/nurelm-get-posts/ (uses shortcode)Forum: Fixing WordPress
In reply to: sorting a tag cloud by tag slugHave you tried
wp_tag_cloud('orderby=slug');Forum: Fixing WordPress
In reply to: [NSFW] Login launches a php file requestMake sure your host hasn’t changed anything.
Make sure you host has httpd.conf correct
May need to add:
AddType application/x-httpd-php .phpto your httpd.conf file.
Also make sure you have enough memory allocated to PHP:
Methods for increasing the amount of memory a PHP script may consume.1. Use the memory bump plugin from http://wordpress.org/extend/plugins/memory-bump/
2. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)3. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M4. Try adding this line to your wp-config.php file:
define('WP_MEMORY_LIMIT', '64M');5. Talk to your host.
Forum: Fixing WordPress
In reply to: HTML in page to show posts of a certain categoryWordPress doesn’t really have a “page to simply show posts of a certain category.”
Options are
1. Use the plugin already described or find a different plugin
2. Create a Page Template that displays the postsThe other problem would be not having the correct database name/server in your wp-config.php.
If you database is intact (look at wp_posts table for posts from two years ago), then I would immediately do a backup of the database then check your wp-config.php file.
It’s been a while since I wrote this but maybe it will help:
http://codex.wordpress.org/User:MichaelH/Installation_Notes/YahooForum: Plugins
In reply to: Tags Listed on a Page?<?php //list terms in a given taxonomy $taxonomy = 'post_tag'; $term_args=array( 'hide_empty' => false, 'orderby' => 'name', 'order' => 'ASC' ); $tax_terms = get_terms($taxonomy, $term_args); ?> <ul> <?php foreach ($tax_terms as $tax_term) { echo '<li>' . '<a href="' . esc_attr(get_term_link($tax_term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $tax_term->name ) . '" ' . '>' . $tax_term->name.'</a></li>'; } ?> </ul>Forum: Fixing WordPress
In reply to: showing more than 10 post in categoryChange your Settings->Reading->Blog Pages show at most x posts
Change the post_per_page setting in your Template.
Use a plugin such as
http://wordpress.org/extend/plugins/custom-post-limits/Forum: Themes and Templates
In reply to: Adding link to author's posts on profile pageYou would need to make a plugin from the example Peter provided.
Forum: Plugins
In reply to: Bulk (or batch) update Custom FieldsNot sure what you are asking.
Forum: Plugins
In reply to: Bulk (or batch) update Custom FieldsMight need to use phpMyAdmin to do something like that:
UPDATE wp_postmeta SET meta_value = '5000' WHERE meta_key = 'daily_rate'or this plugin:
http://wordpress.org/extend/plugins/mass-custom-fields-manager/