Öne çıkan resmi panelde gösteren bi eklenti vardı?
7
●409
- 06-05-2014, 14:36:49Hocma eklenti ile mümkündü küçük basit bi eklenti vardı lakin adı aklıma gelmedi. Onu bilen bir arkadaş çıkarsa uğraşmaksızın sorun çözülüyr diye bekliyorum teşekkürlerRenkTeknoloji adlı üyeden alıntı: mesajı görüntüle
- 06-05-2014, 14:49:45Hocam function.php içerisine
add_filter('manage_posts_columns', 'posts_columns', 5);
add_action('manage_posts_custom_column', 'posts_custom_columns', 5, 2);
function posts_columns($defaults){
$defaults['riv_post_thumbs'] = __('Thumbs');
return $defaults;
}
function posts_custom_columns($column_name, $id){
if($column_name === 'riv_post_thumbs'){
echo the_post_thumbnail( 'featured-thumbnail' );
}
}
yapıştırın büyük ihtimalle olması lazım. - 06-05-2014, 14:51:58olmazsa bunu dene hocam
/****** Add Thumbnails in Manage Posts/Pages List ******/ if ( !function_exists('AddThumbColumn') && function_exists('add_theme_support') ) { // for post and page add_theme_support('post-thumbnails', array( 'post', 'page' ) ); function AddThumbColumn($cols) { $cols['thumbnail'] = __('Thumbnail'); return $cols; } function AddThumbValue($column_name, $post_id) { $width = (int) 60; $height = (int) 60; if ( 'thumbnail' == $column_name ) { // thumbnail of WP 2.9 $thumbnail_id = get_post_meta( $post_id, '_thumbnail_id', true ); // image from gallery $attachments = get_children( array('post_parent' => $post_id, 'post_type' => 'attachment', 'post_mime_type' => 'image') ); if ($thumbnail_id) $thumb = wp_get_attachment_image( $thumbnail_id, array($width, $height), true ); elseif ($attachments) { foreach ( $attachments as $attachment_id => $attachment ) { $thumb = wp_get_attachment_image( $attachment_id, array($width, $height), true ); } } if ( isset($thumb) && $thumb ) { echo $thumb; } else { echo __('None'); } } } // for posts add_filter( 'manage_posts_columns', 'AddThumbColumn' ); add_action( 'manage_posts_custom_column', 'AddThumbValue', 10, 2 ); // for pages add_filter( 'manage_pages_columns', 'AddThumbColumn' ); add_action( 'manage_pages_custom_column', 'AddThumbValue', 10, 2 ); }RenkTeknoloji ve YavuzTR bunu beğendi.2 kişi bunu beğendi. - 06-05-2014, 14:51:30Şöyle bir eklenti kullanıyorum bu iş için: http://wordpress.org/plugins/featured-image-column/