很多站长都会批量建站,那么,如果是wordpress建站如何调用其他网站的文章呢?下面web建站小编给大家简单介绍一下实现方法!
新建一个call.php文件
<?php define('WP_USE_THEMES', false); require('./wp-load.php'); query_posts('showposts=1'); ?> <?php while (have_posts()): the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php echo mb_strimwidth(strip_tags(apply_filters('the_title',$post->post_title)), 0, 50," "); ?></a></li> <?php endwhile; ?>
在页面中调用以下代码:
<?php ini_set("user_agent","Mozilla/4.0 (compatible; MSIE 5.00; Windows 98)"); $url="https://网站域名/call.php"; echo file_get_contents( $url ); ?>
wordpress用栏目名称(category_name)调用指定栏目下的文章
标签: wordpress建站教程, wordpress技巧, wordpress文章调用
上面是“wordpress网站如何调用其他网站的文章”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4379.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!