. * */ if (version_compare(PHP_VERSION, '5.0.0', '>=') && !function_exists("tubepress_content_filter")) { /* set the tubepress_base_url global */ $tubepress_base_url = get_settings('siteurl') . "/wp-content/plugins/tubepress"; /* register the plugin's message bundles */ load_plugin_textdomain('tubepress', 'wp-content/plugins/tubepress/i18n'); /* load up the rest of the WordPress specific code */ include dirname(__FILE__) . '/../functions/main.php'; /* add a filter for all post/page content */ add_filter('the_content', 'tubepress_content_filter'); /* add a filter so we can add our CSS/JS to the head */ add_action('wp_head', 'tubepress_head_filter'); add_action('init', 'tubepress_load_jquery'); } ?>