Changeset 1247953
- Timestamp:
- 09/17/2015 09:51:31 PM (11 years ago)
- Location:
- deweys-open-graph-helper
- Files:
-
- 7 added
- 3 edited
-
tags/1.1.0 (added)
-
tags/1.1.0/LICENSE.txt (added)
-
tags/1.1.0/README.txt (added)
-
tags/1.1.0/class-wad_open_graph.php (added)
-
tags/1.1.0/index.php (added)
-
tags/1.1.0/uninstall.php (added)
-
tags/1.1.0/wad_open_graph.php (added)
-
trunk/README.txt (modified) (1 diff)
-
trunk/class-wad_open_graph.php (modified) (3 diffs)
-
trunk/wad_open_graph.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
deweys-open-graph-helper/trunk/README.txt
r1231573 r1247953 39 39 == Changelog == 40 40 41 = 1.1.0 = 42 * Removed the filter from being called on the homepage, as it was causing unwanted overwrites 43 41 44 = 1.0.1 = 42 45 * Moved array declaration to fix error notice -
deweys-open-graph-helper/trunk/class-wad_open_graph.php
r1231573 r1247953 25 25 * @var string 26 26 */ 27 protected $version = '1. 0.1';27 protected $version = '1.1.0'; 28 28 29 29 /** … … 137 137 $tags['image'] = $thumbnail[0]; 138 138 } 139 140 // filter post tags 141 $tags = apply_filters( "og_tags" , $tags ); 142 $tags = apply_filters( "{$post->post_type}_og_tags" , $tags ); 139 143 } 140 144 } else if ( is_front_page() ) { … … 146 150 } 147 151 148 // filter post tags149 $tags = apply_filters( "og_tags" , $tags );150 $tags = apply_filters( "{$post->post_type}_og_tags" , $tags );151 152 152 //Loop through the tags and generate the open graph tags 153 153 foreach ( $tags as $key => $value ) { -
deweys-open-graph-helper/trunk/wad_open_graph.php
r1231573 r1247953 11 11 * Plugin URI: http://www.whatadewitt.ca 12 12 * Description: Simplifies the use of Open Graph. 13 * Version: 1. 0.113 * Version: 1.1.0 14 14 * Author: Luke DeWitt 15 15 * Author URI: http://www.whatadewitt.ca
Note: See TracChangeset
for help on using the changeset viewer.