dışarıdan resimleri çağırınca hata oluşuyor.neden olduğu konusunda şuan bilgi veremeyeceğim araştırma yapmak lazım.şimdilik direk kendi sitene upload ederek sorunu halledebilirsin.
hepsini kendi siteme upload ettim ama 2 tanesi gözükmüyor oda resim dosyasının çok büyük oldugundan olabilir mi
ŞİMDİDE BLOG YAZISINDAKİ VİEWS YAZISINI KALDIRAMIYORUM
Eklentiyle gelmiştir o eklentilere gir post views gibi bir eklenti varsa kaldır onu
varda eklenti içinden silmem lazım eklenti kodları aşagıda
quote:
<?php /* Plugin Name: WP-PostViews Plugin URI:http://lesterchan.net/portfolio/programming/php/ Description: Enables you to display how many times a post/page had been viewed. Modified by <a data-test="test" rel="nofollow" style="word-wrap: break-word; text-decoration: underline;" target="_blank" onclick="return dhExternalLinkRedirect(this)" href="/ExternalLinkRedirect?module=pgdcode&messageId=66001669&url=http://DPotter.net/Technical/" title="David's Technical Musings" data-href="http://DPotter.net/Technical/" title="David's Technical Musings">David Potter</a> to include options for when and where to display view counts. Version: 1.61 Author: Lester 'GaMerZ' Chan Author URI:http://lesterchan.net */
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
### Create Text Domain For Translations add_action('init', 'postviews_textdomain'); function postviews_textdomain() { load_plugin_textdomain('wp-postviews', false, 'wp-postviews'); }
### Function: Post Views Option Menu add_action('admin_menu', 'postviews_menu'); function postviews_menu() { if (function_exists('add_options_page')) { add_options_page(__('PostViews', 'wp-postviews'), __('PostViews', 'wp-postviews'), 'manage_options', 'wp-postviews/postviews-options.php') ; } }
### Function: Process Post Excerpt, For Some Reasons, The Default get_post_excerpt() Does Not Work As Expected function views_post_excerpt($post_excerpt, $post_content, $post_password, $chars = 200) { if(!empty($post_password)) { if(!isset($_COOKIE['wp-postpass_'.COOKIEHASH]) || $_COOKIE['wp-postpass_'.COOKIEHASH] != $post_password) { return __('There is no excerpt because this is a protected post.', 'wp-postviews'); } } if(empty($post_excerpt)) { return snippet_text(strip_tags($post_content), $chars); } else { return $post_excerpt; } }
### Function: Modify Default WordPress Listing To Make It Sorted By Post Views function views_fields($content) { global $wpdb; $content .= ", ($wpdb->postmeta.meta_value+0) AS views"; return $content; } function views_join($content) { global $wpdb; $content .= " LEFT JOIN $wpdb->postmeta ON $wpdb->postmeta.post_id = $wpdb->posts.ID"; return $content; } function views_where($content) { global $wpdb; $content .= " AND $wpdb->postmeta.meta_key = 'views'"; return $content; } function views_orderby($content) { $orderby = trim(addslashes(get_query_var('v_orderby'))); if(empty($orderby) || ($orderby != 'asc' && $orderby != 'desc')) { $orderby = 'desc'; } $content = " views $orderby"; return $content; }
Thumbnail yani öne çıkarılmış resim mi ? Eğer öyle ise ,
1- Temanın thumbnail desteği olması lazım. 2- Kendin eklemeyebilrsin , Google'dan araştırıp , zor birşey değil.
Selamun Aleykum Kardeşler Bu tanımları daha önce de kullanmıştım ve benden sonra bir çok kişi bloglarında kullanmaya başladı, bu yüzden sizlere yardımcı olabildiğim için mutluyum. wordpress ile ilgili detaylı bilgi için siteyi inceleyebilirsiniz...