WordPress


Plugins

Content Management

Site

Content

API

Plugin/Theme modifications

Make External Links plugin work properly with fastsimple ultralinks.

Add: if (strpos ($url, “ultralink”)) return false;
On top of method: is_local_url($url)

Add edit button on top of Mantra theme.

Copy footer.php to the child theme and add <?php cryout_branding_hook();?> <?php edit_post_link(“(edit)”); ?> after <div id=”branding” role=”banner” >.

Add triangles to menu items having sub items

jQuery('.menu ul li:has(ul) a').each(function() {
  if ( jQuery(this).parent('li li').children('ul').size() > 0 ) {
    jQuery(this).css ('float', 'left').css ('white-space', 'normal');
    jQuery(this).append('<span style="float:right; margin: 0px 25px 5px 5px;">&#9658;</span>');
  } else if ( jQuery(this).parent('li').children('ul').size() > 0 ) {
    jQuery(this).append('<span>&nbsp;&nbsp;&#9660;</span>');
  }
});