Wordpress

Columna

Newbie
Joined
Jan 28, 2018
Messages
8
Reaction score
0
for wordpress web design in making blogs and stuff what are the coding languages that I should learn to be able to make my own custom themes and be able to do much more with wordpress
 
HTML, CSS and Javascript are always good to know when working with the web. Wordpress is very heavy in PHP as well.
 
You should learn PHP, CSS, and HTML. Also, knowing Javascript can't hurt.
 
thank you soo much guys Im gonna train myself in these languages!
 
HTML and CSS are pretty easy. However, PHP is a littler harder but nothing much.
 
You need to learn about languages and concepts. You will be working with four languages: HTML, CSS, PHP and Javascript.

Loren
 
if you're creating your own custom themes, like everyone else said PHP, HTML, CSS, and Javascript are a must.

but if you're just setting up a blog site with Wordpress, you can get by without needing to know PHP, or much HTML or CSS for that matter. you can install a theme and customize it without needing to know much (if any) language at all.

but obviously, the more you know about programming, the better!
 
PHP is king for the backend of wordpress. HTML, CSS and Javascript for the pages/posts/themes/etc.

for wordpress web design in making blogs and stuff what are the coding languages that I should learn to be able to make my own custom themes and be able to do much more with wordpress
 
for wordpress web design in making blogs and stuff what are the coding languages that I should learn to be able to make my own custom themes and be able to do much more with wordpress

To get started with Wordpress is really easy, you need to know some HTML & CSS obviously, and a little bit of PHP.
The thing is that setting up a template can be done even by someone who doesn't even know much about PHP.

As an example, the famous loop that displays content on wordpress looks something like this:
Code:
<?php while(have_posts) {
 the_post(); ?>
<h1> <?php the_title(); ?> </h1>
<?php } ?>

And this will display the titles of all your blog posts, it might look a little bit confusing in the beginning, but by the time you'll get to understand everything quite quickly.

Let me present you another example:
Code:
<html <?php language_attributes();?> >

This is a dynamic way to replace <html lang="en">, after the PHP is processed, Wordpress will dynamically replace language_attributes(); with the specific language that was set in the admin dashboard of wordpress.

Another example would be how Wordpress handles embedding a stylesheet:

In Functions.php
Code:
function example_styles() {
wp_enqueue_style('example-style', get_stylesheet_uri());
}

add_action('wp_enqueue_scripts','example_styles');

We create a function that stores our line of code wp_enqueue_style which basically calls the style.css file, add_action tells wordpress that in order to hook some scripts like ours, he should look into the function example_styles.

Creating themes in Wordpress is really easy and quite fun, hope you get hooked into it! :)
 
Last edited:
Start off by learning how HTML and css works.
Once you get the hang of it, you can start doing some PHP.

Learning AJAX/Javascript wouldnt hurt if you'd like to automaticly refresh variables on a page, for example.
Good luck!
 
Back
Top