from around images - customizing the post excerpt - custom google+ integration - adding custom fields to user profiles */ require_once( 'library/bones.php' ); // if you remove this, bones will break /* 2. library/custom-post-type.php - an example custom post type - example custom taxonomy (like categories) - example custom taxonomy (like tags) */ require_once( 'library/custom-post-type.php' ); // you can disable this if you like /* 3. library/admin.php - removing some default WordPress dashboard widgets - an example custom dashboard widget - adding custom login css - changing text in footer of admin */ // require_once( 'library/admin.php' ); // this comes turned off by default /* 4. library/translation/translation.php - adding support for other languages */ // require_once( 'library/translation/translation.php' ); // this comes turned off by default /************* THUMBNAIL SIZE OPTIONS *************/ // Thumbnail sizes add_image_size( 'bones-thumb-600', 600, 150, true ); add_image_size( 'bones-thumb-300', 300, 100, true ); /* to add more sizes, simply copy a line from above and change the dimensions & name. As long as you upload a "featured image" as large as the biggest set width or height, all the other sizes will be auto-cropped. To call a different size, simply change the text inside the thumbnail function. For example, to call the 300 x 300 sized image, we would use the function: for the 600 x 100 image: You can change the names and dimensions to whatever you like. Enjoy! */ /************* ACTIVE SIDEBARS ********************/ // Sidebars & Widgetizes Areas function bones_register_sidebars() { register_sidebar(array( 'id' => 'sidebar1', 'name' => __( 'Sidebar 1', 'bonestheme' ), 'description' => __( 'The first (primary) sidebar.', 'bonestheme' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); /* to add more sidebars or widgetized areas, just copy and edit the above sidebar code. In order to call your new sidebar just use the following code: Just change the name to whatever your new sidebar's id is, for example: register_sidebar(array( 'id' => 'sidebar2', 'name' => __( 'Sidebar 2', 'bonestheme' ), 'description' => __( 'The second (secondary) sidebar.', 'bonestheme' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); To call the sidebar in your template, you can just copy the sidebar.php file and rename it to your sidebar's name. So using the above example, it would be: sidebar-sidebar2.php */ } // don't remove this bracket! /************* COMMENT LAYOUT *********************/ // Comment Layout function bones_comments( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; ?>
  • >
    ' ); */ ?> %s', 'bonestheme' ), get_comment_author_link()) ?>
    comment_approved == '0') : ?>

    $depth, 'max_depth' => $args['max_depth']))) ?>
    is added by WordPress automatically ?> '; return $form; } // don't remove this bracket! ?>