如何将我的 Wordpress 博客拖入 Dreamweaver 网站?

发布于 2024-08-14 01:24:17 字数 145 浏览 4 评论 0原文

我正在尝试使用 Dreamweaver 制作一个网站。我希望在我的网站上有一个页面,其中包含我的 Wordpress 网站上的所有博客条目,但我不确定如何将数据提取到我的网站中并显示它。

是否必须为每个条目手动完成此操作,或者是否有一种方法可以自动执行此操作?

I'm trying to make a website using Dreamweaver. I'd like to have a page on my website that has all the blog entries from my Wordpress site, but I'm not sure how to pull the data into my site and display it.

Will this have to be done manually by hand for each entry or is there a way that I can automate this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

写给空气的情书 2024-08-21 01:24:17

您可以将其自动化。博客是否在同一个域中?如果是这样,这应该可以做到:

<?php
// Include Wordpress 
define('WP_USE_THEMES', false);
require('PATH/TO/wp-blog-header.php');
query_posts('showposts=NUMBEROFPOSTS');
?>

希望这会有所帮助。

You can automate it. Is the blog on the same domain? If so, this should do it:

<?php
// Include Wordpress 
define('WP_USE_THEMES', false);
require('PATH/TO/wp-blog-header.php');
query_posts('showposts=NUMBEROFPOSTS');
?>

Hope this helps.

冷清清 2024-08-21 01:24:17

jchapa 更快;无论如何我都会发帖,因为这种方法与他的方法略有不同,并且可能更适合。

我使用下面的代码片段连接到同一服务器上的 WordPress:

include ("/your/blog/path/wp-blog-header.php");
$myposts = get_posts('numberposts=$number&offset=0&category=0');
echo "<ul class='Bloglinks'>";
foreach($myposts as $post) 
 {
  echo '<li><a href="';
  the_permalink();
  echo '">';
  the_date();
  echo " ";
  the_title();
  echo '</a></li>';
}
 echo "<ul>";

此代码片段将整个 WordPress 引擎加载到内存中,并且 WordPress 很大。
如果遇到内存限制问题,请将此文件设为包含文件,通过 HTTP 将其包含在 Dreamweaver 文件中。

jchapa was faster; I'll post anyway because this approach is slightly different than his and may suit better.

I use the snippet below to connect to a Wordpress on the same server:

include ("/your/blog/path/wp-blog-header.php");
$myposts = get_posts('numberposts=$number&offset=0&category=0');
echo "<ul class='Bloglinks'>";
foreach($myposts as $post) 
 {
  echo '<li><a href="';
  the_permalink();
  echo '">';
  the_date();
  echo " ";
  the_title();
  echo '</a></li>';
}
 echo "<ul>";

IThis snippet load the whole wordpress engine into memory, and wordpress is BIG.
If you get memory_limit problems, make this a include file that you include via HTTP in your dreamweaver file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文