Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use Visual Studio for WordPress development?

Does anyone use Visual Studio to do WordPress development? If so, how do you do it?

like image 982
artlung Avatar asked Jul 21 '10 16:07

artlung


People also ask

Can you use VS Code and WordPress?

WordPress is a dynamic database-driven content management system, and the pages on the site are stored in the WordPress database. You can, however, use Visual Studio Code (or any other text editor) to create/edit the theme files.

Is Visual Studio better than WordPress?

When assessing the two solutions, reviewers found Visual Studio easier to use, set up, and do business with overall. However, reviewers preferred the ease of administration with WordPress.com. Reviewers felt that Visual Studio meets the needs of their business better than WordPress.com.

Can you create a website using Visual Studio?

When you create a new Web Forms application using the ASP.NET Web Application project template, Visual Studio adds an ASP.NET page (Web Forms page) named Default. aspx, as well as several other files and folders. You can use the Default. aspx page as the home page for your Web application.


2 Answers

No built-in support for VS, and I guess there won't be, but there are some options like the answer on this thread for Expressions. The other thing I've been looking at recently is WebMatrix - it looks promising in that it supports WordPress.

like image 108
Todd Main Avatar answered Oct 14 '22 05:10

Todd Main


Programming for Wordpress is mainly coding css, php, html and js files. If you're asking about using Visual Studio for this scenario, I'm assuming you want a plugin that provides code hints for WordPress development API. Since I don't know anyone, I'm going to give you some other options.

Dreamweaver and CodeLobster come to mind as commercial applications. If you want something in the open source world, I recommend you a normal multi language IDE that supports PHP: the most important thing here is to use one that at least supports some kind of snippet functionality.

That goes from Netbeans to Aptana (which is based on Eclipse) to notepad++ with snippets functionality. The last one is an interesting solution since it's really lightweight but you will need to create your own snippets for Wordpress API functions and hooks.

I had Aptana installed in my machine in the past, but now I'm using gVim with snipmate plugin and some snippets of my own that I create when I realize I'm doing repetitive tasks.

like image 5
GmonC Avatar answered Oct 14 '22 07:10

GmonC