Hiranthi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: relationship between postsNo problem π The plugin was in my plugin list (dashboard) and had to check it out. Looked perfect for you (at least, from what I’ve read), so I just had to let you know ofcourse π
Forum: Fixing WordPress
In reply to: Redirect home page to a category page?You could use something like the Redirection plugin. This would make it also really easy to change the page you’re redirecting to.
Found the problem. I had CMS-like Admin Menu activated and deactivating that plugin brought the menu back to the state it should be.
Forum: Fixing WordPress
In reply to: Creating a (dynamic!) static siteThe %postname% is for pages and posts (I always set it up as %category%/%postname%/).
If mod_rewrite isn’t enabled, you can also use index.php/%postname%/ (instead of just %postname%). This way the pretty urls are parsed with PHP instead of through an .htaccess file.
Forum: Fixing WordPress
In reply to: Subpages and NavigationWell, yeah. Use the is_home() or is_front_page() function for it.
## would be something like:
if ( !is_home() ) { // page isn't home }Forum: Fixing WordPress
In reply to: How to Return Latests Posts by Tag?You should be able to add &tag=angelina and, according to the codex, that should do the trick =)
Forum: Fixing WordPress
In reply to: relationship between postsWould this plugin be something you could use?
Forum: Fixing WordPress
In reply to: Replace HTML Static Site with WordPress Blog PagesWell, your links wonΒ΄t have the .php extension (unless you set that in the permalink setting in settings, and even then the .php will only be included in permalinks for posts and not pages).
There is a redirection plugin (very good one too), which would help you with your PR Γ‘nd the incoming links (you can define where visitors would go).
I’d also recommend reading the Docs.
Forum: Fixing WordPress
In reply to: relationship between postsAaah, ok. That makes sense π
Perhaps one of the following plugins could help you?
If they don’t do what you want, I’d go with adding the tags manually.
Forum: Fixing WordPress
In reply to: relationship between postsWouldn’t it be easier then to add the post to both categories? (Let the post itself be the link between the two categories?)
Forum: Fixing WordPress
In reply to: How to change “page order”See this topic: http://wordpress.org/support/topic/225802?replies=4
Forum: Fixing WordPress
In reply to: relationship between postsBy content-type, do you mean category (a category ‘Artist’ and a category ‘CD’)?
Forum: Fixing WordPress
In reply to: Subpages and NavigationIf I understand it correctly, you only want to show subpages while you’re on a subpage. And yes, that’s possible.
<?php if($post->post_parent) { // You are on a subpage // your code here $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&depth=1&sort_column=menu_order&echo=0"); } else { // you are not on a subpage // your code here } ?>Forum: Fixing WordPress
In reply to: New to php. Need some PHP helpWell, the following should have the same result:
<?php if ( is_home() ) {?> <!-- YOUR HTML HERE --> <?php } ?>Forum: Fixing WordPress
In reply to: My website is not appearing correctly on IEHmm… I just opened the page in IE7 and it displayed as it should, but when I reloaded the page (tried a few times) the display is just as in your screenshot..
Okay, I see it is something in one of the sidebars. If you load the page and the sidebars are below your content, hover over the sidebars and you’ll see they ‘bounce’ back up to where they should be.