$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>conditional content - I want to connect my blog posts from one website to a section in my new website|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

conditional content - I want to connect my blog posts from one website to a section in my new website

matteradmin8PV0评论
Closed. This question needs details or clarity. It is not currently accepting answers.

Want to improve this question? Add details and clarify the problem by editing this post.

Closed 22 days ago.

Improve this question

I have created a website that is a blog in framer and I want the blog posts that are shown and uploaded there to also show like links on my new website which is in wordpress and it's for publishing books. Is there a way to connect them so that every time I post a blog on the Framer website it is immediately posted on the Wordpress website as well?

Closed. This question needs details or clarity. It is not currently accepting answers.

Want to improve this question? Add details and clarify the problem by editing this post.

Closed 22 days ago.

Improve this question

I have created a website that is a blog in framer and I want the blog posts that are shown and uploaded there to also show like links on my new website which is in wordpress and it's for publishing books. Is there a way to connect them so that every time I post a blog on the Framer website it is immediately posted on the Wordpress website as well?

Share Improve this question edited May 5 at 3:19 fuxia 107k39 gold badges255 silver badges461 bronze badges asked May 4 at 19:37 PetarPetar 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 1

There is currently no direct, automated way to sync blog posts from a Framer website to a WordPress website, because Framer does not offer an official API or export feature for this purpose. However, here are several approaches you can consider:

1. Manual Cross-Posting

Copy each new blog post from Framer and manually create a corresponding post in WordPress. This is simple but not automated.

2. Embed Framer Blog in WordPress

You can embed your Framer blog (or links to your blog posts) on your WordPress site, for example using an <iframe> or by adding links manually:

<ul>
  <li><a href="https://yourframerblog/post1" target="_blank">Blog Post 1</a></li>
  <li><a href="https://yourframerblog/post2" target="_blank">Blog Post 2</a></li>
</ul>

Note: This only displays the Framer blog; it doesn't create WordPress blog posts.

3. Automation via Third-Party Tools

Some tools (like Zapier or Make) can automate posting to Framer, but not from Framer to WordPress, since Framer currently lacks a public API. If Framer releases an API in the future, you could use these tools to automate the process.

4. Use WordPress as Your Main Blog

If possible, consider making WordPress your main blogging platform and embedding or linking your WordPress blog in your Framer site instead. This is easier to automate and better for SEO.

Post a comment

comment list (0)

  1. No comments so far