get_item_quantity(7); // specify number of items $items = $feed->get_items(0, $limit); // create an array of items } if ($limit == 0) echo '
The RSS Feed is either empty or unavailable.
'; // fallback message else foreach ($items as $item) : ?>

get_title(); ?>

get_description(), 0, 200); ?>

'; } // changing the logo link from wordpress.org to your site function bones_login_url() { echo home_url(); } // changing the alt text on the logo to show your site name function bones_login_title() { echo get_option('blogname'); } // calling it only on the login page add_action('login_head', 'bones_login_css'); add_filter('login_headerurl', 'bones_login_url'); add_filter('login_headertitle', 'bones_login_title'); /************* CUSTOMIZE ADMIN *******************/ /* I don't really reccomend editing the admin too much as things may get funky if Wordpress updates. Here are a few funtions which you can choose to use if you like. */ // Custom Backend Footer function bones_custom_admin_footer() { echo 'Developed by Your Site Name. Built using Bones.'; } // adding it to the admin area add_filter('admin_footer_text', 'bones_custom_admin_footer');