File: /var/www/dhoistage.concertium.com/wp-content/themes/dohi/functions.php
<?php
/**
* Twenty Fourteen functions and definitions
*
* Set up the theme and provides some helper functions, which are used in the
* theme as custom template tags. Others are attached to action and filter
* hooks in WordPress to change core functionality.
*
* When using a child theme you can override certain functions (those wrapped
* in a function_exists() call) by defining them first in your child theme's
* functions.php file. The child theme's functions.php file is included before
* the parent theme's file, so the child theme functions would be used.
*
* @link http://codex.wordpress.org/Theme_Development
* @link http://codex.wordpress.org/Child_Themes
*
* Functions that are not pluggable (not wrapped in function_exists()) are
* instead attached to a filter or action hook.
*
* For more information on hooks, actions, and filters,
* @link http://codex.wordpress.org/Plugin_API
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
/**
* Set up the content width value based on the theme's design.
*
* @see twentyfourteen_content_width()
*
* @since Twenty Fourteen 1.0
*/
if ( ! isset( $content_width ) ) {
$content_width = 474;
}
/**
* Twenty Fourteen only works in WordPress 3.6 or later.
*/
if ( version_compare( $GLOBALS['wp_version'], '3.6', '<' ) ) {
require get_template_directory() . '/inc/back-compat.php';
}
if ( ! function_exists( 'twentyfourteen_setup' ) ) :
/**
* Twenty Fourteen setup.
*
* Set up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support post thumbnails.
*
* @since Twenty Fourteen 1.0
*/
function twentyfourteen_setup() {
/*
* Make Twenty Fourteen available for translation.
*
* Translations can be added to the /languages/ directory.
* If you're building a theme based on Twenty Fourteen, use a find and
* replace to change 'twentyfourteen' to the name of your theme in all
* template files.
*/
load_theme_textdomain( 'twentyfourteen', get_template_directory() . '/languages' );
// This theme styles the visual editor to resemble the theme style.
add_editor_style( array( 'css/editor-style.css', twentyfourteen_font_url() ) );
// Add RSS feed links to <head> for posts and comments.
add_theme_support( 'automatic-feed-links' );
// Enable support for Post Thumbnails, and declare two sizes.
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 672, 372, true );
add_image_size( 'twentyfourteen-full-width', 1038, 576, true );
// This theme uses wp_nav_menu() in two locations.
register_nav_menus( array(
'primary' => __( 'Header', 'twentyfourteen' ),
'secondary' => __( 'Footer', 'twentyfourteen' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form', 'comment-form', 'comment-list', 'gallery', 'caption'
) );
/*
* Enable support for Post Formats.
* See http://codex.wordpress.org/Post_Formats
*/
add_theme_support( 'post-formats', array(
'aside', 'image', 'video', 'audio', 'quote', 'link', 'gallery',
) );
// This theme allows users to set a custom background.
add_theme_support( 'custom-background', apply_filters( 'twentyfourteen_custom_background_args', array(
'default-color' => 'f5f5f5',
) ) );
// Add support for featured content.
add_theme_support( 'featured-content', array(
'featured_content_filter' => 'twentyfourteen_get_featured_posts',
'max_posts' => 6,
) );
// This theme uses its own gallery styles.
add_filter( 'use_default_gallery_style', '__return_false' );
}
endif; // twentyfourteen_setup
add_action( 'after_setup_theme', 'twentyfourteen_setup' );
/**
* Adjust content_width value for image attachment template.
*
* @since Twenty Fourteen 1.0
*/
function twentyfourteen_content_width() {
if ( is_attachment() && wp_attachment_is_image() ) {
$GLOBALS['content_width'] = 810;
}
}
add_action( 'template_redirect', 'twentyfourteen_content_width' );
/**
* Getter function for Featured Content Plugin.
*
* @since Twenty Fourteen 1.0
*
* @return array An array of WP_Post objects.
*/
function twentyfourteen_get_featured_posts() {
/**
* Filter the featured posts to return in Twenty Fourteen.
*
* @since Twenty Fourteen 1.0
*
* @param array|bool $posts Array of featured posts, otherwise false.
*/
return apply_filters( 'twentyfourteen_get_featured_posts', array() );
}
/**
* A helper conditional function that returns a boolean value.
*
* @since Twenty Fourteen 1.0
*
* @return bool Whether there are featured posts.
*/
function twentyfourteen_has_featured_posts() {
return ! is_paged() && (bool) twentyfourteen_get_featured_posts();
}
/**
* Register three Twenty Fourteen widget areas.
*
* @since Twenty Fourteen 1.0
*/
function twentyfourteen_widgets_init() {
require get_template_directory() . '/inc/widgets.php';
register_widget( 'Twenty_Fourteen_Ephemera_Widget' );
register_sidebar( array(
'name' => __( 'Primary Sidebar', 'twentyfourteen' ),
'id' => 'sidebar-1',
'description' => __( 'Main sidebar that appears on the left.', 'twentyfourteen' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h1 class="widget-title">',
'after_title' => '</h1>',
) );
register_sidebar( array(
'name' => __( 'Content Sidebar', 'twentyfourteen' ),
'id' => 'sidebar-2',
'description' => __( 'Additional sidebar that appears on the right.', 'twentyfourteen' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h1 class="widget-title">',
'after_title' => '</h1>',
) );
register_sidebar( array(
'name' => __( 'Footer Widget Area', 'twentyfourteen' ),
'id' => 'sidebar-3',
'description' => __( 'Appears in the footer section of the site.', 'twentyfourteen' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h1 class="widget-title">',
'after_title' => '</h1>',
) );
}
add_action( 'widgets_init', 'twentyfourteen_widgets_init' );
/**
* Register Lato Google font for Twenty Fourteen.
*
* @since Twenty Fourteen 1.0
*
* @return string
*/
function twentyfourteen_font_url() {
$font_url = '';
/*
* Translators: If there are characters in your language that are not supported
* by Lato, translate this to 'off'. Do not translate into your own language.
*/
if ( 'off' !== _x( 'on', 'Lato font: on or off', 'twentyfourteen' ) ) {
$font_url = add_query_arg( 'family', urlencode( 'Lato:300,400,700,900,300italic,400italic,700italic' ), "//fonts.googleapis.com/css" );
}
return $font_url;
}
/**
* Enqueue scripts and styles for the front end.
*
* @since Twenty Fourteen 1.0
*/
function twentyfourteen_scripts() {
// Add Lato font, used in the main stylesheet.
wp_enqueue_style( 'twentyfourteen-lato', twentyfourteen_font_url(), array(), null );
// Add Genericons font, used in the main stylesheet.
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.2' );
// Load our main stylesheet.
wp_enqueue_style( 'twentyfourteen-style', get_stylesheet_uri(), array( 'genericons' ) );
// Load the Internet Explorer specific stylesheet.
wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style', 'genericons' ), '20131205' );
wp_style_add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
if ( is_singular() && wp_attachment_is_image() ) {
wp_enqueue_script( 'twentyfourteen-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20130402' );
}
if ( is_active_sidebar( 'sidebar-3' ) ) {
wp_enqueue_script( 'jquery-masonry' );
}
if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) ) {
wp_enqueue_script( 'twentyfourteen-slider', get_template_directory_uri() . '/js/slider.js', array( 'jquery' ), '20131205', true );
wp_localize_script( 'twentyfourteen-slider', 'featuredSliderDefaults', array(
'prevText' => __( 'Previous', 'twentyfourteen' ),
'nextText' => __( 'Next', 'twentyfourteen' )
) );
}
wp_enqueue_script( 'twentyfourteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20140319', true );
}
add_action( 'wp_enqueue_scripts', 'twentyfourteen_scripts' );
/**
* Enqueue Google fonts style to admin screen for custom header display.
*
* @since Twenty Fourteen 1.0
*/
function twentyfourteen_admin_fonts() {
wp_enqueue_style( 'twentyfourteen-lato', twentyfourteen_font_url(), array(), null );
}
add_action( 'admin_print_scripts-appearance_page_custom-header', 'twentyfourteen_admin_fonts' );
if ( ! function_exists( 'twentyfourteen_the_attached_image' ) ) :
/**
* Print the attached image with a link to the next attached image.
*
* @since Twenty Fourteen 1.0
*/
function twentyfourteen_the_attached_image() {
$post = get_post();
/**
* Filter the default Twenty Fourteen attachment size.
*
* @since Twenty Fourteen 1.0
*
* @param array $dimensions {
* An array of height and width dimensions.
*
* @type int $height Height of the image in pixels. Default 810.
* @type int $width Width of the image in pixels. Default 810.
* }
*/
$attachment_size = apply_filters( 'twentyfourteen_attachment_size', array( 810, 810 ) );
$next_attachment_url = wp_get_attachment_url();
/*
* Grab the IDs of all the image attachments in a gallery so we can get the URL
* of the next adjacent image in a gallery, or the first image (if we're
* looking at the last image in a gallery), or, in a gallery of one, just the
* link to that image file.
*/
$attachment_ids = get_posts( array(
'post_parent' => $post->post_parent,
'fields' => 'ids',
'numberposts' => -1,
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
'orderby' => 'menu_order ID',
) );
// If there is more than 1 attachment in a gallery...
if ( count( $attachment_ids ) > 1 ) {
foreach ( $attachment_ids as $attachment_id ) {
if ( $attachment_id == $post->ID ) {
$next_id = current( $attachment_ids );
break;
}
}
// get the URL of the next image attachment...
if ( $next_id ) {
$next_attachment_url = get_attachment_link( $next_id );
}
// or get the URL of the first image attachment.
else {
$next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );
}
}
printf( '<a href="%1$s" rel="attachment">%2$s</a>',
esc_url( $next_attachment_url ),
wp_get_attachment_image( $post->ID, $attachment_size )
);
}
endif;
if ( ! function_exists( 'twentyfourteen_list_authors' ) ) :
/**
* Print a list of all site contributors who published at least one post.
*
* @since Twenty Fourteen 1.0
*/
function twentyfourteen_list_authors() {
$contributor_ids = get_users( array(
'fields' => 'ID',
'orderby' => 'post_count',
'order' => 'DESC',
'who' => 'authors',
) );
foreach ( $contributor_ids as $contributor_id ) :
$post_count = count_user_posts( $contributor_id );
// Move on if user has not published a post (yet).
if ( ! $post_count ) {
continue;
}
?>
<div class="contributor">
<div class="contributor-info">
<div class="contributor-avatar"><?php echo get_avatar( $contributor_id, 132 ); ?></div>
<div class="contributor-summary">
<h2 class="contributor-name"><?php echo get_the_author_meta( 'display_name', $contributor_id ); ?></h2>
<p class="contributor-bio">
<?php echo get_the_author_meta( 'description', $contributor_id ); ?>
</p>
<a class="button contributor-posts-link" href="<?php echo esc_url( get_author_posts_url( $contributor_id ) ); ?>">
<?php printf( _n( '%d Article', '%d Articles', $post_count, 'twentyfourteen' ), $post_count ); ?>
</a>
</div><!-- .contributor-summary -->
</div><!-- .contributor-info -->
</div><!-- .contributor -->
<?php
endforeach;
}
endif;
/**
* Extend the default WordPress body classes.
*
* Adds body classes to denote:
* 1. Single or multiple authors.
* 2. Presence of header image.
* 3. Index views.
* 4. Full-width content layout.
* 5. Presence of footer widgets.
* 6. Single views.
* 7. Featured content layout.
*
* @since Twenty Fourteen 1.0
*
* @param array $classes A list of existing body class values.
* @return array The filtered body class list.
*/
function twentyfourteen_body_classes( $classes ) {
if ( is_multi_author() ) {
$classes[] = 'group-blog';
}
if ( get_header_image() ) {
$classes[] = 'header-image';
} else {
$classes[] = 'masthead-fixed';
}
if ( is_archive() || is_search() || is_home() ) {
$classes[] = 'list-view';
}
if ( ( ! is_active_sidebar( 'sidebar-2' ) )
|| is_page_template( 'page-templates/full-width.php' )
|| is_page_template( 'page-templates/contributors.php' )
|| is_attachment() ) {
$classes[] = 'full-width';
}
if ( is_active_sidebar( 'sidebar-3' ) ) {
$classes[] = 'footer-widgets';
}
if ( is_singular() && ! is_front_page() ) {
$classes[] = 'singular';
}
if ( is_front_page() && 'slider' == get_theme_mod( 'featured_content_layout' ) ) {
$classes[] = 'slider';
} elseif ( is_front_page() ) {
$classes[] = 'grid';
}
return $classes;
}
add_filter( 'body_class', 'twentyfourteen_body_classes' );
/**
* Extend the default WordPress post classes.
*
* Adds a post class to denote:
* Non-password protected page with a post thumbnail.
*
* @since Twenty Fourteen 1.0
*
* @param array $classes A list of existing post class values.
* @return array The filtered post class list.
*/
function twentyfourteen_post_classes( $classes ) {
if ( ! post_password_required() && ! is_attachment() && has_post_thumbnail() ) {
$classes[] = 'has-post-thumbnail';
}
return $classes;
}
add_filter( 'post_class', 'twentyfourteen_post_classes' );
/**
* Create a nicely formatted and more specific title element text for output
* in head of document, based on current view.
*
* @since Twenty Fourteen 1.0
*
* @param string $title Default title text for current view.
* @param string $sep Optional separator.
* @return string The filtered title.
*/
function twentyfourteen_wp_title( $title, $sep ) {
global $paged, $page;
if ( is_feed() ) {
return $title;
}
// Add the site name.
$title .= get_bloginfo( 'name', 'display' );
// 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', 'twentyfourteen' ), max( $paged, $page ) );
}
return $title;
}
add_filter( 'wp_title', 'twentyfourteen_wp_title', 10, 2 );
// Implement Custom Header features.
require get_template_directory() . '/inc/custom-header.php';
// Custom template tags for this theme.
require get_template_directory() . '/inc/template-tags.php';
// Add Theme Customizer functionality.
require get_template_directory() . '/inc/customizer.php';
/*
* Add Featured Content functionality.
*
* To overwrite in a plugin, define your own Featured_Content class on or
* before the 'setup_theme' hook.
*/
if ( ! class_exists( 'Featured_Content' ) && 'plugins.php' !== $GLOBALS['pagenow'] ) {
require get_template_directory() . '/inc/featured-content.php';
}
/***********************************************
|Custom Functions
***********************************************/
add_filter( 'woocommerce_taxonomy_objects_product_cat', 'cb_woocommerce_taxonomy_objects_product_cat');
function cb_woocommerce_taxonomy_objects_product_cat($a){
if(!empty($a)){
$a = array_merge($a,array('brand'));
}
return $a;
}
add_action( 'init', 'custom_post_type_cb' );
/**
* Register a slider post type.
*
* @link http://codex.wordpress.org/Function_Reference/register_post_type
*/
function custom_post_type_cb() {
//slider
$labels = array(
'name' => __( 'Sliders','your-plugin-textdomain' ),
'singular_name' => __( 'Slider', 'your-plugin-textdomain' ),
'menu_name' => __( 'Sliders', 'your-plugin-textdomain' ),
'name_admin_bar' => __( 'Slider', 'your-plugin-textdomain' ),
'add_new' => __( 'Add New', 'your-plugin-textdomain' ),
'add_new_item' => __( 'Add New Slider', 'your-plugin-textdomain' ),
'new_item' => __( 'New Slider', 'your-plugin-textdomain' ),
'edit_item' => __( 'Edit Slider', 'your-plugin-textdomain' ),
'view_item' => __( 'View Slider', 'your-plugin-textdomain' ),
'all_items' => __( 'All Sliders', 'your-plugin-textdomain' ),
'search_items' => __( 'Search Sliders', 'your-plugin-textdomain' ),
'parent_item_colon' => __( 'Parent Sliders:', 'your-plugin-textdomain' ),
'not_found' => __( 'No sliders found.', 'your-plugin-textdomain' ),
'not_found_in_trash' => __( 'No sliders found in Trash.', 'your-plugin-textdomain' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'home_page_slider' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'thumbnail' )
);
register_post_type( 'home_page_slider', $args );
////////// Partners
$labels = array(
'name' => __( 'Partners','your-plugin-textdomain' ),
'singular_name' => __( 'Partner', 'your-plugin-textdomain' ),
'menu_name' => __( 'Partners', 'your-plugin-textdomain' ),
'name_admin_bar' => __( 'Partners', 'your-plugin-textdomain' ),
'add_new' => __( 'Add New', 'your-plugin-textdomain' ),
'add_new_item' => __( 'Add New Partner', 'your-plugin-textdomain' ),
'new_item' => __( 'New Partner', 'your-plugin-textdomain' ),
'edit_item' => __( 'Edit Partner', 'your-plugin-textdomain' ),
'view_item' => __( 'View Partners', 'your-plugin-textdomain' ),
'all_items' => __( 'All Partners', 'your-plugin-textdomain' ),
'search_items' => __( 'Search Partners', 'your-plugin-textdomain' ),
'parent_item_colon' => __( 'Parent Partners:', 'your-plugin-textdomain' ),
'not_found' => __( 'No partners found.', 'your-plugin-textdomain' ),
'not_found_in_trash' => __( 'No Partners found in Trash.', 'your-plugin-textdomain' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'partners' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'thumbnail' )
);
register_post_type( 'partners', $args );
////////// Industry Links
$labels = array(
'name' => __( 'Industry Links','your-plugin-textdomain' ),
'singular_name' => __( 'Industry Link', 'your-plugin-textdomain' ),
'menu_name' => __( 'Industry Links', 'your-plugin-textdomain' ),
'name_admin_bar' => __( 'Industry Links', 'your-plugin-textdomain' ),
'add_new' => __( 'Add New', 'your-plugin-textdomain' ),
'add_new_item' => __( 'Add New Industry Link', 'your-plugin-textdomain' ),
'new_item' => __( 'New Industry Link', 'your-plugin-textdomain' ),
'edit_item' => __( 'Edit Industry Link', 'your-plugin-textdomain' ),
'view_item' => __( 'View Industry Links', 'your-plugin-textdomain' ),
'all_items' => __( 'All Industry Links', 'your-plugin-textdomain' ),
'search_items' => __( 'Search Industry Links', 'your-plugin-textdomain' ),
'parent_item_colon' => __( 'Parent Industry Links:', 'your-plugin-textdomain' ),
'not_found' => __( 'No Industry Links found.', 'your-plugin-textdomain' ),
'not_found_in_trash' => __( 'No Industry Links found in Trash.', 'your-plugin-textdomain' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'industry-links' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array('title' , 'editor' , 'thumbnail' )
);
register_post_type( 'industry-links', $args );
////////// Project
$labels = array(
'name' => __( 'Projects','your-plugin-textdomain' ),
'singular_name' => __( 'Project', 'your-plugin-textdomain' ),
'menu_name' => __( 'Project', 'your-plugin-textdomain' ),
'name_admin_bar' => __( 'Project', 'your-plugin-textdomain' ),
'add_new' => __( 'Add New', 'your-plugin-textdomain' ),
'add_new_item' => __( 'Add New Project', 'your-plugin-textdomain' ),
'new_item' => __( 'New Project', 'your-plugin-textdomain' ),
'edit_item' => __( 'Edit Project', 'your-plugin-textdomain' ),
'view_item' => __( 'View Project', 'your-plugin-textdomain' ),
'all_items' => __( 'All Projects', 'your-plugin-textdomain' ),
'search_items' => __( 'Search Project', 'your-plugin-textdomain' ),
'parent_item_colon' => __( 'Parent Project:', 'your-plugin-textdomain' ),
'not_found' => __( 'No Project found.', 'your-plugin-textdomain' ),
'not_found_in_trash' => __( 'No Project found in Trash.', 'your-plugin-textdomain' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'project' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title' , 'thumbnail' , 'editor' )
);
register_post_type( 'project', $args );
////////// Project
$labels = array(
'name' => __( 'FAQ','your-plugin-textdomain' ),
'singular_name' => __( 'FAQ', 'your-plugin-textdomain' ),
'menu_name' => __( 'FAQ', 'your-plugin-textdomain' ),
'name_admin_bar' => __( 'FAQ', 'your-plugin-textdomain' ),
'add_new' => __( 'Add New', 'your-plugin-textdomain' ),
'add_new_item' => __( 'Add New FAQ', 'your-plugin-textdomain' ),
'new_item' => __( 'New FAQ', 'your-plugin-textdomain' ),
'edit_item' => __( 'Edit FAQ', 'your-plugin-textdomain' ),
'view_item' => __( 'View FAQ', 'your-plugin-textdomain' ),
'all_items' => __( 'All FAQ', 'your-plugin-textdomain' ),
'search_items' => __( 'Search FAQ', 'your-plugin-textdomain' ),
'parent_item_colon' => __( 'Parent FAQ:', 'your-plugin-textdomain' ),
'not_found' => __( 'No FAQ found.', 'your-plugin-textdomain' ),
'not_found_in_trash' => __( 'No FAQ found in Trash.', 'your-plugin-textdomain' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'FAQ' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title' , 'thumbnail' , 'editor' )
);
register_post_type( 'FAQ', $args );
//brand
$labels = array(
'name' => __( 'Brands','your-plugin-textdomain' ),
'singular_name' => __( 'Brand', 'your-plugin-textdomain' ),
'menu_name' => __( 'Brand', 'your-plugin-textdomain' ),
'name_admin_bar' => __( 'Brand', 'your-plugin-textdomain' ),
'add_new' => __( 'Add New', 'your-plugin-textdomain' ),
'add_new_item' => __( 'Add New Brand', 'your-plugin-textdomain' ),
'new_item' => __( 'New Brand', 'your-plugin-textdomain' ),
'edit_item' => __( 'Edit Brand', 'your-plugin-textdomain' ),
'view_item' => __( 'View Brand', 'your-plugin-textdomain' ),
'all_items' => __( 'All Brands', 'your-plugin-textdomain' ),
'search_items' => __( 'Search Brands', 'your-plugin-textdomain' ),
'parent_item_colon' => __( 'Parent Brand:', 'your-plugin-textdomain' ),
'not_found' => __( 'No Brands found.', 'your-plugin-textdomain' ),
'not_found_in_trash' => __( 'No Brands found in Trash.', 'your-plugin-textdomain' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'brand' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'thumbnail' )
);
register_post_type( 'brand', $args );
//Onsite modification shop
$labels = array(
'name' => __( 'On-Site Modification Shop','your-plugin-textdomain' ),
'singular_name' => __( 'On-Site Modification Shop', 'your-plugin-textdomain' ),
'menu_name' => __( 'On-Site Modification Shop', 'your-plugin-textdomain' ),
'name_admin_bar' => __( 'On-Site Modification Shop', 'your-plugin-textdomain' ),
'add_new' => __( 'Add New', 'your-plugin-textdomain' ),
'add_new_item' => __( 'Add New Shop', 'your-plugin-textdomain' ),
'new_item' => __( 'New Shop', 'your-plugin-textdomain' ),
'edit_item' => __( 'Edit Shop', 'your-plugin-textdomain' ),
'view_item' => __( 'View Shop', 'your-plugin-textdomain' ),
'all_items' => __( 'All Shops', 'your-plugin-textdomain' ),
'search_items' => __( 'Search Shops', 'your-plugin-textdomain' ),
'parent_item_colon' => __( 'Parent Shop:', 'your-plugin-textdomain' ),
'not_found' => __( 'No Shop found.', 'your-plugin-textdomain' ),
'not_found_in_trash' => __( 'No Shops found in Trash.', 'your-plugin-textdomain' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'shop' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'thumbnail' )
);
register_post_type( 'shop', $args );
flush_rewrite_rules();
// adding custom section to admin section
}
add_action( 'add_meta_boxes', 'slider_info_cb' );
// callback to add custom section
function slider_info_cb(){
add_meta_box('slider_info_fields', __( 'Slider Information', 'slider' ),'slider_info_fields_cb','home_page_slider');
}
// callback to add custom fields
function slider_info_fields_cb( $post ) {
$slider_sub_heading1 = get_post_meta($post->ID,'slider_sub_heading1',true);
$slider_sub_heading2 = get_post_meta($post->ID,'slider_sub_heading2',true);
ob_start();
?>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="18%" height="30">Slider Sub Heading1 :</td>
<td width="82%">
<input type="text" name="slider_sub_heading1" id="slider_sub_heading1" value="<?php echo $slider_sub_heading1;?>" size="40" /></td>
</tr>
<tr>
<td width="18%" height="30">Slider Sub Heading2:</td>
<td width="82%">
<input type="text" name="slider_sub_heading2" id="slider_sub_heading2" value="<?php echo $slider_sub_heading2;?>" size="40" /></td>
</tr>
</table>
<?php
$content = ob_get_contents();
ob_clean();
echo $content;
}
///////////////// adding custom section to admin section
add_action( 'add_meta_boxes', 'partners_info_cb' );
// callback to add custom section
function partners_info_cb(){
add_meta_box('partners_info_fields', __( 'Partners Information', 'partners' ),'partners_info_fields_cb','partners');
}
// callback to add custom fields
function partners_info_fields_cb( $post ) {
$partners_url = get_post_meta($post->ID,'partners_url',true);
ob_start();
?>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="18%" height="30">Partners URL :</td>
<td width="82%">
<input type="text" name="partners_url" id="partners_url" value="<?php echo $partners_url;?>" size="40" /></td>
</tr>
</table>
<?php
$content = ob_get_contents();
ob_clean();
echo $content;
}
///////////////// adding custom section to admin section
add_action( 'add_meta_boxes', 'projects_info_cb' );
// callback to add custom section
function projects_info_cb(){
add_meta_box('projects_info_fields', __( 'Projects Information', 'projects' ),'projects_info_fields_cb','project');
}
// callback to add custom fields
function projects_info_fields_cb( $post ) {
$project_address = get_post_meta($post->ID,'project_address',true);
$featured = get_post_meta($post->ID,'featured',true);
//$latitude = get_post_meta($post->ID,'latitude',true);
//$longitude = get_post_meta($post->ID,'longitude',true);
ob_start();
?>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="18%" height="30">Project Address :</td>
<td width="82%">
<!--<textarea name="project_location" id="project_location"><?php echo $project_location;?></textarea>-->
<input type="text" name="project_address" id="project_address" value="<?php echo $project_address;?>" size="40" /></td>
</tr>
<tr>
<td width="18%" height="30">Featured :</td>
<td width="82%">
<input type="checkbox" name="featured" id="featured" value="1" <?php if($featured==1){ ?> checked="checked" <?php }?> size="40" /></td>
</tr>
<!--<tr>
<td width="18%" height="30">Latitude :</td>
<td width="82%">
<input type="text" name="latitude" id="latitude" value="<?php echo $latitude;?>" size="40" /></td>
</tr>
<tr>
<td width="18%" height="30">Longitude:</td>
<td width="82%">
<input type="text" name="longitude" id="longitude" value="<?php echo $longitude;?>" size="40" /></td>
</tr> -->
</table>
<?php
$content = ob_get_contents();
ob_clean();
echo $content;
}
///////////////// adding custom section to admin section
add_action( 'add_meta_boxes', 'brand_info_cb' );
// callback to add custom section
function brand_info_cb(){
add_meta_box('brand_info_fields', __( 'Brands Information', 'brand' ),'brand_info_fields_cb','brand');
}
// callback to add custom fields
function brand_info_fields_cb( $post ) {
$brand_url = get_post_meta($post->ID,'brand_url',true);
ob_start();
?>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="18%" height="30">Brand URL :</td>
<td width="82%">
<input type="text" name="brand_url" id="brand_url" value="<?php echo $brand_url;?>" size="40" /></td>
</tr>
</table>
<?php
$content = ob_get_contents();
ob_clean();
echo $content;
}
// adding custom section to admin section
add_action( 'add_meta_boxes', 'product_info_cb' );
// callback to add custom section
function product_info_cb(){
add_meta_box('product_info_fields', __( 'Product Information', 'product' ),'product_info_fields_cb','product');
}
// callback to add custom fields
function product_info_fields_cb( $post ) {
$product_short_description = get_post_meta($post->ID,'product_short_description',true);
$product_specification = get_post_meta($post->ID,'product_specification',true);
//$product_shipping_information = get_post_meta($post->ID,'product_shipping_information',true);
ob_start();
?>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="18%" height="30">Product Short Description : </td>
<td width="82%">
<?php
wp_editor( $product_short_description, 'product_short_description', array( 'textarea_name' => 'product_short_description', 'media_buttons' => false ) );
?>
</td>
</tr>
<tr>
<td width="18%" height="30">Product Specification :</td>
<td width="82%">
<?php
wp_editor( $product_specification, 'product_specification', array( 'textarea_name' => 'product_specification', 'media_buttons' => false ) );
?>
</td>
</tr>
<!--<tr>
<td width="18%" height="30">Product Shipping Information : </td>
<td width="82%">
<?php
wp_editor( $product_shipping_information, 'product_shipping_information', array( 'textarea_name' => 'product_shipping_information', 'media_buttons' => false ) );
?>
</td>
</tr>-->
</table>
<?php
$content = ob_get_contents();
ob_clean();
echo $content;
}
// hook while saving slider data
add_action('save_post', 'partners_save_post_cb', 10, 2);
// When the post is saved, saves our custom data
function partners_save_post_cb( $post_id, $post ) {
//Check it's not an auto save routine
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
return;
//Perform permission checks!
if ( !current_user_can('edit_post', $post_id) )
return;
//Checking is it trash action
if('trash' == $_REQUEST['action'])
return;
$errors = array();
if('partners' == get_post_type()){
$partners_url = trim($_POST['partners_url']);
update_post_meta($post_id,'partners_url',$partners_url);
}
if('project' == get_post_type()){
//$project_location = trim($_POST['project_location']);
$featured = trim($_POST['featured']);
$project_address = trim($_POST['project_address']);
//$longitude = trim($_POST['longitude']);
update_post_meta($post_id,'project_address',$project_address);
update_post_meta($post_id,'featured',$featured);
/*update_post_meta($post_id,'latitude',$latitude);
update_post_meta($post_id,'longitude',$longitude);*/
}
if('home_page_slider' == get_post_type()){
$slider_sub_heading1 = trim($_POST['slider_sub_heading1']);
$slider_sub_heading2 = trim($_POST['slider_sub_heading2']);
update_post_meta($post_id,'slider_sub_heading1',$slider_sub_heading1);
update_post_meta($post_id,'slider_sub_heading2',$slider_sub_heading2);
}
if('brand' == get_post_type()){
$brand_url = trim($_POST['brand_url']);
update_post_meta($post_id,'brand_url',$brand_url);
}
if('product' == get_post_type()){
$product_short_description = trim($_POST['product_short_description']);
$product_specification = trim($_POST['product_specification']);
//$product_shipping_information = trim($_POST['product_shipping_information']);
update_post_meta($post_id,'product_short_description',$product_short_description);
update_post_meta($post_id,'product_specification',$product_specification);
//update_post_meta($post_id,'product_shipping_information',$product_shipping_information);
}
}
/////// adding option in the option menu
add_action('admin_menu', 'custom_options_fb');
function custom_options_fb() {
add_options_page('Custom Options', 'Custom Options', 'administrator', 'custom_settings', 'options_page_cb');
}
// creating form for custom settings form
function options_page_cb() {
?>
<div>
<form action="options.php" method="post">
<?php settings_fields('custom_settings'); ?>
<?php do_settings_sections('custom_settings'); ?>
<p class="submit">
<input name="submit" id="submit" type="submit" class="button-primary" value="<?php esc_attr_e('Save Changes'); ?>" />
</p>
</form></div>
<?php
}
// for managing site basic settings
add_action('admin_init', 'add_theme_settings_cb');
// adding section and registering settings
function add_theme_settings_cb() {
add_settings_section('custom_setting_section','Custom settings section','contact_setting_section_cb','custom_settings');
add_settings_field( 'dhoi_video_url', 'Dhoi video url', 'dhoi_video_url_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'company_email', 'Company Email', 'company_email_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'company_email_url', 'Company Email Url', 'company_email_url_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'contact_email', 'Contact Email', 'contact_email_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'contact_email_url', 'Contact Email Url', 'contact_email_url_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'facebook_fan_page_url', 'Facebook Fan Page url', 'facebook_fan_page_url_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'google_plus_page_url', 'Google Plus Page Url', 'google_plus_page_url_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'twitter_fan_page_url', 'Twitter Fan Page url', 'twitter_fan_page_url_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'pinterest_page_url', 'Pinterest Page url', 'pinterest_page_url_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'instagram_page_url', 'Instagram Page url', 'instagram_page_url_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'phone_no', 'Phone Number', 'phone_no_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'fax_no', 'FAX Number', 'fax_no_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'business_hour', 'Business Hour', 'business_hour_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'toll_free', 'Toll Free', 'toll_free_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'map_address', 'Map Address', 'map_address_cb', 'custom_settings', 'custom_setting_section' );
add_settings_field( 'physical_address', 'Physical Address', 'physical_address_cb', 'custom_settings', 'custom_setting_section' );
//add_settings_section('fb_setting_section','FB settings section','fb_setting_section_cb','custom_settings');
register_setting('custom_settings','dhoi_video_url');
register_setting('custom_settings','company_email');
register_setting('custom_settings','company_email_url');
register_setting('custom_settings','contact_email');
register_setting('custom_settings','contact_email_url');
register_setting('custom_settings','facebook_fan_page_url');
register_setting('custom_settings','google_plus_page_url');
register_setting('custom_settings','twitter_fan_page_url');
register_setting('custom_settings','pinterest_page_url');
register_setting('custom_settings','instagram_page_url');
register_setting('custom_settings','phone_no');
register_setting('custom_settings','fax_no');
register_setting('custom_settings','business_hour');
register_setting('custom_settings','toll_free');
register_setting('custom_settings','map_address');
register_setting('custom_settings','physical_address');
}
function contact_setting_section_cb(){
echo '<p><i>Managing Custom Setting here...</i></p>';
}
// creating Conatct Fields block
function dhoi_video_url_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('dhoi_video_url').'" id="dhoi_video_url" name="dhoi_video_url" />';
}
function company_email_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('company_email').'" id="company_email" name="company_email" />';
}
function company_email_url_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('company_email_url').'" id="company_email_url" name="company_email_url" />';
}
function contact_email_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('contact_email').'" id="contact_email" name="contact_email" />';
}
function contact_email_url_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('contact_email_url').'" id="contact_email_url" name="contact_email_url" />';
}
function facebook_fan_page_url_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('facebook_fan_page_url').'" id="facebook_fan_page_url" name="facebook_fan_page_url" />';
}
function google_plus_page_url_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('google_plus_page_url').'" id="google_plus_page_url" name="google_plus_page_url" />';
}
function twitter_fan_page_url_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('twitter_fan_page_url').'" id="twitter_fan_page_url" name="twitter_fan_page_url" />';
}
function pinterest_page_url_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('pinterest_page_url').'" id="pinterest_page_url" name="pinterest_page_url" />';
}
function instagram_page_url_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('instagram_page_url').'" id="instagram_page_url" name="instagram_page_url" />';
}
function phone_no_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('phone_no').'" id="phone_no" name="phone_no" />';
}
function fax_no_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('fax_no').'" id="fax_no" name="fax_no" />';
}
function business_hour_cb() {
echo '<textarea id="business_hour" name="business_hour" class="regular-text code" rows="5" cols="40">'.get_option('business_hour').'</textarea>';
}
function toll_free_cb() {
echo '<input type="text" size="5" class="regular-text code" value="'.get_option('toll_free').'" id="toll_free" name="toll_free" />';
}
function map_address_cb() {
echo '<textarea id="map_address" name="map_address" class="regular-text code" rows="5" cols="40">'.get_option('map_address').'</textarea>';
}
function physical_address_cb() {
echo '<textarea id="physical_address" name="physical_address" class="regular-text code" rows="5" cols="40">'.get_option('physical_address').'</textarea>';
}
//Generating site contacts
///////////////////// Admin page logo,title,url change
function custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image: url('.get_bloginfo('template_directory').'/images/logo_dhoi.jpg) !important; }
</style>';
}
add_action('login_head', 'custom_login_logo');
function my_login_logo_url() {
return get_bloginfo( 'url' );
}
add_filter( 'login_headerurl', 'my_login_logo_url' );
function my_login_logo_url_title() {
return get_bloginfo( 'name' );
}
add_filter( 'login_headertitle', 'my_login_logo_url_title' );
add_filter('show_admin_bar', '__return_false');
//Generating site contacts
/*function remove_post_custom_fields() {
remove_meta_box( 'postcustom' , 'product' , 'normal' );
remove_meta_box('commentsdiv', 'product', 'normal');
}*/
//add_action( 'admin_init' , 'remove_post_custom_fields' );
function remove_plugin_metaboxes(){
#remove_meta_box( 'postcustom' , 'product' , 'normal' );
remove_meta_box('commentsdiv', 'product', 'normal');
remove_meta_box( 'postexcerpt', 'product', 'normal' );
}
add_action( 'do_meta_boxes', 'remove_plugin_metaboxes' );
add_filter('woocommerce_register_post_type_product', 'cb_register_product' );
function cb_register_product($arr){
$arr['supports'] = array( 'title', 'thumbnail' );
return $arr;
}