Insert plugin as wordpress menu item
-
Hello! First of all your plugin is the best!
My problem is i want to add the temperature as an item in the wordpress menu.
The theme i use, has a sticky menu. And although i managed to insert your code in the header it doesn′t move according to the rest of the menu items.I managed to manually insert an item in the functions.php file like this:
function add_last_nav_item($items) { return $items .= '<li><a href="#" >Here</a></li>'; } add_filter('wp_nav_menu_items','add_last_nav_item');
I need to add the php code for your plugin where it says “Here”
How can i achieve that? Here is my temp url if you want to see.
https://www.cabalegria.com.ar/yvate/Also tried this and worked, but because it is an iframe i cannot change the style:
return $items . '<li class="myclass"><a href="https://example.com">My link title</a>' . do_shortcode('[wpforecast id="A"]') . '</li>';
Can you help me?
Thanks in advanced!!
- The topic ‘Insert plugin as wordpress menu item’ is closed to new replies.