MichaelH
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Shortcode recent postsThese plugin might interest you:
# 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: Index page show up on all pages??On a review of Template Hierarchy, index.php will be used in certain situations.
You could be getting the ‘re’ install because your database table prefix in wp-config.php is no longer correct.
For instance, using phpMyAdmin and find your posts table, If it is named
wp123_poststhen your $table_prefix in wp-config.php should be set towp123.Forum: Installing WordPress
In reply to: Removing "WordPress" as sub-domainYou could reinstall (meaning DROP the tables and delete the wordpress folder) then install the files in the web-root folder.
Another option 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 wordpress folder)
<?php /* Short and sweet */ define('WP_USE_THEMES', true); require('./wordpress/wp-blog-header.php'); ?>Then update your permalinks by visiting Administration > Settings > Permalinks and clicking on Save Changes.
Forum: Fixing WordPress
In reply to: Why won't this query_posts work?Have you tried:
require('/home1/chrisayr/public_html/blog/wp-load.php');[edit well the good Rev got there first]
Forum: Themes and Templates
In reply to: custom sidebar depending on pageSomething like this in your Page Template
if ( is_page('12') ) { get_sidebar('example12'); } else { get_sidebar('example22'); }Get either sidebar-example12.php or sidebar-example22.php
See:
Function_Reference/get_sidebar
Conditional Tags
Page TemplateForum: Fixing WordPress
In reply to: Add new link to menuContinue discussion here:
http://wordpress.org/support/topic/created-new-page-need-new-link?replies=2Please refrain from posting dupicate topics.
Forum: Fixing WordPress
In reply to: Created new page – need new linkYou mean a nav menu that is accessed via Administration > Appearance > Menus?
Or is a theme defined menu using the template tag, wp_list_pages()? In that case look at your theme’s header.php.
Stepping Into Template Tags
Stepping Into Templates
Template HierarchyForum: Fixing WordPress
In reply to: Test data for theme development please!!Just did a test import with folder permissions (e.g wp-content/uploads/2010/11/) set to 755 on linux host and it worked just fine.
Forum: Plugins
In reply to: Is there a way to show unique views of each post in panel?Not sure there’s a plugin that does unique views but look here:
http://wordpress.org/extend/plugins/search.php?q=statisticsForum: Fixing WordPress
In reply to: Test data for theme development please!!You do need to install http://wordpress.org/extend/plugins/wordpress-importer/
Forum: Fixing WordPress
In reply to: How can i remove this link or move it inside my footer?You might want to report those plugins on the wp-hackers email list.
Forum: Themes and Templates
In reply to: Adding link to author's posts on profile pageDon’t think you can define a Page Template for custom post types but you can create a page then display that post type in the page (see the Pages article for an example).
3.1 will offer new abilities: http://core.trac.wordpress.org/ticket/13818
Forum: Fixing WordPress
In reply to: How can i remove this link or move it inside my footer?Since that plugin uses a number of encoded strings I’d recommend using a different plugin.