diff --git a/functions.php b/functions.php index 99ab825..a3a5526 100644 --- a/functions.php +++ b/functions.php @@ -31,3 +31,234 @@ function my_widgets_init() { ) ); } + +// Breadcrumbs +function custom_breadcrumbs() { + + // Settings + $separator = '>'; + $breadcrums_id = 'breadcrumbs'; + $breadcrums_class = 'breadcrumbs'; + $home_title = 'Homepage'; + + // If you have any custom post types with custom taxonomies, put the taxonomy name below (e.g. product_cat) + $custom_taxonomy = 'product_cat'; + + // Get the query & post information + global $post,$wp_query; + + // Do not display on the homepage + if ( !is_front_page() ) { + + // Build the breadcrums + echo ''; + + } + +} \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..e69de29