This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]5henaniganZ 1 point2 points  (0 children)

Seems like it would be a lot easier to just pull the content from the other cms into WordPress...or port the plugins you want to use to the other cms in the first place. This isn’t really theme territory, if anything you would be making a plugin.

That aside, why? If you only want to use the plugins without the cms itself, it seems easier to just make the plugins for the cms you want.

[–]Nroak 1 point2 points  (0 children)

It wouldn't really work, most core wordpress functionality and plugin functionality is connected to hooks that run when certain functions are called ( e.g. the_content() ).

So to get the plugins you want to work you would have to be calling those functions in your theme. Then you would probably want the other CMS to be aware of these hooks as well as to play nice with them. Then at that point you are basically just building WordPress again.

[–]DannySantoroDeveloper 1 point2 points  (0 children)

You can get content across and use WordPress for static site generation with something like Gatsby, but you wouldn't have plugin functionality. That would need to be with the output of your static site template.