如何在next.js服务器上安装wordpress?

问题描述 投票:0回答:1

我有网站 shebasaz.ir 它在nextjs上运行,我想在上面安装wordpress博客。 你知道我该怎么做吗?

我安装了wordpress,但它不起作用。我想我应该在服务器设置中设置一些东西,但我不确定什么。 我还检查了这个代码:

import React from 'react';
import PropTypes from 'prop-types';
import fetch from 'isomorphic-unfetch';

import BlogList from '../components/BlogList';


const HomePage = ({ recentPosts }) =>
    <BlogList recentPosts={recentPosts} />


HomePage.propTypes = {
  recentPosts: PropTypes.array
};

HomePage.getInitialProps = async function () {
  const recentPosts = await fetch('http://localhost:8000/wp-json/wp/v2/posts');
  const jsonRP = await recentPosts.json();
  return {
    recentPosts: jsonRP
  };
};

export default HomePage;
wordpress next.js
1个回答
0
投票

请检查我的网站,它有一些关于我正在做的事情的信息。您还可以看到我当前收到的错误日志

© www.soinside.com 2019 - 2024. All rights reserved.