Academix
Challenge for Change book launch video
It took a while, but the launch video is finally here...
by ezra on December 9, 2011
It took a while, but the launch video is finally here...
by ezra on June 16, 2011
by ezra on March 29, 2010
by ezra on March 10, 2010
by ezra on February 19, 2010
by ezra on January 26, 2010
Get smart with the Thesis WordPress Theme from DIYthemes.
// Using hooks is absolutely the smartest, most bulletproof way to implement things like plugins, // custom design elements, and ads. You can add your hook calls below, and they should take the // following form: // add_action('thesis_hook_name', 'function_name'); // The function you name above will run at the location of the specified hook. The example // hook below demonstrates how you can insert Thesis' default recent posts widget above // the content in Sidebar 1: // add_action('thesis_hook_before_sidebar_1', 'thesis_widget_recent_posts'); // Delete this line, including the dashes to the left, and add your hooks in its place. /** * function custom_bookmark_links() - outputs an HTML list of bookmarking links * NOTE: This only works when called from inside the WordPress loop! * SECOND NOTE: This is really just a sample function to show you how to use custom functions! * * @since 1.0 * @global object $post */ function custom_bookmark_links() { global $post; ?>