├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── autoload.php ├── compatibility-notice.php ├── composer.json ├── index.php ├── phpcs.xml ├── phpunit.xml ├── readme.txt ├── src └── Twitter │ ├── Cards │ ├── Card.php │ ├── Components │ │ ├── Account.php │ │ ├── Creator.php │ │ ├── Description.php │ │ ├── Image.php │ │ └── SingleImage.php │ ├── Summary.php │ └── SummaryLargeImage.php │ ├── Helpers │ ├── HTMLBuilder.php │ ├── TwitterURL.php │ └── Validators │ │ ├── Hashtag.php │ │ ├── PeriscopeUsername.php │ │ ├── ScreenName.php │ │ └── WebsiteTag.php │ ├── Intents │ ├── Follow.php │ ├── Traits │ │ └── Related.php │ └── Tweet.php │ ├── Widgets │ ├── Base.php │ ├── Buttons │ │ ├── Follow.php │ │ ├── Periscope │ │ │ └── OnAir.php │ │ └── Tweet.php │ ├── Embeds │ │ ├── Moment.php │ │ ├── Theme.php │ │ ├── Timeline.php │ │ ├── Timeline │ │ │ ├── Collection.php │ │ │ ├── Profile.php │ │ │ ├── Search.php │ │ │ └── TwitterList.php │ │ ├── Tweet.php │ │ ├── Tweet │ │ │ ├── Base.php │ │ │ └── Video.php │ │ └── Vine.php │ └── Language.php │ └── WordPress │ ├── Admin │ ├── Post │ │ ├── MetaBox.php │ │ ├── TweetIntent.php │ │ └── TwitterCard.php │ ├── Profile │ │ ├── PeriscopeUser.php │ │ └── User.php │ └── Settings │ │ ├── Buttons │ │ └── Tweet.php │ │ ├── Cards │ │ └── SiteAttribution.php │ │ ├── Embeds │ │ └── Theme.php │ │ ├── Loader.php │ │ ├── SettingsSection.php │ │ └── SinglePage.php │ ├── Cards │ ├── Compatibility.php │ ├── Generator.php │ ├── ImageHandler.php │ └── Sanitize.php │ ├── Content │ └── Buttons │ │ └── Tweet.php │ ├── Features.php │ ├── Head │ ├── AuthorshipLink.php │ ├── CardsMetaElements.php │ ├── MetaElement.php │ └── WidgetsMetaElements.php │ ├── Helpers │ ├── HTMLBuilder.php │ ├── TwitterAPI.php │ ├── TwitterOEmbed.php │ └── VineOEmbed.php │ ├── JavaScriptLoaders │ ├── AsyncJavaScript.php │ ├── Tracking.php │ ├── VineEmbed.php │ └── Widgets.php │ ├── Language.php │ ├── PluginLoader.php │ ├── Shortcodes │ ├── Advertising │ │ └── Tracking.php │ ├── AuthorContext.php │ ├── Buttons │ │ ├── Follow.php │ │ ├── Periscope │ │ │ └── OnAir.php │ │ └── Share.php │ ├── Embeds │ │ ├── Moment.php │ │ ├── Timeline.php │ │ ├── Timeline │ │ │ ├── Collection.php │ │ │ ├── CollectionGrid.php │ │ │ ├── Profile.php │ │ │ ├── Search.php │ │ │ └── TwitterList.php │ │ ├── Tweet.php │ │ ├── Tweet │ │ │ └── Video.php │ │ └── Vine.php │ ├── Helpers │ │ └── Attributes.php │ ├── OEmbedTrait.php │ ├── PublishOEmbedEndpoint.php │ └── ShortcodeInterface.php │ ├── Site │ └── Username.php │ ├── User │ └── Meta.php │ └── Widgets │ ├── Advertising │ └── Tracking.php │ ├── Buttons │ ├── Follow.php │ └── Periscope │ │ └── OnAir.php │ ├── Embeds │ ├── Timeline.php │ └── Timeline │ │ ├── Collection.php │ │ ├── Profile.php │ │ ├── Search.php │ │ └── TwitterList.php │ ├── Widget.php │ └── WidgetInterface.php ├── static └── css │ └── admin │ └── post │ ├── edit.min.css │ └── edit.scss ├── tests └── phpunit │ ├── Cards │ ├── Card.php │ ├── Components │ │ ├── Account.php │ │ ├── Creator.php │ │ ├── Description.php │ │ ├── Image.php │ │ └── SingleImage.php │ ├── Summary.php │ └── SummaryLargeImage.php │ ├── CommonProviders.php │ ├── Helpers │ ├── HTMLBuilder.php │ ├── TwitterURL.php │ └── Validators │ │ ├── Hashtag.php │ │ ├── ScreenName.php │ │ └── WebsiteTag.php │ ├── Intents │ ├── Follow.php │ └── Tweet.php │ ├── TestWithPrivateAccess.php │ ├── Widgets │ ├── Base.php │ ├── Buttons │ │ ├── Follow.php │ │ ├── Periscope │ │ │ └── OnAir.php │ │ └── Tweet.php │ ├── Embeds │ │ ├── Moment.php │ │ ├── Theme.php │ │ ├── Timeline.php │ │ ├── Timeline │ │ │ ├── Collection.php │ │ │ ├── Profile.php │ │ │ ├── Search.php │ │ │ └── TwitterList.php │ │ ├── Tweet.php │ │ └── Tweet │ │ │ └── Base.php │ └── Language.php │ ├── WordPress │ ├── Shortcodes │ │ ├── Buttons │ │ │ ├── Follow.php │ │ │ ├── Periscope │ │ │ │ └── OnAir.php │ │ │ └── Share.php │ │ └── Embeds │ │ │ ├── Timeline.php │ │ │ ├── Tweet.php │ │ │ └── Tweet │ │ │ └── Video.php │ └── Widgets │ │ └── Embeds │ │ └── Timeline │ │ └── Profile.php │ ├── autoload.php │ └── bootstrap.php ├── twitter.php └── uninstall.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twitter/wordpress/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twitter/wordpress/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twitter/wordpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twitter/wordpress/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twitter/wordpress/HEAD/autoload.php -------------------------------------------------------------------------------- /compatibility-notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twitter/wordpress/HEAD/compatibility-notice.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twitter/wordpress/HEAD/composer.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |