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 moreBu 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 moreBu 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 moreBu 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 moreBu 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
English
Türkçe 

Yorumlar