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
| padding:0 8px; | |
| margin:0; | |
| color:gray; | |
| background:transparent; | |
| resize: none; | |
| font-size:12px; | |
| height: auto; | |
| -webkit-appearance: none; | |
| border-radius:0px; | |
| -webkit-border-radius:0px; |
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
| box-sizing:border-box; | |
| -moz-box-sizing:border-box; |
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', 'register_my_cpt' ); | |
| function register_my_cpt() { | |
| $labels = array( | |
| 'name' => _x( 'Custom', 'my_cpt' ), | |
| 'singular_name' => _x( 'Custom', 'my_cpt' ), | |
| 'add_new' => _x( 'Add New', 'my_cpt' ), | |
| 'add_new_item' => _x( 'Add New Custom', 'my_cpt' ), | |
| 'edit_item' => _x( 'Edit Custom', 'my_cpt' ), |
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 my_custom_taxonomy() { | |
| $labels = array( | |
| 'name' => _x( 'Custom', 'Taxonomy General Name', 'kk_theme' ), | |
| 'singular_name' => _x( 'Customs', 'Taxonomy Singular Name', 'kk_theme' ), | |
| 'menu_name' => __( 'Customs', 'kk_theme' ), | |
| 'all_items' => __( 'All Customs', 'kk_theme' ), | |
| 'parent_item' => __( 'Parent Custom', 'kk_theme' ), | |
| 'parent_item_colon' => __( 'Parent Custom:', 'kk_theme' ), | |
| 'new_item_name' => __( 'New Custom Name', 'kk_theme' ), | |
| 'add_new_item' => __( 'Add New Custom', 'kk_theme' ), |
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_theme_support( 'post-thumbnails' ); | |
| add_image_size( 'thumb', 100, 100, true ); |
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
| var $j = jQuery.noConflict(); | |
| $j(document).ready(function() { | |
| $j('#load-more').on('click', function(e){ | |
| var $this = $j(this); | |
| e.preventDefault(); | |
| $j('#results-message').css('display', 'block'); | |
| post_number = $this.data('post-number'); |
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 get_more_posts(){ | |
| $main_args = array( | |
| 'post_type' =>'post', | |
| 'post_status' => 'publish', | |
| 'posts_per_page' => $_POST['post_number'], | |
| 'paged' => $_POST['pag'] | |
| ); | |
| $main_posts = new WP_Query($main_args); |
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
| @charset "UTF-8"; | |
| @font-face { | |
| font-family: "SSStandard"; | |
| src: url('ss-standard.eot'); | |
| src: url('ss-standard.eot?#iefix') format('embedded-opentype'), | |
| url('ss-standard.woff') format('woff'), | |
| url('ss-standard.ttf') format('truetype'), | |
| url('ss-standard.svg#SSStandard') format('svg'); | |
| font-weight: normal; | |
| font-style: normal; |
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
| @charset "UTF-8"; | |
| @font-face { | |
| font-family: "SSSocialCircle"; | |
| src: url('ss-social-circle.eot'); | |
| src: url('ss-social-circle.eot?#iefix') format('embedded-opentype'), | |
| url('ss-social-circle.woff') format('woff'), | |
| url('ss-social-circle.ttf') format('truetype'), | |
| url('ss-social-circle.svg#SSSocialCircle') format('svg'); | |
| font-weight: normal; | |
| font-style: normal; |
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
| @font-face { | |
| font-family: "SSGeomiconsSquared"; | |
| src: url('ss-geomicons-squared.eot'); | |
| src: url('ss-geomicons-squared.eot?#iefix') format('embedded-opentype'), | |
| url('ss-geomicons-squared.woff') format('woff'), | |
| url('ss-geomicons-squared.ttf') format('truetype'), | |
| url('ss-geomicons-squared.svg#SSGeomiconsSquared') format('svg'); | |
| font-weight: 400; | |
| font-style: normal; | |
| } |
OlderNewer