'#ffffff',);
add_theme_support('custom-background', $args);
add_theme_support('custom-header');
add_theme_support('automatic-feed-links');
add_theme_support('woocommerce');
add_theme_support('title-tag');
}
// Read more tag to formatting in blog page
function awada_content_more($read_more)
{
return '
';
}
add_filter('the_content_more_link', 'awada_content_more');
// Replaces the excerpt "more" text by a link
function awada_excerpt_more($more)
{
return '' . __('Read More...', 'awada') . '';
}
add_filter('excerpt_more', 'awada_excerpt_more');
/*
* Awada widget area
*/
add_action('widgets_init', 'awada_widget');
function awada_widget()
{
/*sidebar*/
register_sidebar(array(
'name' => __('Primary Sidebar Widget Area', 'awada'),
'id' => 'primary-sidebar',
'description' => __('Primary sidebar widget area', 'awada'),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
'
));
register_sidebar(array(
'name' => __('Footer Widget Area', 'awada'),
'id' => 'footer-widget',
'description' => __('Footer widget area', 'awada'),
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
));
}
/* Breadcrumbs */
function awada_breadcrumbs()
{
$delimiter = '';
$home = __('Home', 'awada'); // text for the 'Home' link
$before = ''; // tag before the current crumb
$after = ''; // tag after the current crumb
echo '';
global $post;
$homeLink = home_url();
echo '- ' . $home . '' . $delimiter;
if (is_category()) {
global $wp_query;
$cat_obj = $wp_query->get_queried_object();
$thisCat = $cat_obj->term_id;
$thisCat = get_category($thisCat);
$parentCat = get_category($thisCat->parent);
if ($thisCat->parent != 0)
echo(get_category_parents($parentCat, TRUE, ' ' . $delimiter . '
'));
echo $before . _e("Category ", 'awada') . ' ' . single_cat_title($delimiter, false) . '' . $after;
} elseif (is_day()) {
echo '- ' . get_the_time('Y') . '' . $delimiter . '
';
echo '- ' . get_the_time('F') . ' ' . $delimiter;
echo $before . get_the_time('d') . '
';
} elseif (is_month()) {
echo '- ' . get_the_time('Y') . '' . $delimiter;
echo $before . get_the_time('F') . '
';
} elseif (is_year()) {
echo $before . get_the_time('Y') . '';
} elseif (is_single() && !is_attachment()) {
if (get_post_type() != 'post') {
$post_type = get_post_type_object(get_post_type());
$slug = $post_type->rewrite;
echo '- ' . $post_type->labels->singular_name . ' ' . $delimiter;
echo $before . get_the_title() . '
';
} else {
$cat = get_the_category();
$cat = $cat[0];
echo $before . get_the_title() . '';
}
} elseif (!is_single() && !is_page() && get_post_type() != 'post') {
$post_type = get_post_type_object(get_post_type());
echo $before . $post_type->labels->singular_name . $after;
} elseif (is_attachment()) {
$parent = get_post($post->post_parent);
$cat = get_the_category($parent->ID);
$cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo '- ' . $parent->post_title . '' . $delimiter;
echo $before . get_the_title() . $after;
} elseif (is_page() && !$post->post_parent) {
echo $before . get_the_title() . $after;
} elseif (is_page() && $post->post_parent) {
$parent_id = $post->post_parent;
$breadcrumbs = array();
while ($parent_id) {
$page = get_page($parent_id);
$breadcrumbs[] = '
- ' . get_the_title($page->ID) . '
';
$parent_id = $page->post_parent;
}
$breadcrumbs = array_reverse($breadcrumbs);
foreach ($breadcrumbs as $crumb)
echo $crumb . ' ' . $delimiter . ' ';
echo $before . get_the_title() . $after;
} elseif (is_search()) {
echo $before . _e("Search results for ", 'awada') . get_search_query() . '"' . $after;
} elseif (is_tag()) {
echo $before . _e('Tag ', 'awada') . single_tag_title($delimiter, false) . $after;
} elseif (is_author()) {
global $author;
$userdata = get_userdata($author);
echo $before . _e("Articles posted by: ", 'awada') . $userdata->display_name . $after;
} elseif (is_404()) {
echo $before . _e("Error 404 ", 'awada') . $after;
}
echo '
';
}
//Blog PAGINATION
function awada_pagination()
{
echo "";
}
/*** Post pagination ***/
function awada_pagination_link()
{ ?>
id="comment-">
$add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))); ?>
comment_approved == '0') { ?>