MW WP Hacks

MW WP Hacks is plugin to help with development in wordpress.

Author:Takashi Kitajima (profile at wordpress.org)
WordPress version required:3.6
WordPress version tested:4.1.0
Plugin version:1.4.0
Added to WordPress repository:04-11-2013
Last updated:18-02-2015
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:80
Rated by:2
Plugin URI:https://github.com/inc2734/mw-wp-hacks
Total downloads:3 080
Active installs:80+
plugin download
Click to start download

MW WP Hacks is plugin to help with development in WordPress.

  • Add Google Plus ID field in user profile page. IF input, echo <link rel="author" /> in <head>.
  • Custom Feed into any post types.
  • Custom text after excerpt.
  • Add Google Plus ID field in management page. IF save this, include <link rel="publisher" /> in <head>.
  • Add Facebook AppID field in management page. IF save this, include <div id="fb-root"></div> any more.
  • Add GA Tracking ID field in management page. IF save this, include Google Analytics tag.
  • Add UA Tracking ID field in management page. IF save this, include Universal Analytics tag.
  • Add OGP & Twitter Cards setting.
  • Add Google Site Verification setting.
  • Add Meta description setting.
  • Include any social scripts. ( Facebook, Twitter, Hatena Bookmark, Google+1 )
  • Define widget areas.
  • Define custom thumbnail sizes.
  • Fix wp_title in the case of japanese.
  • You can setting that custom post type to disable a single page.
  • You can setting that posts per page for custom post type.
  • Useful method: MW_WP_Hacks::pager();
  • Useful method: MW_WP_Hacks::get_top_parent_id();
  • Useful method: MW_WP_Hacks::is_custom_post_type();
  • Useful method: MW_WP_Hacks::the_local_nav(); There is the shortcode [local_nav]
  • Useful method: MW_WP_Hacks::the_bread_crumb();
  • The Class that Register Custom Post Type and Custom taxonomy.
    ‘‘‘ $Manage_Custom_Post_Type = new MW_WP_Hacks_Manage_Custom_Post_Type(); $Manage_Custom_Post_Type->custom_post_type( '新着情報', 'news', array( 'title', 'editor', 'author', 'excerpt', 'comments', 'revisions', 'thumbnail' ), array( 'has_archive' => false ) ); $Manage_Custom_Post_Type->custom_taxonomy( '新着カテゴリー', 'news-category', array( 'news' ), array( 'hierarchical' => true ) ); $Manage_Custom_Post_Type->init(); ‘‘‘
  • etc...

ChangeLog