Yazarın diğer yazılarını listelemek?
3
●302
- 02-11-2009, 14:49:09<?php the_author_posts_link(); ?>
detay: http://codex.wordpress.org/Template_...hor_posts_link
yada
http://wordpress.org/extend/plugins/...r/screenshots/
http://www.dagondesign.com/articles/...for-wordpress/
- 02-11-2009, 19:27:23öyleyse biz yazarız

denemek size kaldı
<?php $author_id = $post->post_author; $tp = $wpdb->prefix; $yazar_sorgu = (array)$wpdb->get_results("SELECT ID, post_title, post_date FROM {$tp}posts, {$tp}term_relationships, {$tp}term_taxonomy WHERE post_author = {$author_id} AND {$tp}term_relationships.object_id = {$tp}posts.ID AND {$tp}term_relationships.term_taxonomy_id = {$tp}term_taxonomy.term_taxonomy_id AND post_status = 'publish' AND post_date < NOW() AND post_type = 'post' GROUP BY ID LIMIT 10"); if (count($yazar_sorgu) > 0) { $yazdir = NULL; $yazdir .= "<ul>"; foreach ($yazar_sorgu as $apost) { $yazdir .= '<li><a href="' . get_permalink($apost->ID) . '">' . $apost->post_title . '</a></li>'; } $yazdir .= "</ul>"; } echo $yazdir; ?>
