Is it possible to add a superscript trademark symbol to a menu?
You should be able to use any HTML entities for the titles. I’ve put ™ in menus before. You can also try the code: ™
You should be able to use any HTML entities for the titles. I’ve put ™ in menus before. You can also try the code: ™
Register a sidebar in your functions.php using register_sidebar. Put some widgets in your sidebar from the dashboard (Appearance/Widgets). Show the sidebar on specific pages on your website by using dynamic_sidebar in your php code. Or you can create a sidebar-{your-sidebar-id}.php file and use get_sidebar to show the sidebar wherever you want. Use CSS / HTML … Read more
According to that Codex page, you need to use menu_id. container_id only effects the surrounding div.
Posts are blog entries. They will post to your blog only. Pages are to your site and listed like a normal website. So you won’t see blog posts on your page menus other than your blog name. To access posts simply go to posts in your dashboard
Found the answer i’ve added changed the wp_nav_menu args to this: wp_nav_menu(array( ‘theme_location’ => ”, ‘menu’ => ”, ‘container’ => ”, ‘container_class’ => ”, ‘container_id’ => ”, ‘menu_class’ => ‘menu’, ‘menu_id’ => ”, ‘echo’ => true, ‘fallback_cb’ => ‘wp_page_menu’, ‘before’ => ”, ‘after’ => ”, ‘link_before’ => ”, ‘link_after’ => ”, ‘items_wrap’ => ‘<ul id=”%1$s” … Read more
The new to WordPress 3.0 Menu’s can be made into a hierarchal structure by dragging the menu items to the left or right. I found a user guide on the WordPress Codex that you may find helpful. The WordPress menu editor allows you to create multi-level menus using a simple ‘drag and drop’ interface. You … Read more
You can just create a HTML page with anchor links: 1- Link pointing to the anchor (Content) <a name=”allin”></a> <div>Content</div> 2- Create the anchor (menu). <a href=”#allin”>Link here</a> Although, i must confess i might not completely understood what you want/need. But as s_ha_dum said your question is to wide you need to start with some … Read more
The first stage is to create a separate menu for each section of the site. Create three menus called ‘Reiki Basics’, ‘Practice & Study’ and ‘Courses’. Add all of the relevant pages to each menu. To make these menus appear in the sidebar, add them using three separate ‘Custom menu’ widgets. If you check your … Read more
Sometimes these things get messed up. If you have access to database, try to delete transient options (look for any keys that contains “transient” and/or your deleted menu name) from wp_options table
For some reason when I use $link = $item->url now it works. Instead of $link = get_page_link( $id ).