Skip to content

Instantly share code, notes, and snippets.

View beyazitkolemen's full-sized avatar
🎯

Beyazıt Kölemen beyazitkolemen

🎯
  • Turkey/Gaziantep
View GitHub Profile
@beyazitkolemen
beyazitkolemen / wordpress
Last active December 10, 2015 23:58
jquery-json post vs
$.fn.serializeObject = function()
{
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name]) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
@beyazitkolemen
beyazitkolemen / gist:1028417
Created June 15, 2011 23:48
Kategoriye Ait Konular
<?php $anarschi = new WP_Query("showposts=3&cat=14"); while($anarschi->have_posts()) : $anarschi->the_post();?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
//cat id - ise dahil değil
@beyazitkolemen
beyazitkolemen / postview eklentisi
Created June 15, 2011 23:43
Wordpress Konu Okunma Sayısı - Postview eklentisi
<?php if (function_exists('get_most_viewed')): ?>
<ul>
<?php get_most_viewed('both', 8); ?>
</ul>
<?php endif; ?>
@beyazitkolemen
beyazitkolemen / gist:1028411
Created June 15, 2011 23:41
Wordpress Özel Alan Sorgulama
<?php
$anarschi = get_post_meta($post->ID,'ozelalanismi', true);
if($anarschi != "") { ?>
<? echo strtolower($anarschi); ?>
<?php }else{ ?>
özel alan yok
<?php } ?>