-
Notifications
You must be signed in to change notification settings - Fork 11
Home
Joe McKie edited this page Jul 31, 2013
·
37 revisions
Welcome to the Horizon wiki! I'm still documenting the whole thing (there's a lot to do!), so please bear in mind some pages may be missing/broken.
Please let me know if you have any suggestions by creating a new issue.
- horizon_build_twitter_link
- horizon_create_slug
- horizon_filter_content
- horizon_format_soundcloud_link
- horizon_format_youtube_video
- horizon_format_vimeo_video
- horizon_get_all_sidebars
- horizon_get_dynamic_sidebar
- horizon_get_file
- horizon_get_font_awesome_icons
- horizon_get_image_meta
- horizon_get_post_list
- horizon_get_taxonomy_list
- horizon_hex2rgb
- horizon_split_image_string
Outputs the HTML of a selected dynamic sidebar. For use in functions and templates where dynamic_sidebar()
would output incorrectly.
<?php echo horizon_get_dynamic_sidebar( $sidebar ); ?>
$sidebar (string) (required) The sidebar name. Default: None
<div class="twelve columns">
<?php echo horizon_get_dynamic_sidebar( 'Footer 1' ); ?>
</div>
This will output the HTML contents of the sidebar named 'Footer 1' into the container.