Skip to content

Instantly share code, notes, and snippets.

View sumanahmed's full-sized avatar

Suman Ahmed sumanahmed

  • Future Plan IT Solution
  • Dhaka
View GitHub Profile
function dynamic_add_linking($atts, $content=null){
extract(shortcode_atts(array(
'link' => '',
'img' => '',
'title' => '',
), $atts, 'ads') );
return '<a href=""><img src="'.$img.'" alt="" /></a>';
}
function category_post_shortcode($atts){
extract( shortcode_atts( array(
'title' => '',
'link' => '',
'category' => '',
), $atts, 'category_post' ) );
global $post;
$q = new WP_Query(
/*This code for sidebar widget register*/
function widget_areas() {
register_sidebar( array(
'name' => 'Left Menu',
'id' => 'left_sidebar',
'before_widget' => '<div class="single_sidebar">',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>',
add_action('init', 'theme_register_menu');
function theme_register_menu() {
if (function_exists('register_nav_menu')) {
register_nav_menu( 'theme-main-menu', __( 'Main Menu', 'brightpage' ) );
}
}
function theme_default_menu() {
echo '<ul id="dropmenu">';
if ('page' != get_option('show_on_front')) {
echo '<li><a href="'. site_url() . '/">Home</a></li>';
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'testimonial',
array(
'labels' => array(
'name' => __( 'Testimonial' ),
'singular_name' => __( 'Testimonial' ),
'add_new' => __( 'Add New' ),
'add_new_item' => __( 'Add New Testimonial' ),
'edit_item' => __( 'Edit Testimonial' ),
<?php if ( function_exists( 'get_option_tree') ) : if( get_option_tree( 'your_tree_id') ) : ?>
<a href="<?php bloginfo('home'); ?>"><img src="<?php get_option_tree( 'your_tree_id', '', 'true' ); ?>" alt=""/></a>
<?php else : ?>
<a href="<?php bloginfo('home'); ?>"><img src="<?php echo get_template_directory_uri(); ?>/images/logo.jpg" alt=""/></a>
<?php endif; endif; ?>
<?php
if ( function_exists( 'ot_get_option' ) ) {
/* get the slider array */
$social_icons = ot_get_option( 'social_icon', array() );
if ( ! empty( $social_icons ) ) {
foreach( $social_icons as $social_icon ) {
echo '
<h2>
<?php printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() ); ?>
</h2>
<form role="search" method="get" id="searchform" class="searchform" action="http://localhost/corlate/">
<div>
<label class="screen-reader-text" for="s">Search for:</label>
<input type="text" value="Feature shortcode" name="s" id="s">
<input type="submit" id="searchsubmit" value="Search">
</div>
</form>
/**
* Required: set 'ot_theme_mode' filter to true.
*/
add_filter( 'ot_theme_mode', '__return_true' );
/**
* Required: include OptionTree.
*/
require( trailingslashit( get_template_directory() ) . 'option-tree/ot-loader.php' );