Skip to content

Instantly share code, notes, and snippets.

@Dexterstat
Dexterstat / Wp_ajax admin.php
Created April 16, 2014 13:21
Wp_ajax admin
add_action("wp_ajax_nopriv_refresh_tag", "refresh_tag_function");
add_action("wp_ajax_refresh_tag", "refresh_tag_function");
function refresh_tag_function()
{
}
@Dexterstat
Dexterstat / new_gist_file.js
Created April 17, 2014 09:26
reached button jquery javascript
$(document).ready(function() {
$(window).scroll(function() {
if ($('body').height() <= ($(window).height() + $(window).scrollTop())) {
alert('Bottom reached!');
}
});
});
@Dexterstat
Dexterstat / placeholder.css
Created April 21, 2014 10:11
placeholder select
{selctor}::-webkit-input-placeholder { /* WebKit browsers */
color:#ddd !important;
}
{selctor}:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color:#ddd !important;
}
{selctor}::-moz-placeholder { /* Mozilla Firefox 19+ */
color:#ddd !important;
}
{selctor}:-ms-input-placeholder { /* Internet Explorer 10+ */
@Dexterstat
Dexterstat / new taxonomy wordpress.php
Created June 12, 2014 08:59
new taxonomy wordpresss
$labels = array (
'name' => _x ( 'Orase', 'taxonomy general name' ),
'singular_name' => _x ( 'Oras', 'taxonomy singular name' ),
'search_items' => __ ( 'Cauta orase' ),
'all_items' => __ ( 'Toate orasele' ),
'parent_item' => __ ( 'Oras parinte' ),
'parent_item_colon' => __ ( 'Oras parinte:' ),
'edit_item' => __ ( 'Editeaza oras' ),
'update_item' => __ ( 'Actualizeaza oras' ),
'add_new_item' => __ ( 'Adauna oras' ),
@Dexterstat
Dexterstat / New custom post type wordpres.php
Created June 12, 2014 09:01
New custom post type wordpres
$labels = array (
'name' => _x ( 'Orase', 'Post Type General Name', 'text_domain' ),
'singular_name' => _x ( 'Oras', 'Post Type Singular Name', 'text_domain' ),
'menu_name' => __ ( 'Orase', 'text_domain' ),
'parent_item_colon' => __ ( 'Oras parinte:', 'text_domain' ),
'all_items' => __ ( 'Toate orasele', 'text_domain' ),
'view_item' => __ ( 'Vezi orase', 'text_domain' ),
'add_new_item' => __ ( 'Adauga oras', 'text_domain' ),
'add_new' => __ ( 'Oras nou', 'text_domain' ),
'edit_item' => __ ( 'Editeaza oras', 'text_domain' ),