Changeset 1229463
- Timestamp:
- 08/24/2015 06:40:07 PM (11 years ago)
- Location:
- my-optional-modules/trunk
- Files:
-
- 4 edited
-
class.myoptionalmodules-modules.php (modified) (2 diffs)
-
class.myoptionalmodules.php (modified) (3 diffs)
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
my-optional-modules/trunk/class.myoptionalmodules-modules.php
r1229384 r1229463 44 44 $myoptionalmodules_frontpage , 45 45 $myoptionalmodules_readmore , 46 $myoptionalmodules_commentspamfield; 47 46 $myoptionalmodules_commentspamfield , 47 $myoptionalmodules_miniloopmeta , 48 $myoptionalmodules_miniloopstyle , 49 $myoptionalmodules_miniloopamount; 48 50 if( $myoptionalmodules_javascripttofooter ) { 49 51 add_action ( 'wp_enqueue_scripts' , array ( $this , 'remove' ) ); … … 120 122 add_filter ( 'comments_template' , array ( $this , 'disqus_code' ) ); 121 123 } 122 add_filter ( 'the_content' , array ( $this , 'miniloop' ) ); 124 125 if( $myoptionalmodules_miniloopmeta && $myoptionalmodules_miniloopstyle && $myoptionalmodules_miniloopamount ) { 126 add_filter ( 'the_content' , array ( $this , 'miniloop' ) ); 127 } 128 123 129 if( $myoptionalmodules_google ) { 124 130 add_action ( 'wp_head' , array ( $this , 'google_analytics' ) ); -
my-optional-modules/trunk/class.myoptionalmodules.php
r1229384 r1229463 3 3 * CLASS myoptionalmodules() 4 4 * 5 * File last update: 10.0.9. 85 * File last update: 10.0.9.9 6 6 * 7 7 * Actions REQUIRED by the plugin (unless otherwise noted). … … 29 29 add_action ( 'wp', array( $this, 'scripts' ) ); 30 30 add_action ( 'admin_enqueue_scripts' , array ( $this , 'font_awesome' ) ); 31 add_action ( 'after_setup_theme' , array ( $this , 'post_formats' ) );32 31 33 32 if( 1 == $myoptionalmodules_plugincss ): … … 71 70 wp_register_style ( 'my_optional_modules' , $myStyleFile ); 72 71 wp_enqueue_style ( 'my_optional_modules' ); 73 }74 75 // Add ALL POST FORMATS76 function post_formats() {77 add_theme_support (78 'post-formats',79 array (80 'aside',81 'gallery',82 'link',83 'image',84 'quote',85 'status',86 'video',87 'audio',88 'chat'89 )90 );91 72 } 92 73 -
my-optional-modules/trunk/plugin.php
r1229384 r1229463 4 4 Plugin URI: 5 5 Description: Optional modules and additions for Wordpress. 6 Version: 10.0.9. 86 Version: 10.0.9.9 7 7 Author: boyevul 8 8 Author URI: -
my-optional-modules/trunk/readme.txt
r1229387 r1229463 1 1 === My Optional Modules === 2 2 Contributors: boyevul 3 Tags: meta, og, twitter, facebook, google, description, title, 404, comments, version, pingbacks, author, date, archives, disable, horizontal, galleries, font awesome, share, RSS, DNSBLDNSBL, garbage, removal, trash, footer, lazy load, exclude, remove, hide, front page, search results, authors, categories, tags, post formats,single post, miniloop, attachment, media, embedder, oEmbed3 Tags: meta, og, twitter, facebook, google, description, title, 404, comments, version, pingbacks, author, date, archives, disable, horizontal, galleries, font awesome, share, RSS, DNSBLDNSBL, garbage, removal, trash, footer, lazy load, exclude, remove, hide, front page, search results, authors, categories, tags, single post, miniloop, attachment, media, embedder, oEmbed 4 4 Requires at least: 4.1 5 5 Tested up to: 4.3 6 Stable tag: 10.0.9. 86 Stable tag: 10.0.9.9 7 7 8 8 An assortment of functions to enhance WordPress. … … 94 94 95 95 == Changelog == 96 = 10.0.9.8 =96 = 10.0.9.8 / 10.0.9.9 = 97 97 * *Release Date - 24th, August, 2015* 98 * Removed post formats from the plugins (better suited to be enabled on a theme level) 99 * *Post formats being implemented via this plugin was also known to cause some minor* 100 * *issues with some themes and the way that they displayed post content* 98 101 * The following update corrects *guideline violations* in this WordPress plugin 99 102 * img.bi embedding removed (not GPL (creative commons), disallowed by WP)
Note: See TracChangeset
for help on using the changeset viewer.