Hooks are provided by Ashford to allow you to “Hook” into the theme at different places as the page is being composed. Hooks do nothing unless an Action is applied to it. To find out what Actions are applied to these Hooks, please reference our Actions doc.
Below all the Ashford Hooks are listed. For more context, please reference the Visual HTML Structure doc.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Language" content="<?php echo substr(get_bloginfo('language'),0,2);?>"/> <?php ashford_init(); ?> <?php ashford_head_open(); ?> <?php ashford_head_css(); ?> <?php wp_head(); ?> <?php ashford_head_close(); ?> </head> <?php flush(); ?> <body class="<?php sandbox_body_class() ?> <?php ashford_theme_displayhints(); ?>"> <?php ashford_body_open()?> <div id="canvas"><div id="canvas_inner"> <?php ashford_canvass_open(); ?> <div id="page" class="container_16"><div id="page_inner"> <div id="top" class="grid_16"><div id="top_inner"> <?php ashford_top_open(); ?> <?php ashford_region_navigation(); ?> <?php ashford_top_close(); ?> </div></div><!-- /#top_inner,#top --> <?php ashford_region_hero(); ?> <div id="box" class="grid_16"><div id="box_inner"> <?php ashford_box_open(); ?> <div id="content" class="grid_9 prefix_1 alpha"> <?php ashford_post_page_meta(); ?> <?php ashford_post_meta(); ?> <?php ashford_post_excerpt_meta(); ?> </div><!-- /#content --> <div id="sidebar" class="grid_5 suffix_1 omega sidebar_right region"><div id="sidebar_inner"> </div><!-- /#sidebar_inner --></div><!-- /#sidebar --> <?php ashford_close_box(); ?> </div><!-- /#box_inner --></div><!-- /#box --> <?php ashford_region_content_bottom(); ?> <?php ashford_close_page(); ?> </div><!-- /#page-inner--></div><!-- /#page--> <?php wp_footer(); ?> <?php ashford_close_canvas(); ?> </div></div><!-- /#canvas_inner,#canvas --> <?php ashford_close_body(); ?> </body> </html> |
There is one additional hook in the Ashford Options.
1 | <?php ashford_theme_options();?> |


