alexstudio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tag CheckingThank you! I thought it was something simple that I was just missing! =)
Forum: Fixing WordPress
In reply to: comment_reply_link not working.the example that shows is using the wp_list_comments()…
I tried using ` <?php comment_reply_link(array_merge( $args, array(‘depth’ => $depth, ‘max_depth’ => $args[‘max_depth’]))) ?>
` but this throws and error because (I think) $args is defined somewhere in the wp_list_comments and I’m not using that.Forum: Fixing WordPress
In reply to: My pages on my wordpress site is not in the right order…in the wp_page_menu method you can pass a sort_column:
<?php wp_page_menu('show_home=Home'.'& title_li='.'& depth=1'.'& sort_column=menu_order'); ?>that last bit: sort_column=menu_order
This will sorts the sites pages by the “Order” you assign it.
Forum: Themes and Templates
In reply to: reply button in commentI have this same problem. 7months. really no one can answer this?
Forum: Fixing WordPress
In reply to: Comments get assigned to the wrong post.Thanks a lot 7sins this fixed my problem as well.
Forum: Fixing WordPress
In reply to: Main Nav – categorytriple post (very sorry)
just found and tried vtxyzzy’s solution (http://wordpress.org/support/topic/312299?replies=23) but it does not work for me. It adds a pagination but it is the same posts on every page..Forum: Fixing WordPress
In reply to: Main Nav – categoryOR
(sorry for the double post)I would not mind just being able to add next/prev buttons on a page template that I associate with a blank page, then just name the page portfolio.
I have all that already working aside from the next/prev buttons show up inside pages.