­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ === Basic Twitter === Contributors: codesupplyco Donate link: https://codesupply.co/donate/ Tags: twitter, bootstrap Requires at least: 3.0.1 Tested up to: 3.4 Stable tag: 4.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Register Templates == function custom_register_templates( $templates = array() ) { $templates['YOUR_CUSTOM_TEMPLATE_SLUG'] = array( 'name' => 'YOUR_CUSTOM_TEMPLATE_NAME', 'func' => 'YOUR_CUSTOM_TEMPLATE_FUNCTION', ); return $templates; } add_filter( 'btw_templates', 'custom_register_templates' ); == Add Template == function YOUR_CUSTOM_TEMPLATE_FUNCTION( $twitter, $params ) { // $twitter - Array of twitter for processing // $params - Array of settings } == Other Filters == * btw_cache_timeout integer Twitter cache timeout. Default: 60. * btw_enqueue_styles bool Include front-end styles. Default: true.