Get thumbnnails in appearance->menus? wp_nav_menu
-
Hi all —
I’m trying to figure a way to get the post/page thumbnail to show in a nav menus.
I tried a number of things last night, and got at least a thumb variable into the menu object with this in the functions.php file of my theme:
function my_wp_get_nav_menu_items($args) { foreach($args as $val) { $val->thumb = wp_get_attachment_image_src(get_post_thumbnail_id($val->ID)); } //echo "<pre>\n"; //print_r($args); //echo "</pre>\n"; return $args; } add_filter( 'wp_get_nav_menu_items', 'my_wp_get_nav_menu_items' );
what would be awesome is to get retults back from wp_nav_menu() like:
<ul> <li><a href="something"><img src="somethingThumb.png">Something</a></li> <li><a href="somethingelse"><img src="somethingelseThumb.png">Somethingelse</a></li> </ul>
Any ideas?
TIA,
Tom
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Get thumbnnails in appearance->menus? wp_nav_menu’ is closed to new replies.