Example #1
0
function joints_start()
{
    // launching operation cleanup
    add_action('init', 'joints_head_cleanup');
    // remove WP version from RSS
    add_filter('the_generator', 'joints_rss_version');
    // remove pesky injected css for recent comments widget
    add_filter('wp_head', 'joints_remove_wp_widget_recent_comments_style', 1);
    // clean up comment styles in the head
    add_action('wp_head', 'joints_remove_recent_comments_style', 1);
    // clean up gallery output in wp
    add_filter('gallery_style', 'joints_gallery_style');
    // enqueue base scripts and styles
    add_action('wp_enqueue_scripts', 'joints_scripts_and_styles', 999);
    // ie conditional wrapper
    // launching this stuff after theme setup
    joints_theme_support();
    // adding sidebars to Wordpress (these are created in functions.php)
    add_action('widgets_init', 'joints_register_sidebars');
    // adding the joints search form (created in functions.php)
    add_filter('get_search_form', 'joints_wpsearch');
    // cleaning up random code around images
    add_filter('the_content', 'joints_filter_ptags_on_images');
    // cleaning up excerpt
    add_filter('excerpt_more', 'joints_excerpt_more');
}
Example #2
0
function joints_start()
{
    // launching operation cleanup
    add_action('init', 'joints_head_cleanup');
    // remove pesky injected css for recent comments widget
    add_filter('wp_head', 'joints_remove_wp_widget_recent_comments_style', 1);
    // clean up comment styles in the head
    add_action('wp_head', 'joints_remove_recent_comments_style', 1);
    // clean up gallery output in wp
    add_filter('gallery_style', 'joints_gallery_style');
    // launching this stuff after theme setup
    joints_theme_support();
    // adding sidebars to Wordpress
    add_action('widgets_init', 'joints_register_sidebars');
    // cleaning up excerpt
    add_filter('excerpt_more', 'joints_excerpt_more');
}