How can I use a CMS with my custom website
I'm going to develop a custom site (my own html/css/js, maybe using vueJS) for a client. She wants to be able to edit the content of her site after, add/delete/update images and text.
If I code the site by myself instead of using visual builders inside wordpress, is she going to be able to edit her site with the wordpress built-in tools or I'm the one that will have to make the changes whenever she needs?
javascript css wordpress html5 content-management-system
add a comment |
I'm going to develop a custom site (my own html/css/js, maybe using vueJS) for a client. She wants to be able to edit the content of her site after, add/delete/update images and text.
If I code the site by myself instead of using visual builders inside wordpress, is she going to be able to edit her site with the wordpress built-in tools or I'm the one that will have to make the changes whenever she needs?
javascript css wordpress html5 content-management-system
Typically, just about everything on a Wordpress site is put there using Wordpress admin: choosing the features, selecting a theme, adding and using plugins, etc. I'm not sure where VueJS would fit in here. And yes, I assume most of the changes would be made from WP Admin, not from a custom app.
– paulsm4
Nov 17 '18 at 6:05
add a comment |
I'm going to develop a custom site (my own html/css/js, maybe using vueJS) for a client. She wants to be able to edit the content of her site after, add/delete/update images and text.
If I code the site by myself instead of using visual builders inside wordpress, is she going to be able to edit her site with the wordpress built-in tools or I'm the one that will have to make the changes whenever she needs?
javascript css wordpress html5 content-management-system
I'm going to develop a custom site (my own html/css/js, maybe using vueJS) for a client. She wants to be able to edit the content of her site after, add/delete/update images and text.
If I code the site by myself instead of using visual builders inside wordpress, is she going to be able to edit her site with the wordpress built-in tools or I'm the one that will have to make the changes whenever she needs?
javascript css wordpress html5 content-management-system
javascript css wordpress html5 content-management-system
edited Nov 17 '18 at 4:32
Ianiv Hojman
asked Nov 17 '18 at 4:27
Ianiv HojmanIaniv Hojman
416
416
Typically, just about everything on a Wordpress site is put there using Wordpress admin: choosing the features, selecting a theme, adding and using plugins, etc. I'm not sure where VueJS would fit in here. And yes, I assume most of the changes would be made from WP Admin, not from a custom app.
– paulsm4
Nov 17 '18 at 6:05
add a comment |
Typically, just about everything on a Wordpress site is put there using Wordpress admin: choosing the features, selecting a theme, adding and using plugins, etc. I'm not sure where VueJS would fit in here. And yes, I assume most of the changes would be made from WP Admin, not from a custom app.
– paulsm4
Nov 17 '18 at 6:05
Typically, just about everything on a Wordpress site is put there using Wordpress admin: choosing the features, selecting a theme, adding and using plugins, etc. I'm not sure where VueJS would fit in here. And yes, I assume most of the changes would be made from WP Admin, not from a custom app.
– paulsm4
Nov 17 '18 at 6:05
Typically, just about everything on a Wordpress site is put there using Wordpress admin: choosing the features, selecting a theme, adding and using plugins, etc. I'm not sure where VueJS would fit in here. And yes, I assume most of the changes would be made from WP Admin, not from a custom app.
– paulsm4
Nov 17 '18 at 6:05
add a comment |
1 Answer
1
active
oldest
votes
Usually you would wrap your custom part of the wordpress website into a custom plugin. I'm assuming you can wrap a vuejs app, but I haven't done/ tried that yet. But definitely an inspiring question. I would give that a try.
This tutorial should get you started: Tutorial to create a custom plugin
Implementing the Vuejs SPA afterwards into that plugin should be manageable...
2
You're absolutely correct. If the site is using Wordpress - and if "extra functionality" is needed - then finding (or writing) a Wordpress plugin is the way to go. As far as "wrapping VueJS" - that's a bit like the tail wagging the dog. The OP needs to ask himself - do we really NEED VueJS here at all?
– paulsm4
Nov 17 '18 at 19:01
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53348212%2fhow-can-i-use-a-cms-with-my-custom-website%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Usually you would wrap your custom part of the wordpress website into a custom plugin. I'm assuming you can wrap a vuejs app, but I haven't done/ tried that yet. But definitely an inspiring question. I would give that a try.
This tutorial should get you started: Tutorial to create a custom plugin
Implementing the Vuejs SPA afterwards into that plugin should be manageable...
2
You're absolutely correct. If the site is using Wordpress - and if "extra functionality" is needed - then finding (or writing) a Wordpress plugin is the way to go. As far as "wrapping VueJS" - that's a bit like the tail wagging the dog. The OP needs to ask himself - do we really NEED VueJS here at all?
– paulsm4
Nov 17 '18 at 19:01
add a comment |
Usually you would wrap your custom part of the wordpress website into a custom plugin. I'm assuming you can wrap a vuejs app, but I haven't done/ tried that yet. But definitely an inspiring question. I would give that a try.
This tutorial should get you started: Tutorial to create a custom plugin
Implementing the Vuejs SPA afterwards into that plugin should be manageable...
2
You're absolutely correct. If the site is using Wordpress - and if "extra functionality" is needed - then finding (or writing) a Wordpress plugin is the way to go. As far as "wrapping VueJS" - that's a bit like the tail wagging the dog. The OP needs to ask himself - do we really NEED VueJS here at all?
– paulsm4
Nov 17 '18 at 19:01
add a comment |
Usually you would wrap your custom part of the wordpress website into a custom plugin. I'm assuming you can wrap a vuejs app, but I haven't done/ tried that yet. But definitely an inspiring question. I would give that a try.
This tutorial should get you started: Tutorial to create a custom plugin
Implementing the Vuejs SPA afterwards into that plugin should be manageable...
Usually you would wrap your custom part of the wordpress website into a custom plugin. I'm assuming you can wrap a vuejs app, but I haven't done/ tried that yet. But definitely an inspiring question. I would give that a try.
This tutorial should get you started: Tutorial to create a custom plugin
Implementing the Vuejs SPA afterwards into that plugin should be manageable...
answered Nov 17 '18 at 6:47
Edwin KrauseEdwin Krause
1,08111122
1,08111122
2
You're absolutely correct. If the site is using Wordpress - and if "extra functionality" is needed - then finding (or writing) a Wordpress plugin is the way to go. As far as "wrapping VueJS" - that's a bit like the tail wagging the dog. The OP needs to ask himself - do we really NEED VueJS here at all?
– paulsm4
Nov 17 '18 at 19:01
add a comment |
2
You're absolutely correct. If the site is using Wordpress - and if "extra functionality" is needed - then finding (or writing) a Wordpress plugin is the way to go. As far as "wrapping VueJS" - that's a bit like the tail wagging the dog. The OP needs to ask himself - do we really NEED VueJS here at all?
– paulsm4
Nov 17 '18 at 19:01
2
2
You're absolutely correct. If the site is using Wordpress - and if "extra functionality" is needed - then finding (or writing) a Wordpress plugin is the way to go. As far as "wrapping VueJS" - that's a bit like the tail wagging the dog. The OP needs to ask himself - do we really NEED VueJS here at all?
– paulsm4
Nov 17 '18 at 19:01
You're absolutely correct. If the site is using Wordpress - and if "extra functionality" is needed - then finding (or writing) a Wordpress plugin is the way to go. As far as "wrapping VueJS" - that's a bit like the tail wagging the dog. The OP needs to ask himself - do we really NEED VueJS here at all?
– paulsm4
Nov 17 '18 at 19:01
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53348212%2fhow-can-i-use-a-cms-with-my-custom-website%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Typically, just about everything on a Wordpress site is put there using Wordpress admin: choosing the features, selecting a theme, adding and using plugins, etc. I'm not sure where VueJS would fit in here. And yes, I assume most of the changes would be made from WP Admin, not from a custom app.
– paulsm4
Nov 17 '18 at 6:05