for posts and comments.
add_theme_support( 'automatic-feed-links' );
// This theme supports a variety of post formats.
add_theme_support( 'post-formats', array( 'aside', 'image', 'link', 'quote', 'status' ) );
// This theme uses wp_nav_menu() in one location.
register_nav_menu( 'primary', __( 'Primary Menu', 'aadya' ) );
register_nav_menu( 'footer-menu', __( 'Footer Menu', 'aadya' ) );
/*
* This theme supports custom background color and image, and here
* we also set up the default background color.
*/
add_theme_support( 'custom-background', array(
'default-color' => 'e6e6e6',
) );
// This theme uses a custom image size for featured images, displayed on "standard" posts.
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 624, 9999 ); // Unlimited height, soft crop
}
add_action( 'after_setup_theme', 'aadya_setup' );
//Social Icon Box
require(get_template_directory() . '/inc/widgets/social-box-widget.php');
//Front Page Text
require(get_template_directory() . '/inc/widgets/front-page-thumbnail-text-widget.php');
//Front Page Feature Text
require(get_template_directory() . '/inc/widgets/front-page-feature-text-widget.php');
//Author Profile
require(get_template_directory() . '/inc/widgets/author-profile-widget.php');
function aadya_load_custom_widgets() {
register_widget( 'aadya_socialiconbox_widget' );
register_widget( 'aadya_frontpage_thumbnail_text_widget' );
register_widget( 'aadya_frontpage_featured_text_widget' );
register_widget( 'aadya_author_profile_widget' );
}
add_action('widgets_init', 'aadya_load_custom_widgets');
/**
* Adds support for a custom header image.
*/
require( get_template_directory() . '/inc/custom-header.php' );
require_once( get_template_directory() . '/inc/wp_bootstrap_navwalker.php' );
/**
* Enqueues scripts and styles for front-end.
*
* @since Aadya 1.0.0
*/
function aadya_scripts_styles() {
global $wp_styles;
/*
* Adds JavaScript to pages with the comment form to support
* sites with threaded comments (when in use).
*/
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
/*
* Loads our special font CSS file.
*
* The use of Open Sans by default is localized. For languages that use
* characters not supported by the font, the font can be disabled.
*
* To disable in a child theme, use wp_dequeue_style()
* function mytheme_dequeue_fonts() {
* wp_dequeue_style( 'aadya-fonts' );
* }
* add_action( 'wp_enqueue_scripts', 'mytheme_dequeue_fonts', 11 );
*/
/* translators: If there are characters in your language that are not supported
by Open Sans, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Open Sans font: on or off', 'aadya' ) ) {
$subsets = 'latin,latin-ext';
/* translators: To add an additional Open Sans character subset specific to your language, translate
this to 'greek', 'cyrillic' or 'vietnamese'. Do not translate into your own language. */
$subset = _x( 'no-subset', 'Open Sans font: add new subset (greek, cyrillic, vietnamese)', 'aadya' );
if ( 'cyrillic' == $subset )
$subsets .= ',cyrillic,cyrillic-ext';
elseif ( 'greek' == $subset )
$subsets .= ',greek,greek-ext';
elseif ( 'vietnamese' == $subset )
$subsets .= ',vietnamese';
$protocol = is_ssl() ? 'https' : 'http';
$query_args = array(
'family' => 'Open+Sans:400italic,700italic,400,700',
'subset' => $subsets,
);
//wp_enqueue_style( 'aadya-fonts', add_query_arg( $query_args, "$protocol://fonts.googleapis.com/css" ), array(), null );
}
// Load JavaScripts
wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), '3.0.0', true );
// Load Stylesheets. Load bootstrap css as per theme option selected
$theme_layout = of_get_option('theme_layout');
if($theme_layout=="wide") {
wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap-wide.css' );
} else {
wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css' );
}
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/css/font-awesome.min.css' );
wp_enqueue_style( 'bootstrap-social', get_template_directory_uri().'/css/bootstrap-social.css' );
/*
* Loads the Internet Explorer specific stylesheet.
*/
wp_enqueue_style( 'aadya-ie', get_template_directory_uri() . '/css/font-awesome-ie7.min.css');
$wp_styles->add_data( 'aadya-ie', 'conditional', 'lt IE 9' );
/*
* Loads our main stylesheet.
*/
wp_enqueue_style( 'aadya-style', get_stylesheet_uri() );
wp_enqueue_style( 'aadya-style-carousel', get_template_directory_uri() . '/css/carousel.css');
}
add_action( 'wp_enqueue_scripts', 'aadya_scripts_styles' );
// queue up the necessary js
function aadya_admin_scripts($hooks)
{
if ( 'widgets.php' == $hooks ) {
wp_enqueue_media();
wp_enqueue_script( 'aadya-widgets', get_template_directory_uri() . '/js/widgets.js', array( 'jquery-ui-sortable' ) );
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/css/font-awesome.min.css' );
wp_enqueue_style( 'widget-frontpage-featured-text', get_template_directory_uri().'/css/widget-frontpage-featured-text.css' );
}
}
add_action('admin_enqueue_scripts', 'aadya_admin_scripts');
/**
* Creates a nicely formatted and more specific title element text
* for output in head of document, based on current view.
*
* @since Aadya 1.0.0
*
* @param string $title Default title text for current view.
* @param string $sep Optional separator.
* @return string Filtered title.
*/
function aadya_wp_title( $title, $sep ) {
global $paged, $page;
if ( is_feed() )
return $title;
// Add the site name.
$title .= get_bloginfo( 'name' );
// Add the site description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
$title = "$title $sep $site_description";
// Add a page number if necessary.
if ( $paged >= 2 || $page >= 2 )
$title = "$title $sep " . sprintf( __( 'Page %s', 'aadya' ), max( $paged, $page ) );
return $title;
}
add_filter( 'wp_title', 'aadya_wp_title', 10, 2 );
/**
* Makes our wp_nav_menu() fallback -- wp_page_menu() -- show a home link.
*
* @since Aadya 1.0.0
*/
function aadya_page_menu_args( $args ) {
if ( ! isset( $args['show_home'] ) )
$args['show_home'] = true;
return $args;
}
add_filter( 'wp_page_menu_args', 'aadya_page_menu_args' );
/**
* Registers our main widget area and the front page widget areas.
*
* @since Aadya 1.0.0
*/
function aadya_widgets_init() {
// Header Right
register_sidebar( array(
'id' => 'aadya_header_right',
'name' => __( 'Header Right', 'aadya' ),
'description' => __( 'This sidebar is located on the right-hand side of header area.', 'aadya' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
register_sidebar( array(
'id' => 'aadya_header_left',
'name' => __( 'Header Left', 'aadya' ),
'description' => __( 'This sidebar is located on the left-hand side of header area. Just after logo.', 'aadya' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
// Sidebar Right
register_sidebar( array(
'id' => 'aadya_sidebar_right',
'name' => __( 'Sidebar Right', 'aadya' ),
'description' => __( 'This sidebar is located on the right-hand side of each page. This is Default Side bar.', 'aadya' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
// Sidebar Left
register_sidebar( array(
'id' => 'aadya_sidebar_left',
'name' => __( 'Sidebar Left', 'aadya' ),
'description' => __( 'This sidebar is located on the left-hand side of each page.', 'aadya' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
// Sidebar Footer
register_sidebar( array(
'id' => 'extended_footer_one',
'name' => __( 'Footer One', 'aadya' ),
'description' => __( 'This sidebar is located on Footer and its First section. Occupies 4 Columns out of 12.', 'aadya' ),
'before_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
// Sidebar Footer
register_sidebar( array(
'id' => 'extended_footer_two',
'name' => __( 'Footer Two', 'aadya' ),
'description' => __( 'This sidebar is located on Footer and its Second section.Occupies 4 Columns out of 12.', 'aadya' ),
'before_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
// Sidebar Footer
register_sidebar( array(
'id' => 'extended_footer_three',
'name' => __( 'Footer Three', 'aadya' ),
'description' => __( 'This sidebar is located on Footer and its Third section. Occupies 4 Columns out of 12.', 'aadya' ),
'before_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
if(of_get_option('extended_footer_count')=='4') {
register_sidebar( array(
'id' => 'extended_footer_four',
'name' => __( 'Footer Four', 'aadya' ),
'description' => __( 'This sidebar is located on Footer and its Third section. Occupies 4 Columns out of 12.', 'aadya' ),
'before_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
} else {
unregister_sidebar( 'extended_footer_four' );
}
//Here we are providing widget area as a row.
//So we must calculate the number of widgets first in this row to adjust the number of columns for each widget.
//if 3 or less widgets, 4 columns will be alloated, else 3 columns ... not sure how this is working I just gave it a try and it worked ;)
$mysidebars = wp_get_sidebars_widgets();
if(isset($mysidebars['aadya_front_page_widget_row_one'])){
$total_widgets = count( $mysidebars['aadya_front_page_widget_row_one'] );
if($total_widgets <= 3) $cols = 4;
else $cols = 3;
} else $cols = 3;
//Front Page Widget Row Section 1
register_sidebar( array(
'id' => 'aadya_front_page_widget_row_one',
'name' => __( 'Front Page Widget Row One', 'aadya' ),
'description' => __( 'This widget area is active only on frontpage and first widget area/row.', 'aadya' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
if(isset($mysidebars['aadya_front_page_widget_row_two'])){
$total_widgets = count( $mysidebars['aadya_front_page_widget_row_two'] );
if($total_widgets <= 3) $cols = 4;
else $cols = 3;
} else $cols = 3;
//Front Page Widget Row Section 2
register_sidebar( array(
'id' => 'aadya_front_page_widget_row_two',
'name' => __( 'Front Page Widget Row Two', 'aadya' ),
'description' => __( 'This widget area is active only on frontpage and second widget area/row.', 'aadya' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '
',
'after_title' => '
',
) );
if(isset($mysidebars['aadya_front_page_widget_row_three'])){
$total_widgets = count( $mysidebars['aadya_front_page_widget_row_three'] );
if($total_widgets <= 3) $cols = 4;
else $cols = 3;
} else $cols = 3;
if(of_get_option('front_page_widget_section_count')=='3' || of_get_option('front_page_widget_section_count')=='4') {
//Front Page Widget Row Section 3
register_sidebar( array(
'id' => 'aadya_front_page_widget_row_three',
'name' => __( 'Front Page Widget Row Three', 'aadya' ),
'description' => __( 'This widget area is active only on frontpage and third widget area/row.', 'aadya' ),
'before_widget' => '
',
) );
} else {
unregister_sidebar( 'aadya_front_page_widget_row_four' );
}
}
add_action( 'widgets_init', 'aadya_widgets_init' );
/**
* Displays navigation to next/previous pages when applicable.
*
* @since Aadya 1.0.0
*/
function aadya_content_nav( $html_id ) {
//Call Custom Pagination here instead of calling it on each and every page where its required
aadya_custom_pagination();
}
add_filter('get_avatar','aadya_change_avatar_css');
function aadya_change_avatar_css($class) {
$class = str_replace("class='avatar", "class='media-object avatar img-circle", $class) ;
return $class;
}
/**
* Template for comments and pingbacks.
*
* To override this walker in a child theme without modifying the comments template
* simply create your own aadya_comment(), and that function will be used instead.
*
* Used as a callback by wp_list_comments() for displaying the comments.
*
* @since Aadya 1.0.0
*/
function aadya_comment( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
switch ( $comment->comment_type ) :
case 'pingback' :
case 'trackback' :
// Display trackbacks differently than normal comments.
?>
id="comment-">
', '' ); ?>
id="li-comment-">
%1$s %2$s',
get_comment_author_link(),
// If current post author is also comment author, make it known visually.
( $comment->user_id === $post->post_author ) ? ' ' . __( 'Post author', 'aadya' ) . '' : '');
?>
',
esc_url( get_comment_link( $comment->comment_ID ) ),
get_comment_time( 'c' ),
/* translators: 1: date, 2: time */
sprintf( __( '%1$s at %2$s', 'aadya' ), get_comment_date(), get_comment_time() ));
?>