taniarascia / comments

Comments
7 stars 0 forks source link

developing-a-wordpress-theme-from-scratch/ #27

Open utterances-bot opened 4 years ago

utterances-bot commented 4 years ago

WordPress Tutorial: Developing a Wordpress Theme from Scratch | Tania Rascia

You know HTML, CSS, and JavaScript. You can make beautiful websites. Maybe you've heard about WordPress, but aren't entirely sure how to…

https://www.taniarascia.com/developing-a-wordpress-theme-from-scratch/

rushikeshbarkade commented 4 years ago

Great Post!

Ali-Waseer commented 4 years ago

Hi, its great work. My manu bar (header) is not working properly as it showing in the post.

dimitrimoderbacher commented 4 years ago

Yes, thanks so much for this article, Tania! It really lays out how WP is put together. I had actually been looking for exactly this type of tutorial for a while.

manualvarado22 commented 4 years ago

Didn't notice that now you have comments. Amazing!

Now I can thank you so much for having made one of the best tutorials out there for making WordPress themes from scratch.

There's a surprising shortage of content on this, and it gets even bigger when it comes to making WordPress plugins.

I sincerely love this series of posts, and I'm really grateful with you for having made this.

Also, I'll leave these YouTube series about WordPress development because I think they are also some of the best resources out there, and far from being a replacement for your tutorials, I'd say they are a great complement:

WordPress 101: https://www.youtube.com/watch?v=oTRZYnYQlmo&list=PLriKzYyLb28nUFbe0Y9d-19uVkOnhYxFE

Making a premium WordPress theme: https://www.youtube.com/watch?v=ViZLtFIcSfo&list=PLriKzYyLb28kpEnFFi9_vJWPf5-_7d3rX

Developing WordPress plugins: https://www.youtube.com/watch?v=oTRZYnYQlmo&list=PLriKzYyLb28nUFbe0Y9d-19uVkOnhYxFE

How you all get to learn all the things you've been wanting to learn, and thank you again Tania!

melindakh commented 3 years ago

@Ali-Waseer - I also had a problem with the nav - when I clicked on Home nothing was happening. If you go into the header.php file that you would have created above, you'll see that the tag for the Home section in

david-r-giron commented 3 years ago

Something that was probably missed:

In our new nav menu at this point we want the home to not point to just "#", but rather to the following:

href="<?php echo home_url(); ?>"

david-r-giron commented 3 years ago

Last comment got the php suppressed. I meant to say that the home button could point to echo home_url();

alifakbarsyah commented 3 years ago

@melindakh , I think @Ali-Waseer mean was the design, because mine too, the CSS doesn't work

552020 commented 2 years ago

I had the same problem with the CSS in the nav, but I solved it just hard reloading the page: in Chrome (Windows): CTRL + refresh button in the browser.

552020 commented 2 years ago

And regarding the missing link to the home-page in header.php <?php echo home_url(); ?> is a better choice. :-)

href="<?php echo home_url(); ?>"

Wakktola commented 2 years ago

a great one, thank you

jyrjsinhatfolium commented 2 years ago

Thanks!