Ben WP bağlantıları gibi mesajların son # (sadece başlık) görüntülemek için kullandığı benim akımı onları benim sidebar.php dosyasını düzenlemek için çalışıyorum.
I http://codex.wordpress.org/Integrating_WordPress_with_Your_Website örneğini kullanarak çalıştı ama her zaman dosya wp-blog-header nerede bulunabileceğini bildiren satırda hata alıyorum.
Kenar çubuğu gösterilmesi gereken indeks blog sayfasını açma hatası:
// Get the last 3 posts. Warning: require(/blog/folder/wp-blog-header.php) [function.require]: failed to open stream: No such file or directory in /blog/folder/wp-content/themes/default/sidebar.php on line 7
So what is wrong? Is there a way to permanently embed a function in my html template page that retrieves the latest few posts everytime an article is displayed on the template page?
kodu:
<?php require('/the/path/to/your/wp-blog-header.php'); ?>
<?php $posts = get_posts('numberposts=10&order=ASC&orderby=post_title'); foreach ($posts as $post) : start_wp(); ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php endforeach; ?>