The navigation tag has no wiki summary.
2
votes
2answers
2k views
WP_Query and next_posts_link
I cannot figure out how to make next_posts_link() work within my custom WP_Query. Here is the function:
function artists() {
echo '<div id="artists">';
$args = array( 'post_type' => ...
4
votes
3answers
825 views
How to Get Next or Previous Post in a Specific Tag?
I'm trying to create links to the next and previous posts within a specific tag (on the post page itself), but I can't seem to find a plugin or source that does this.
I want to be able to something ...
0
votes
2answers
2k views
After update to WP 3.4 page navigation is not working? [closed]
After I have updated my website to wordpress 3.4 the navigation pages work until page 10, and on categories the pages are not working even after page 2-3.... I don't understand why ?
here you can see ...
0
votes
1answer
642 views
Faceted Navigation in Wordpress
have anyone managed to succesfully implement faceted navigation in wordpress?
Using taxonomies and categories I think that it can be done but don't know how to implement the "url" part of faceted ...
8
votes
3answers
3k views
Programmatically add a Navigation menu and menu items
Through API functions, I want to define a new Navigation menu, select it in the current theme, and then insert a few Pages as menu items. This is to be done for instance on a theme activation.
...
4
votes
1answer
449 views
Add custom meta to nav menu items
I need to attach meta data to every menu item, with a key 'foo'. Is it possible to do that, without editing core WP?
A quick look at the nav-menu files showed that no hooks exist near the place I ...
2
votes
3answers
3k views
Pagination with custom SQL query
I have my own SQL string to select Custom Post Type posts with specific WHERE clause. I've used the offset and limit to return appropriate posts depending on a page being displayed. That's working ...
1
vote
2answers
1k views
Bar separated navigation by extending Walker_Nav_Menu
I have the following menu in my header:
<?php
$args = array(
'menu' => 'Main Menu',
'container' => false,
'depth' => 1,
'items_wrap' => ...
1
vote
1answer
3k views
wp_get_nav_menu_items how to exclude sub level menu items?
I have the following function to output a custom menu in select format for a responsive design I'm working on.
It's working exactly how I want it to apart from I would need to exclude sub menu items. ...
0
votes
1answer
354 views
Two Navigation Menus in Themes Produce the same menus?
Alright so I've got two navigation menus that I've registered with my theme:
<?php
if ( function_exists('register_sidebar') )
register_sidebar();
add_theme_support( 'menus' );
if ( ...
3
votes
1answer
394 views
Highlight nav menu terms
OK so i have custom post types and custom taxonomies. I have a sub-menu that is made of the custom taxonomies.
Example:
registered taxonomy: Movies
and
terms: action, adventures, etc. (= menu ...
2
votes
1answer
135 views
Determine if a navigation item has children
I am trying to determine if an item has a sub-item with depth 1 or higher. I cannot find anywhere if there is some function/query I can write that grabs the current item looks in the database if it ...
2
votes
2answers
2k views
Dynamically exclude menu items from wp_nav_menu
I tried looking for info about how to exclude/remove nav menu items from custom menus, and the only thread I found did not have any answers that were useful to me.
1. Background:
I put together a ...
0
votes
1answer
145 views
How to make a plugin auto-add item to nav menu
I'm building a contact information plugin that writes data to a page. So far, so good. What I would like is to build a function into the plugin that adds a navigation item to the main nav bar on the ...
4
votes
1answer
908 views
Getting the Next and Previous Posts Titles in the Sidebar?
Let's assume that I have the following posts with the following titles:
PostA (is assigned to the 'category 1')
PostX (category 2)
PostB (category 1)
PostC (category 1)
PostD (category 1)
PostY ...
3
votes
1answer
870 views
How to order adjacent posts (prev / next) by custom field value?
I am using the More Fields and More Types plugins to create a custom post type called product. This custom type is based on the Post type.
One of the fields is named lot which is an integer ...
2
votes
1answer
167 views
Get the children of the parent category
I'm trying to get all the children categories to display in this loop but I'm struggling with the code. This is what I have so far.
<?php $args=array('orderby' => 'name', 'order' => 'ASC');
...
2
votes
2answers
478 views
specify meta_key / meta_value condition for prev_post_link and next_post_link
I've got a custom post type (CPT) called event. Every event has got an associated meta_key called event_date.
I want to make sure that events with empty event_date won't appear in my list of all ...
2
votes
1answer
990 views
BuddyPress - How to add logout in nav menu
How to add a logout option to the main nav menu (not to the top bar) in BuddyPress?
1
vote
1answer
276 views
Nav menu of all posts in a custom post type
How can I create a nav like those generated by wp_nav_menu which lists all the posts in a specific custom post type?
For example, I have CPT "section1" and I'd like to have the menu list all posts ...
1
vote
2answers
9k views
How to Create a Custom WordPress Navigation Menu with the Code?
Without using plugins, how to create a custom WordPress navigation menu with the code?
I have Wordpress ver 3.2.1
and Buddypress ver 1.5.1
I would like to create a menu like this:
click here
I would ...
1
vote
1answer
197 views
Replacing WordPress menu functionality with a plugin
I asked this earlier on StackOverflow.com before realizing there was a StackExchange specifically for WordPress. Here is the link to the old question (for moderator deletion):
...
1
vote
2answers
1k views
Break apart wp_list_pages in order to customise it
I'm trying to 'break apart', (think explode is the correct terminology), wp_list_pages in order to add some definition list code into it, (dl, dt, dd).
Here is the html code that I'm trying to ...
0
votes
1answer
43 views
Navigation link to specific user page
I asked this question and got a great reply - Associate Page with User - so I can now associate a post with a specific user as required.
What I want to do is include in the main site navigation a ...
0
votes
1answer
345 views
Dynamically changing navigation links (next and previous) via AJAX
In my wordpress site, I have inside the loop of single.php , a select tag in which the options are the posts of the current category returned via a custom query.
On changing selected option, I have ...
0
votes
2answers
170 views
custom menu not found
I am trying to use a menu which I have partially working, I have setup functions.php:
if (function_exists('register_nav_menu')) {
register_nav_menu('main-menu', 'Main Menu');
}
I have configured ...
0
votes
2answers
2k views
How to style current page menu item when using a walker
I have designed a custom menu and would like to be able to style the individual li dependent whether it is the current page or not? I believe this is normally pretty straightforward using a class such ...
0
votes
2answers
592 views
Different Main Navigation per category
I have a client who has the categories listed in the right-hand sidebar. He came to me today requesting a different "navigation" in the header for each category.
So basically, if you click on ...
-1
votes
1answer
106 views
All navigation fails and leads me to homepage
I installed a plug-in and then uninstalled and deleted it (wp e-commerce).
Now all links lead me back to homepage. When I click on a post heading I go to homepage.
I do not have caching.
I tried ...