Changeset 1231572
- Timestamp:
- 08/27/2015 12:02:52 AM (11 years ago)
- Location:
- deweys-twitter-card-helper
- Files:
-
- 7 added
- 3 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/LICENSE.txt (added)
-
tags/1.0.1/README.txt (added)
-
tags/1.0.1/class-wad_twitter_cards.php (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/uninstall.php (added)
-
tags/1.0.1/wad_twitter_cards.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/class-wad_twitter_cards.php (modified) (2 diffs)
-
trunk/wad_twitter_cards.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
deweys-twitter-card-helper/trunk/README.txt
r1143320 r1231572 4 4 Requires at least: 3.5.1 5 5 Tested up to: 4.0 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 39 39 == Changelog == 40 40 41 = 1.0.1 = 42 * Moved array declaration to fix error notice 43 41 44 = 1.0 = 42 45 * Initial "open" release -
deweys-twitter-card-helper/trunk/class-wad_twitter_cards.php
r1143320 r1231572 25 25 * @var string 26 26 */ 27 protected $version = '1.0. 0';27 protected $version = '1.0.1'; 28 28 29 29 /** … … 109 109 public function generate_twitter_card() { 110 110 global $post; 111 $tags = array(); 112 111 113 if ( is_singular() ) { 112 114 if (post_type_supports( $post->post_type, 'twitter_cards' ) ) { 113 115 114 116 //Define defaults 115 $tags = array();116 117 $tags['twitter:card'] = 'summary'; 117 118 $tags['twitter:site'] = '@undefined'; // YO! This should definitely be updated with the twitter_cards filter -
deweys-twitter-card-helper/trunk/wad_twitter_cards.php
r1143320 r1231572 11 11 * Plugin URI: http://www.whatadewitt.ca 12 12 * Description: Simplifies the use of Twitter Cards in WP 13 * Version: 1.0. 013 * Version: 1.0.1 14 14 * Author: Luke DeWitt 15 15 * Author URI: http://www.whatadewitt.ca
Note: See TracChangeset
for help on using the changeset viewer.