This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*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>', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function category_post_shortcode($atts){ | |
| extract( shortcode_atts( array( | |
| 'title' => '', | |
| 'link' => '', | |
| 'category' => '', | |
| ), $atts, 'category_post' ) ); | |
| global $post; | |
| $q = new WP_Query( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function dynamic_add_linking($atts, $content=null){ | |
| extract(shortcode_atts(array( | |
| 'link' => '', | |
| 'img' => '', | |
| 'title' => '', | |
| ), $atts, 'ads') ); | |
| return '<a href=""><img src="'.$img.'" alt="" /></a>'; | |
| } |
NewerOlder