Skip to content

Instantly share code, notes, and snippets.

@Dexterstat
Dexterstat / get_post_by_title.php
Created March 6, 2014 15:48
Get post id by title
/**
* Get id from post title
*
* @version 0.01
* @access internal
* @author Agavriloaie Marius <contact@dexblog.ro>
*
* @param none
* @return none
* =====================================================================================================
@Dexterstat
Dexterstat / currentdate.js
Created March 6, 2014 16:35
Current date on javascript
var currentDate = new Date()
var day = currentDate.getDate()
var month = currentDate.getMonth() + 1
var year = currentDate.getFullYear()
@Dexterstat
Dexterstat / wp_query.php
Created April 15, 2014 11:43
wp_query select post that are specific to a caetgory, with a taxonomy and numer of post and page numver
$args = array(
'post_type' => 'post',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'movie_genre',
'field' => 'slug',
'terms' => array( 'action', 'comedy' )
),
array(
@Dexterstat
Dexterstat / htmls+css
Created April 15, 2014 14:25
position middle horizontal and vertical
<div class="loginDiv"></div>
.loginDiv {
position: absolute;
left: 50%;
top: 50%;
text-align: center;
background-image: url('Images/loginBox.png');
width:546px;
height:265px;
@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' ),
@Dexterstat
Dexterstat / radius.css
Created January 13, 2014 13:41
CSS border radius Cross Browser
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
background-clip: padding-box