Skip to content

Instantly share code, notes, and snippets.

View ilkeryilmaz's full-sized avatar
Working

ilker Yılmaz ilkeryilmaz

Working
View GitHub Profile
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query
* Source: http://core.trac.wordpress.org/browser/tags/3.3.1/wp-includes/query.php
*/
$args = array(
@ilkeryilmaz
ilkeryilmaz / functions.php
Last active August 29, 2015 14:14
Wordpress get category ID alternative
function wt_get_category_ID() {
$category = get_the_category();
return $category[0]->cat_ID;
}