Archive for "Kodlar"

29 Eyl

Yazının Kaç Defa Okunduğunu Gösterme

written by No Comments posted in Functions.php, Kodlar

Bu kod sayesinde ziyaretçilerinize yazınızın kaç defa okunduğunu eklentiye gerek kalmadan gösterebileceksiniz. Adım 1 Tema dizinindeki Functions.php dosyasına aşağıdaki kodu ekleyin. function getPostViews($postID){ $count_key = ‘post_views_count’; $count = get_post_meta($postID, $count_key, true); if($count==”){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, ’0′); return “0 View”; } return $count.’ Views’; } function setPostViews($postID) { $count_key = ‘post_views_count’; $count = get_post_meta($postID, $count_key, [...]

Read more
27 Eyl

Stumbleupon’da Paylaş

written by No Comments posted in Kodlar, Sosyal

Bu kodu temanızın single.php ya da index.php dosyasında istediğiniz herhangi bir yere (The Loop idealdir.) ekleyerek ziyaretçilerinizin, yazılarınızı Stumbleupon’da paylaşmasını sağlayabilirsiniz. The Loop The Loop kodlaması böyle başlayıp, <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> aşağıdaki gibi biter. <?php endwhile; else: ?> <p><?php _e(‘Sorry, no posts matched your criteria.’); [...]

Read more
26 Eyl

Delicious’ta Paylaş

written by No Comments posted in Kodlar, Sosyal

Bu kodu temanızın single.php ya da index.php dosyasında istediğiniz herhangi bir yere (The Loop idealdir.) ekleyerek ziyaretçilerinizin, yazılarınızı Delicious’ta paylaşmasını sağlayabilirsiniz. The Loop The Loop kodlaması böyle başlayıp, <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> aşağıdaki gibi biter. <?php endwhile; else: ?> <p><?php _e(‘Sorry, no posts matched your criteria.’); [...]

Read more
26 Eyl

Facebook’ta Paylaş

written by No Comments posted in Kodlar, Sosyal

Bu kodu temanızın single.php ya da index.php dosyasında istediğiniz herhangi bir yere (The Loop idealdir.) ekleyerek ziyaretçilerinizin, yazılarınızı Facebook’ta paylaşmasını sağlayabilirsiniz. The Loop The Loop kodlaması böyle başlayıp, <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> aşağıdaki gibi biter. <?php endwhile; else: ?> <p><?php _e(‘Sorry, no posts matched your criteria.’); [...]

Read more
25 Eyl

Twitter’da Paylaş

written by No Comments posted in Kodlar, Sosyal

Bu kodu temanızın single.php ya da index.php dosyasında istediğiniz herhangi bir yere (The Loop idealdir.) ekleyerek ziyaretçilerinizin, yazılarınızı Twitter’da paylaşmasını sağlayabilirsiniz. The Loop The Loop kodlaması böyle başlayıp, <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> aşağıdaki gibi biter. <?php endwhile; else: ?> <p><?php _e(‘Sorry, no posts matched your criteria.’); [...]

Read more