I can't believe this series is 10 years old. While a lot has changed in WordPress over the years the core concepts remain the same and I hope this series is helpful in your learning journey. For anyone who is curious, my recommendation for hosting your WordPress website is DreamHost and specifically their "Shared Unlimited" yearly plan (the exact plan I've used for 19 years). If you use my link to DreamHost it helps support my TH-cam channel and costs you nothing extra: click.dreamhost.com/aff_c?offer_id=109&aff_id=17231
Hi my name is kiran and i was trying to build matrimonial site for my community, first i went with joomla but i was not satisfied with that work i deleted whole site, then i choose to go with HTML 5 and PHP, but it was not that attractive as i was expecting, now i am working on wordpress, and i was confused how can i show the user profile with pic, and how to add registeration page, so can you please guide me on this. I was working as C.A in company and i left my job because i got interested in web designing that was not my field but now i want to do something within this field and i am expecting some guidence from you. Can you help me to do that? Thanks&Regards Kiranj
I always wanted to make my own wordpress template but I never knew how to start. All tutorials I went trough never brought me forward. But your tutorial series really helps me out, you are explaining everything very good, everything is nicely structured. Thank you!
First, I just want to say thank you so much for these videos. They have been a tremendous help in learning how to develop for wordpress! I just wanted to point out a small error and my fix for it (which may not be the best, but it works): Since changing the single.php to link to the content.php with get_template_part(), the thumbnail of the featured image on the single page now displays as the "small-thumbnail" and not the "banner-image". To fix this I've changed the article class and post-thumbnail (above the title that we used for the small-thumbnail) to:
Everything we need to effectively enable the use of "post formats" functionnality by our Wordpress theme (if it's not already the case), and most importantly, to control the output in term of styling (through CSS) and of structure (via php) of each of the post formats we're using ! Crystal clear tuto, comprehensive and short at the same time. In one word : brillant !
Outstanding tutorial. I've followed along on all of your WordPress tutorials and this one was particularly rewarding because it addressed the important best practice of DRY. Thank you!!!!
You are an amazing teacher, and I agree that your videos are some of the best I have ever seen. Thanks so much for the effort and sharing of your amazing knowledge in such an accessible way.
fantastic tutorials, they are simple, to the point and complete. I am impressed by your self confidence in doing and explaining things in the same time. Very useful for me, better than reading any book about the topic.
Fantastic Tutorials! The only tiny criticism would be with the lack of gap between finishing your code, and switching to the next page. For those of us with rusty php/css skills who need a moment to digest, I would love it if you took a breath between the end of your typing and moving on to the next page. I can't count how many times I have hit pause a split second too late. ;)
Hey Brad! first i want to say that your tutorial series for wordpress is hands down the best tutorial series i have ever seen anywhere not just on youtube. thank you for taking the time for making it your information delivery and your eloquent way of talking really makes it easy to digest. i spent months trying to find a decent tutorial and was so frustrated but yours cracked the code! I have a question and i really hope you read this and answer me.. it's now 2017 and i see that this series was mostly done in 2014..... would you say that most information in this tutorial is still valid? Also i see you have a couple of tutorial series onudemy. please create a modern one for wordpress!
Hi Brad, Thank you so much for the awesomely incredible channel you've created. On a more advanced approach could you please be kind to show us how to combine wordpress loops into jquery libraries. like if we want our posts appear in a masonry style (like pinterest) or maybe combine our loops inside the header slider of a website. I'd be most appreciative if you find it possible to take us through combining wordpress loops with the design trends of today's web development.
LearnWebCode Please Brad! Ive been trying to make masonry work for days, I'm about to cry Lol. For some reason i can't get masonry layout to work in my WP theme even though the same codes work great outside of WP. I've tried many different approaches but i don't get any good results. Im not that good at JS so i might be missing something, but i follow other tutorials line-by-line and include everything they say but it still doesn't work! In addition to that, even pure css masonry-like layout doesn't work in WP but it works great between two regular html and css files. I don't undersigned why. I feel bad writing this desperate comment because i realize you have other things to take care of but i don't know what else to do. You must be the only person who can help because I've been struggling for a month trying to figure out how to create a wp theme before i found your tutorials. They have been extremely helpful! You are doing such a great work, I can not express how thankful i am. Definitely best tutorials ever. Fast, clear and from scratch. Thank you sooooo much!!!!
I like your Tutorial very much! But I did the CSS part 1:1 and it did not work. I jumped right in to this video. Is there someting in the Videos before to do that the css part work? Greeting from Bali
Wonderful lessons. I'm finally beginning to understand WordPress. That being said what I can't find after hours and hours of searching is how to display the post date as a graphic. I do have the graphic showing up but have no idea how to get the actual post date to appear on top of the graphic. I wrongly assumed that this would be a standard blog feature but I guess I'm the only one who wants it. Appreciate any help.
Your videos are greate! Just learned a lot of things from you. But i haven't seen how to add a comment box to the posts. Can you create a tutorial for this?
Hey, If someone can help me, while using echo get_the_content() for links, It shows the link itself, and then the title separately. Can anyone tell me how to solve that?
Hey,@@alfaisalpropertyofficial It doesn´t really solve the problem, It sure displays the link (the_content) itself and redirects you to the URL correctly, but still not the desired result. By any chance have you found a solution that resembles the result shown by LearnWebCode??
Hey there!! Can´t put this file (content-link.php) to work appropiately. I even replaced ALL my files with LearnWebCode´s just to make sure the error was in my code only, but still not working. Any guesses on why it isn´t working?? HELP!!
Thank you so much, I noticed you don't mention to change the get_template_part () from page.php ! why is that? I have a problem, the function we used to gather theme support, whatever code I put in there like you did will not have the affect on my Admin panel, however; if its outside the function it works very well... Kind regards teacher ;)
Grteat tutorial sir :) I've one problem i created a gallery post as you did, but it is not showing on the home page i can only see the titile. It only shows up when i click on the title
I realized right away that when you said "give yourself some homework" in regard to finishing up the single.php file in the last video on Post Formats, I was going to have to find some way to get the thumbnail and the get_the_excerpt() to not apply to single.php. I figured that would be a couple of if then statements in content.php, buuuuuut I notice in your source file (content.php), you put if (get_post_format() == false) { get_template_part('content', 'single'); } else { get_template_part('content', get_post_format()); } which I THINK fixes the problem. Can you please help me out? Am I correct-is that how you fixed the problem? Or am I missing something?
Ok. Now I see that you have a content-single.php file which fixes the problem with the thumbnails and the get_the_excerpt(). But I still don't see why you added the following code to the single.php file instead of just get_template_part('content', get_post_format()) : if (get_post_format() == false) { get_template_part('content', 'single'); } else { get_template_part('content', get_post_format()); } Any help would be greatly appreciated! Thanks! By the way, I love your tutorials! Fantastic stuff!
get_template_part('content',get_post_format()); not working for search.php nor with archive.php...its only working when we have links like localhost/wordpress/author/admin , for localhost/wordpress/category/xyz but not for localhost/wordpress/?=flower nor for localhost/wordpress/2014 etc ..I have been following ur tutorials and they are amazingly explained in such a easy way. I have got stucked here and I can't figure that out ..plz help
first of all - the tutorials are top! :D but i got a question popping intio my mind... is it possible to set up different single-posttype.php files for each post-type. I´ve tried, but it doesn´t work. Do you have to do some extra function-stuff or so?..
I'm having a bit of trouble getting aside.php to work. I've even tried using your index and functions code, but still, it just displays the normal single. Does the method here still work in 4.4?
Hi, could you help me? Excuse my English, I'm from Brazil and I used the google translator to send you this message. I am creating a Wordpress theme from scratch on localhost, I'm bad with difficulty in the post. I want my posts are separated, as if each were on a different box and with a space between them, bad they are together one below the other. How do I it does not know what to do bad, since tried padding codes and bad no margin worked. Want them thus: "[post1] [post2]," they are so [post1 post2].
So if you make a link post in the editor with the insert link option it doesn't display the post properly. It works if you just write out the link in the editor without using the insert link option. It took me a few minutes to figure that one out.
The post format link is not working even i copied the zip content file and do exactly what there coded... My gallery css is not working too. Cann't understand what is the bug.....
1. You have a tutorial on Wordpress Image Format? 2. And even if you edit the php for- is it theme? Don't you have to make this edit every time you update the theme?
It still makes no sense to me to use post formats at all. I don't think I've ever seen a live use case for aside as a post format.. or a link as a post format...
Thanks so much for this tutorials! I'm stuck in the last "homework" you asked for... =S Maybe somebody could help me... I went to single.php and substitute the with get_template_part('content', get_post_format()); And after that I went to the content.php file and did this:... Ok...for some reason TH-cam doesn't let me paste it... So I'm gonna have to rewrite it here... =S Making it simple... I've put this elseif statement, like this:
+Elia Perez de Miguel Ok... I think I may know now what the problem is... at he beginning is adding a class of has-thumbnail to every post that has a thumbnail. So the stylesheet targets that class and leaves the space for the thumbnail... =S Let's see how I fix that...
+Elia Perez de Miguel Ok, so it's the problem I said in the previous answer and I've solve it like this, although it might not be the most proper way of doing it...
You're title should be: «WordPress Post Formats CSS Tutorial». This is for advanced user, not for people searching for a tutorial to learn how to use formats in post.
If you don't use css, you only get the standard formatting of an article. It is a choice to use css, but if you don't everything looks very much the same. And this is not so much advanced css.
hey guy! The tutorial is very nice and the best. but I want to say one thing.. I am learning about wordpress not CSS.. it should be better not taking long minutes for explaining these bitchy CSS codes
I came here to learn wordpress too. But I've actually learned a hell of a lot about css unintentionally. Like how to use clearfix, and little subtleties in fluid design. He's obviously knowledgeable on the subject, and this is geared towards web developers/designers. I'm thankful for all his contributions
Hi, could you help me? Excuse my English, I'm from Brazil and I used the google translator to send you this message. I am creating a Wordpress theme from scratch on localhost, I'm bad with difficulty in the post. I want my posts are separated, as if each were on a different box and with a space between them, bad they are together one below the other. How do I it does not know what to do bad, since tried padding codes and bad no margin worked.
I can't believe this series is 10 years old. While a lot has changed in WordPress over the years the core concepts remain the same and I hope this series is helpful in your learning journey. For anyone who is curious, my recommendation for hosting your WordPress website is DreamHost and specifically their "Shared Unlimited" yearly plan (the exact plan I've used for 19 years). If you use my link to DreamHost it helps support my TH-cam channel and costs you nothing extra: click.dreamhost.com/aff_c?offer_id=109&aff_id=17231
4 years later and still incredibly relevant! Thank you so much!
I think that's the most useful and professional, yet not too complicated tutorial I've seen.
Thank you!
Best tutorials i have ever watched on youtube.
Thank you.
kiran jewani Wow, thank you! I'm glad the tutorial was helpful :)
Hi my name is kiran and i was trying to build matrimonial site for my community, first i went with joomla but i was not satisfied with that work i deleted whole site, then i choose to go with HTML 5 and PHP, but it was not that attractive as i was expecting, now i am working on wordpress, and i was confused how can i show the user profile with pic, and how to add registeration page, so can you please guide me on this.
I was working as C.A in company and i left my job because i got interested in web designing that was not my field but now i want to do something within this field and i am expecting some guidence from you. Can you help me to do that?
Thanks&Regards
Kiranj
WTF. posted 2 years ago. it almost 2017 but no one come up with a 2016 post format tutorial
2017 and you are still kicking ass with these tutorials.
This the best set of Wordpress tutorials I've seen in years. Brad, thanks so much for sharing. I've just made a few quantum leaps with Wordpress.
I always wanted to make my own wordpress template but I never knew how to start. All tutorials I went trough never brought me forward. But your tutorial series really helps me out, you are explaining everything very good, everything is nicely structured.
Thank you!
Indeed goot stuff . Most important part - does not waste peple's time . Love when someone knows how to make good tutorials.
First, I just want to say thank you so much for these videos. They have been a tremendous help in learning how to develop for wordpress!
I just wanted to point out a small error and my fix for it (which may not be the best, but it works):
Since changing the single.php to link to the content.php with get_template_part(), the thumbnail of the featured image on the single page now displays as the "small-thumbnail" and not the "banner-image".
To fix this I've changed the article class and post-thumbnail (above the title that we used for the small-thumbnail) to:
Everything we need to effectively enable the use of "post formats" functionnality by our Wordpress theme (if it's not already the case), and most importantly, to control the output in term of styling (through CSS) and of structure (via php) of each of the post formats we're using !
Crystal clear tuto, comprehensive and short at the same time. In one word : brillant !
Kwisatsoundman Thanks for the kind words! Perhaps I should use your comment as the video's description text :)
Outstanding tutorial. I've followed along on all of your WordPress tutorials and this one was particularly rewarding because it addressed the important best practice of DRY. Thank you!!!!
You are an amazing teacher, and I agree that your videos are some of the best I have ever seen. Thanks so much for the effort and sharing of your amazing knowledge in such an accessible way.
of the many tutorials I found ,, this is the best tutorial
fantastic tutorials, they are simple, to the point and complete. I am impressed by your self confidence in doing and explaining things in the same time. Very useful for me, better than reading any book about the topic.
simple, easy to understand tutorial,
best for beginners like me.
thankyou very much for posting such a good video.
After long time i found great tutorial on Wordpress. Great great tutorial...
Outstanding tutorial, very clear concise and very helpful.
Couldn't have done without it.
Thank you Brad.
Nice Tutorials.Easily understandable even the tougher parts.
learning a lot man.keep on good work.looking forward to more videos.
you make it look so easy man!!
+learnWebCode Sir I am really enjoying your series of lectures on WordPress.
That's really helping me a lot.
Good Work, Keep it going!
Well produced tutorial. Love it :)
it´s concise and without a lot of hoopla...
Fantastic Tutorials! The only tiny criticism would be with the lack of gap between finishing your code, and switching to the next page. For those of us with rusty php/css skills who need a moment to digest, I would love it if you took a breath between the end of your typing and moving on to the next page. I can't count how many times I have hit pause a split second too late. ;)
Best tutorial i was searching this type of video..
Very clearly explained, Thank you.
Very useful tutorials. Thanks so much!
Hey Brad! first i want to say that your tutorial series for wordpress is hands down the best tutorial series i have ever seen anywhere not just on youtube. thank you for taking the time for making it your information delivery and your eloquent way of talking really makes it easy to digest. i spent months trying to find a decent tutorial and was so frustrated but yours cracked the code!
I have a question and i really hope you read this and answer me.. it's now 2017 and i see that this series was mostly done in 2014..... would you say that most information in this tutorial is still valid?
Also i see you have a couple of tutorial series onudemy. please create a modern one for wordpress!
Damn! Is that real?
You're freaking awesome dude...You made it more than easy...Thousands thanks.
Hi Brad, Thank you so much for the awesomely incredible channel you've created.
On a more advanced approach could you please be kind to show us how to combine wordpress loops into jquery libraries. like if we want our posts appear in a masonry style (like pinterest) or maybe combine our loops inside the header slider of a website.
I'd be most appreciative if you find it possible to take us through combining wordpress loops with the design trends of today's web development.
***** That's a great idea! I actually just used Masonry the other day. I'll add this to my short list of "next videos" to make.
LearnWebCode Please Brad! Ive been trying to make masonry work for days, I'm about to cry Lol. For some reason i can't get masonry layout to work in my WP theme even though the same codes work great outside of WP. I've tried many different approaches but i don't get any good results. Im not that good at JS so i might be missing something, but i follow other tutorials line-by-line and include everything they say but it still doesn't work! In addition to that, even pure css masonry-like layout doesn't work in WP but it works great between two regular html and css files. I don't undersigned why. I feel bad writing this desperate comment because i realize you have other things to take care of but i don't know what else to do. You must be the only person who can help because I've been struggling for a month trying to figure out how to create a wp theme before i found your tutorials. They have been extremely helpful! You are doing such a great work, I can not express how thankful i am. Definitely best tutorials ever. Fast, clear and from scratch. Thank you sooooo much!!!!
Good Man and Good Tutorial---Thanx brother.
all the things are useful even in 2019!!
I like your Tutorial very much!
But I did the CSS part 1:1 and it did not work. I jumped right in to this video. Is there someting in the Videos before to do that the css part work?
Greeting from Bali
Now it works ;-)
Wonderful lessons. I'm finally beginning to understand WordPress. That being said what I can't find after hours and hours of searching is how to display the post date as a graphic. I do have the graphic showing up but have no idea how to get the actual post date to appear on top of the graphic. I wrongly assumed that this would be a standard blog feature but I guess I'm the only one who wants it. Appreciate any help.
wonderfull bro.. grt tutorial.can u explain about hooks
Your videos are greate! Just learned a lot of things from you. But i haven't seen how to add a comment box to the posts. Can you create a tutorial for this?
Awesome class! Thanks!
Whats the name of the theme you are using? I really like it.
He created it... Watch from tutorial 1
My content-link does not work someone help!
Hey, If someone can help me, while using echo get_the_content() for links, It shows the link itself, and then the title separately. Can anyone tell me how to solve that?
Please use this line of code hope! it's will be solved
Thank you!
@@alfaisalpropertyofficial oh it worked, Thank you
Hey,@@alfaisalpropertyofficial It doesn´t really solve the problem, It sure displays the link (the_content) itself and redirects you to the URL correctly, but still not the desired result. By any chance have you found a solution that resembles the result shown by LearnWebCode??
Hey there!! Can´t put this file (content-link.php) to work appropiately. I even replaced ALL my files with LearnWebCode´s just to make sure the error was in my code only, but still not working. Any guesses on why it isn´t working?? HELP!!
Thank you so much,
I noticed you don't mention to change the get_template_part () from page.php ! why is that?
I have a problem, the function we used to gather theme support, whatever code I put in there like you did will not have the affect on my Admin panel, however; if its outside the function it works very well...
Kind regards teacher ;)
Excellent, Thanks Again.
very nice work man.
Hi, do you know if Post Formats can be used on the free WordPress blogs? Thank you.
Why do we need to adjust the single view? currently wondering.
Grteat tutorial sir :) I've one problem i created a gallery post as you did, but it is not showing on the home page i can only see the titile. It only shows up when i click on the title
I realized right away that when you said "give yourself some homework" in regard to finishing up the single.php file in the last video on Post Formats, I was going to have to find some way to get the thumbnail and the get_the_excerpt() to not apply to single.php. I figured that would be a couple of if then statements in content.php, buuuuuut I notice in your source file (content.php), you put
if (get_post_format() == false) {
get_template_part('content', 'single');
} else {
get_template_part('content', get_post_format());
}
which I THINK fixes the problem.
Can you please help me out? Am I correct-is that how you fixed the problem? Or am I missing something?
Ok. Now I see that you have a content-single.php file which fixes the problem with the thumbnails and the get_the_excerpt(). But I still don't see why you added the following code to the single.php file instead of just get_template_part('content', get_post_format()) :
if (get_post_format() == false) {
get_template_part('content', 'single');
} else {
get_template_part('content', get_post_format());
}
Any help would be greatly appreciated! Thanks! By the way, I love your tutorials! Fantastic stuff!
I think he added that code because a single post isn't a post-format. But that is my guess. Thanks for adding this solution.
Great videos. Has anyone ever mentioned you sound kind of like Wil Wheaton, by the way?
very helpful tutorial, thank you.
get_template_part('content',get_post_format()); not working for search.php nor with archive.php...its only working when we have links like localhost/wordpress/author/admin , for localhost/wordpress/category/xyz but not for localhost/wordpress/?=flower nor for localhost/wordpress/2014 etc ..I have been following ur tutorials and they are amazingly explained in such a easy way. I have got stucked here and I can't figure that out ..plz help
first of all - the tutorials are top! :D
but i got a question popping intio my mind... is it possible to set up different single-posttype.php files for each post-type. I´ve tried, but it doesn´t work. Do you have to do some extra function-stuff or so?..
I'm having a bit of trouble getting aside.php to work.
I've even tried using your index and functions code, but still, it just displays the normal single. Does the method here still work in 4.4?
+Justin Munce Solved. I was working in index. You need to add get_post_format to single
My gallery has the read more sign and only displays if i click on that, could anyone suggest where I possibly could have went wrong. Thank you
Hi, could you help me? Excuse my English, I'm from Brazil and I used the google translator to send you this message.
I am creating a Wordpress theme from scratch on localhost, I'm bad with difficulty in the post. I want my posts are separated, as if each were on a different box and with a space between them, bad they are together one below the other. How do I it does not know what to do bad, since tried padding codes and bad no margin worked.
Want them thus: "[post1] [post2]," they are so [post1 post2].
:-) Hahaha....
You have good sense of humor.
@Hector Archundia
still in quirks mode :( is it bca non-article elements are wrap in article tag , or do i missing something???
Anyone know tutorial for the other 6 post formats as good as this one? thanks..
So if you make a link post in the editor with the insert link option it doesn't display the post properly.
It works if you just write out the link in the editor without using the insert link option.
It took me a few minutes to figure that one out.
Best Tutorial!! I have a problem about the CSS... it cant work... I just copy the code but the css cant work... Any oncan help me about this?
Awesome Tutorial
The post format link is not working even i copied the zip content file and do exactly what there coded... My gallery css is not working too. Cann't understand what is the bug.....
Somone help me plz
I use Wordpress. How do you get to the php files?
you create them
You can find the files in the cpanel or whatever platform your hosting service provides.
In 'Appearance' at the bottom it says Editor. They are in there...
1. You have a tutorial on Wordpress Image Format?
2. And even if you edit the php for- is it theme? Don't you have to make this edit every time you update the theme?
What is the aside for?
best tutorial myan, thanks
How did you learn all of this?
+Jerrick Hakim watching his own tutorials...
after i add a new post my old ones disappear!!!What to do?
Small question here, is it my imagination or aside post won't show a featured image thumbnail?
thank you for sharing such a great stuffs
hmm... any idea why wordpress decided to hide the post format in default?
because the theme in use is not supporting these formats
you're the best (Y) thanks for this tutorials :)
Best Tutorials...
where is the code ? to enable post format ?
Great stuff
Best Tutorial
Nice . Thanks a lot!! ;)
what is wordpress?
good video
It still makes no sense to me to use post formats at all. I don't think I've ever seen a live use case for aside as a post format.. or a link as a post format...
Great! Tutorial (y)
thanks lot ......
Awesome!
thanks
Thanks so much for this tutorials!
I'm stuck in the last "homework" you asked for... =S
Maybe somebody could help me...
I went to single.php and substitute the with get_template_part('content', get_post_format());
And after that I went to the content.php file and did this:... Ok...for some reason TH-cam doesn't let me paste it... So I'm gonna have to rewrite it here... =S
Making it simple... I've put this elseif statement, like this:
+Elia Perez de Miguel Ok... I think I may know now what the problem is... at he beginning is adding a class of has-thumbnail to every post that has a thumbnail. So the stylesheet targets that class and leaves the space for the thumbnail...
=S
Let's see how I fix that...
+Elia Perez de Miguel Ok, so it's the problem I said in the previous answer and I've solve it like this, although it might not be the most proper way of doing it...
You're title should be: «WordPress Post Formats CSS Tutorial». This is for advanced user, not for people searching for a tutorial to learn how to use formats in post.
If you don't use css, you only get the standard formatting of an article. It is a choice to use css, but if you don't everything looks very much the same. And this is not so much advanced css.
settings > speed > 1.5
No entendi nada pero muchas gracias 😂
🗽🗽🗽
hey guy! The tutorial is very nice and the best. but I want to say one thing..
I am learning about wordpress not CSS.. it should be better not taking long minutes for explaining these bitchy CSS codes
I came here to learn wordpress too. But I've actually learned a hell of a lot about css unintentionally. Like how to use clearfix, and little subtleties in fluid design. He's obviously knowledgeable on the subject, and this is geared towards web developers/designers. I'm thankful for all his contributions
Hi, could you help me? Excuse my English, I'm from Brazil and I used the google translator to send you this message.
I am creating a Wordpress theme from scratch on localhost, I'm bad with difficulty in the post. I want my posts are separated, as if each were on a different box and with a space between them, bad they are together one below the other. How do I it does not know what to do bad, since tried padding codes and bad no margin worked.