Тёмный

Become a WordPress Developer: Unlocking Power with Code 

LearnWebCode
Подписаться 339 тыс.
Просмотров 860 тыс.
50% 1

Join full 26hr course: learnwebcode.teachable.com/p/...
I've posted a newer video here on RU-vid about Block Themes and Full Site Editing! • WordPress Block Themes...
Please check the pinned comment for information about changes to the JS & CSS files we're trying to load from the GitHub repository.
Timestamps:
0:0:00 Quick Overview
0:2:06 Detailed Overview
0:12:05 Installing WordPress Locally
0:25:35 First Taste of PHP
0:41:55 Create Theme
0:54:20 Functions
1:09:14 Arrays
1:21:43 The Loop
1:36:10 Header & Footer
1:54:44 Convert HTML/CSS Into Theme
2:14:42 Interior Page Template
2:32:28 Parent / Child Pages
2:49:16 When do we need to echo?
2:58:17 Children Links Menu
Follow me for updates on new videos or projects:
Instagram: / javaschiff
Twitter: / learnwebcode
Facebook: / brad-schiff-1542576316...
Twitch: / learnwebcode

Опубликовано:

 

1 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 1 тыс.   
@LearnWebCode
@LearnWebCode 2 года назад
Hey everyone, in the lesson that starts at 1:54:44 I want to let you know of a few changes that have happened since this video was uploaded. In the video, when you visit the GitHub repo I reference, there is no longer a folder called "js" - it is now called "src" instead. Also, there is no "style.css" file in the root of the repo folder, instead, copy over the entire "build" folder from the repo and then in our functions.php file, our university_files function that loads our CSS and JS files should now look like this instead: function university_files() { wp_enqueue_style('custom-google-fonts', '//fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i|Roboto:100,300,400,400i,700,700i'); wp_enqueue_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); wp_enqueue_script('googleMap', '//maps.googleapis.com/maps/api/js?key=yourkeygoeshere', NULL, '1.0', true); wp_enqueue_script('main-university-js', get_theme_file_uri('/build/index.js'), array('jquery'), '1.0', true); wp_enqueue_style('our-main-styles-vendor', get_theme_file_uri('/build/index.css')); wp_enqueue_style('our-main-styles', get_theme_file_uri('/build/style-index.css')); wp_localize_script('main-university-js', 'universityData', array( 'root_url' => get_site_url(), 'nonce' => wp_create_nonce('wp_rest') )); } Thanks! Brad
@Blindbuymovieguy
@Blindbuymovieguy 2 года назад
Doi you mean copy the code from all three files within the build folder, one after the other, index.css, index.js, and style-index.css ?
@PeeboASMR
@PeeboASMR 2 года назад
Im kind of confused about this part, Its unclear and Im stuck now. Could you re-explain?
@maggietan4278
@maggietan4278 2 года назад
T_T am stuck too, at the .css. Tried to put the build folder (with 3 files) inside the university theme folder, not working either..
@archimusprime844
@archimusprime844 2 года назад
Just copy the build folder into your theme folder. In your functions.php edit your function as described. If you are on a Mac you have to specify the path a little different like: wp_enqueue_script('main-university-js', get_theme_file_uri('./build/index.js'), array('jquery'), '1.0', true); wp_enqueue_style('our-main-styles-vendor', get_theme_file_uri('./build/index.css')); wp_enqueue_style('our-main-styles', get_theme_file_uri('./build/style-index.css')); So with a dot (.) in front of the slash.
@tomdoliosrock
@tomdoliosrock 2 года назад
Hi Brad. Thanks for the lesson, very helpfull. I made the change in the functions.php file and it didn´t work. Then I restored the function.php file to what the video previously said and it work perfectly. What I finally did was to copy the build folder to the theme folder and copy the css code to my style.css file. Let´s go ahead!
@abdullahibrahim6649
@abdullahibrahim6649 5 лет назад
Timestamps: 0:0:14 Quick Overview 0:2:06 Detailed Overview 0:12:05 Installing WordPress Locally 0:25:35 First Taste of PHP 0:41:55 Create Theme 0:54:20 Functions 1:09:14 Arrays 1:21:43 The Loop 1:36:10 Header & Footer 1:54:44 Convert HTML/CSS Into Theme 2:14:42 Interior Page Template 2:32:28 Parent / Child Pages 2:49:16 When do we need to echo? 2:58:17 Children Links Menu
@bashirarab60
@bashirarab60 5 лет назад
Thanks
@abdullahibrahim6649
@abdullahibrahim6649 5 лет назад
Welcome
@sinichi1692
@sinichi1692 5 лет назад
wow. thank you this.
@abdullahibrahim6649
@abdullahibrahim6649 5 лет назад
@@sinichi1692 welcome
@BruceLeeBeatz
@BruceLeeBeatz 5 лет назад
Mashallah
@hfortenberry
@hfortenberry Год назад
This is AMAZING! I've been a beginner coder for 20 years. I keep taking classes every few years but then don't use it enough and forget just enough to make me feel like I need a refresher. Then take more classes to refresh my memory and so on. So I've taken a lot of coding classes. This is THE BEST tutorial I've taken on programming. Your detailed style is so good. Most teachers skip over the little details and I love how you don't do that. Thank you!
@ExpatTraderFX
@ExpatTraderFX Год назад
hobbiest you mean...lol
@kusalranasinghe6363
@kusalranasinghe6363 6 месяцев назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-7vVj1XikMXs.htmlsi=1FAdQQFy8G6E_6PA
@rissyroono
@rissyroono Год назад
FYI to any new watchers: when you click to view the course it will say "now only $15 for the next 5 hours". They are trying to FOMO you into buying before even knowing what you are purchasing. Just know that it will go back down to $15 if you open in an incognito window, so take your time, finish the first 3 hours here, and know what you are buying ;)
@sylviacastro2282
@sylviacastro2282 4 года назад
Who else is really thankful for this course 👋
@Dileepkumarp
@Dileepkumarp 4 года назад
The best Wordpress Tutorial you will find on the internet.
@jakubolszewski3073
@jakubolszewski3073 5 лет назад
I don't know why, but your style of teaching is just so peacefull, controlled and well organised. I love this course, really.
@benedictkatumba7841
@benedictkatumba7841 4 года назад
Must be one of the best teacher of Wordpress coding. Comprehensive, practical and makes it enjoyable.
@vectorworld3756
@vectorworld3756 2 года назад
Completely agree
@syedtalhaali9135
@syedtalhaali9135 Год назад
100 percent agree
@trocandobytes
@trocandobytes 6 месяцев назад
Indeed.
@TexasWatchman
@TexasWatchman 6 лет назад
I think it's amazing that you would devote so much time to freely share what you know without cost. You're a fantastic teacher. It's astounding to me that anyone would give a thumbs down on this video. I can only imagine the caliber of person this could possibly be. Thanks for sharing. I look forward to more!!!
@kevinsmithgaming
@kevinsmithgaming 6 лет назад
S Lawrence the full course has a price tho. I appreciate what he does, but just correcting you there :)
@ananimousperson4488
@ananimousperson4488 6 лет назад
Yes and the best thing we can do for him is to watch it all And that is exactly what iam going to do
@varshagenial1534
@varshagenial1534 5 лет назад
thank you.. very helpful vedio
@HullioGQ
@HullioGQ 5 лет назад
S Lawrence , I completely agree! A 26 hr course for only $12 on Udemy is really giving it away for free. I plan on purchasing the full course in the new year. I hope it will be updated for WordPress 5 bits.
@Allformyequine
@Allformyequine 5 лет назад
@@kevinsmithgaming Which you can always get for under $15.00 so YEP fantastic price for anyone, so S Lawrence is pretty on target :)
@rickmorgan317
@rickmorgan317 5 лет назад
You speak the English language more articulately than anyone I've ever heard in my life. It makes your video so easy to listen to. Thanks so much....seriously.
@lemuelreyes1941
@lemuelreyes1941 6 лет назад
I finished your git course, you're an amazing teacher and I was sad that you weren't active in putting out content. But I see three new videos today, i'm excited!
@vv6292
@vv6292 3 года назад
This is the bob ross of programming tutorials
@grocioherrada5148
@grocioherrada5148 3 года назад
As I speak the Spanish language, most of the time I have problems understanding the teachers' English, this time I am understanding every word, they sound so clear that I do not lose the meaning of the class. I am very satisfied and grateful.
@cain5569
@cain5569 3 года назад
I'm from Spain too and I suscribe all of your words, hahaha. ¡Un saludo!
@jeff-wo6mm
@jeff-wo6mm 3 года назад
If anyone is having issues with the have_posts() while loop at 1:25:00 make sure your homepage displays latest posts. Go to settings > reading and at the top make sure "your latest posts" is checked
@sahansj86
@sahansj86 3 года назад
thanks man
@AlexLazer
@AlexLazer 6 лет назад
This tutorial is SOLID. I've always been curious about WordPress and now I feel like I have a pretty good understanding of how it works & what skills I'll need to develop if I want to get serious about WP. Thanks for taking the time to make this! I may end up buying one of your Udemy courses :)
@gboy028
@gboy028 4 года назад
Just bought the full course! Your teaching style is amazing. Thank you
@chaundunbar9360
@chaundunbar9360 Год назад
This is the best WordPress Development tutorial I have completed on RU-vid
@jrgunner10
@jrgunner10 4 года назад
The best Wordpress Tutorial you will find on the internet. Upload rest of the course to RU-vid.
@artemistheory
@artemistheory 3 года назад
I want you to know this has bought me some relief, from begging to end I literally understood what you were saying. You are a fantastic teacher, I have brought so many courses and found it hard to follow along because I think the teachers weren’t aware they knew things that I probably didn’t. I’m excited to start your JavaScript lessons. Thank you so much for this video!!!
@sethconnell3497
@sethconnell3497 4 года назад
I knew everything in this video but watched it anyway. You’re a fantastic teacher. I wish I had watched this years ago when I was just starting out.
@francisbaluyot7397
@francisbaluyot7397 4 года назад
Hi, do you know some tutorials with a database involved so my website will be a total dynamic one.
@_DixitParmar
@_DixitParmar 4 года назад
Corona effect.
@wheres_bears1378
@wheres_bears1378 6 лет назад
I like how this course runs from almost explain it like I’m five style and slowly builds up it’s really good and the concepts all click in like LEGO as you build up to a climax of coding awesome sauce
@bellcode7779
@bellcode7779 6 лет назад
Man is born to be a teacher. Love
@izzyr9590
@izzyr9590 5 лет назад
His pitch, I love
@NourHomsi
@NourHomsi 4 года назад
Teaching programming should be made only by you. I feel that you are living in the head of the student and reading minds ! I myself have my own channel teaching web and graphic design, but I defenitly learning from your perfect style of teaching ! Thank you
@hibald8351
@hibald8351 3 года назад
Hi Nour happy to see u here ,I learned from both of you ..learned from you four years ago a lot to be a web-designer then i changed my field to front-end developer and start from your tutorials ....so thanks for your efforts
@hibald8351
@hibald8351 3 года назад
Some thing else can you accept my connection in linkedin
@Ajaz3
@Ajaz3 3 года назад
hlo brother i want complete course but i have not enough money to buy this course.
@biduansexi1342
@biduansexi1342 3 года назад
@@hibald8351 ¤gmkU.K.Iat
@siobhanc777
@siobhanc777 3 года назад
this person claims people are trash on other videos...this person is a psychopath
@SohelRana-cr8gu
@SohelRana-cr8gu 4 года назад
Years later watching your tutorial and it's real peace to learn from you. You are an amazing teacher. Thank you for devoting to sharing your valuable knowledge for free!
@alexjefferis461
@alexjefferis461 5 лет назад
Ive done a number of tutorials learning WP Dev but this one is fantastic!! Very clear and moves at a sensible pace. the teacher is brilliant, hats off to you sir.
@briannabrown8386
@briannabrown8386 5 лет назад
You have given me some great insight about WP. I need this for work, and this has answered a lot of questions. Thank you!
@ShillBullshit007
@ShillBullshit007 5 лет назад
Dude you are a phenominal teacher, pedigog, mentor, et al.....wow.....I've been a teacher...well done and thanks for your amazing tutorials
@fiyu
@fiyu 2 года назад
This guy is just phenomenal at teaching. His voice tone, dry humor, extremely analytical and deliberate approach to explaning, JUST WOW. I have checked that he has 6 other courses on Udemy. I will probably buy them all. Just listening to this guy's tone of voice is fun enough lol.
@orbiccachdigitalmarketing5865
@orbiccachdigitalmarketing5865 3 года назад
This is literally the best WordPress training ever. It's detailed and paced out perfectly. Thank you and I am going to watch whatever you have left. Nice work and thank you for sharing.
@iali3903
@iali3903 6 лет назад
!! OMG this man is amazing,, I can't stop watching his videos
@AlifMunim
@AlifMunim 4 года назад
This is truly amazing. Just bought the full course 👍
@jineen123
@jineen123 2 года назад
Im sure that if you had a brick wall in here watching this surley the wall will become a web developer. I can't thank you enough for this tutorial. praise you keep on going with this kind of approach for all your video's. I did subscribe, hit the bell and also tell my friends to tune in. Thank you so much. and please keep the video live as I will see it more regularly to cement the learning in my brains.
@dougeike
@dougeike 6 лет назад
I'm about halfway through the video, and it's getting better and better. The explanation of how the theme files link to one another is excellent. I may need to view the video again, though, because there's a lot of good information. Thanks!
@atiq11sadeqi
@atiq11sadeqi 5 лет назад
It was amazing, Thanks for sharing this course for free.
@smasalisheikh
@smasalisheikh 5 лет назад
Really amazing course. I watched it completely it is really helpful. Thanks for sharing. You really are a great teacher!!
@karanraiyani3579
@karanraiyani3579 3 года назад
Addicted to the way ,when he say hello everyone in the beginning of every chapter.... One of the best course I ever learned.The pace of teaching is so much balanced not too fast or too slow
@chrisuche9760
@chrisuche9760 4 года назад
I have never related to any video tutorial so detailed in explanation and coherence. I deeply appreciate you wealth of experience and the work you put in this video, above all your deep explanatory skill and soothing intonation that gives utter clarity without ambiguity. Thank you, you made coding a lot more easier and fun.
@mcfurytheory
@mcfurytheory 6 лет назад
Ok, usually I complain that a course isn't detailed enough ... but, dang ... you take it to the next level of every. single. detail. :) That's ok though, you sound like Will Wheaton ... that makes it easier to go through your courses. Thank you for taking the time to make sure that absolutely everyone is on the same page. You are a great teacher, I wish I would have found someone like you when I was learning PHP, Perl, Python, CSS, HTML, MySQL and all of the other languages I have had to spend countless hours researching a thousand other resources because the instruction was incomplete. You are an asset to every community you invest your time into. I tip my hat to you, sir. Bravo.
@dr.earnest.ujaama
@dr.earnest.ujaama 6 лет назад
mcfurytheory i
@samairasingh4739
@samairasingh4739 4 года назад
To get the detailed knowledge of wordpress, the best way is to start working on the platform. Best companies like www.drcsystems.com/wordpress-development-company get big projects wherein one comes across many challenging situations at times. The best companies only become best when they face challenges! BTW the video shares a lot many deep insights about wordpress. Good work!
@birdbrainsolutions6112
@birdbrainsolutions6112 4 года назад
This is the best wordpress development video I have ever seen. I understand things that I never understoof before. Thank you for creating this!! :) And a very happy new year to everyone!
@MmaLegend420
@MmaLegend420 2 года назад
This is probably the best intro course I've ever come across and I've been a WordPress developer for about 8 years now.
@gopimedia3359
@gopimedia3359 3 года назад
Thanks for teaching PHP. I don't know about PHP. Now only i am understanding. I am very lucky to following you here. Thank you so much.
@AshuPal
@AshuPal 5 лет назад
Thank you soo much for sharing this detailed video. You are an amazing mentor 👍
@MoshiurShimul
@MoshiurShimul 4 года назад
Just brought that from Udemy, can't wait to complete the full course.
@juannpablo4322
@juannpablo4322 5 лет назад
Men this is amazing, I'm an advanced developer but you just have the good words for people who doesn't understand code ! Keep it up, we need more teachers like you !
@RockstahRolln
@RockstahRolln 5 лет назад
This tutorial is GOLD! You explained everything so well that it was easy to grasp. I will be sure to check out your other tutorials. Thanks a lot for this one!
@cla1814
@cla1814 5 лет назад
You really need to make a PHP course. You taught it so well. Udemy is seriously lacking a quality fundamental php course. The ones available are very poorly made.
@HashimWarren
@HashimWarren 5 лет назад
Agreed. And trust me, I've looked
@ciprianghenghea7779
@ciprianghenghea7779 4 года назад
Edwin Diaz's php course isn't good ?
@rombach1995
@rombach1995 4 года назад
C La if you understand a little of spanish , there is a channel call “pildorasinformaticas”..probably the best courses you will find in the entire internet about this topics ( php included)
@gerryrazon3341
@gerryrazon3341 4 года назад
i bought this course. All i can say is brad thank you very much for this. learned a lot every single detail.
@1to755
@1to755 3 года назад
Is this video contains full course?
@gerryrazon3341
@gerryrazon3341 3 года назад
@@1to755 yes
@DavidRajM
@DavidRajM 5 лет назад
omg...I cant stop watching, not even pausing the video.. each second is lots of information.. you really rock it Brad. Brilliant and amazing tutor.. Thanks a lot for sharing this video. This created motivation to take up the full course.
@ahmedmusawir
@ahmedmusawir 4 года назад
I don't even have to watch this to buy your course ... YOU ARE THE BEST!!
@geekyboy7725
@geekyboy7725 6 лет назад
Thanks you so much it's amazing 😘😘
@yasirilyas5529
@yasirilyas5529 4 года назад
Amazing course, i was planning to spent thousands on WordPress course, but anyhow i planned to browse RU-vid for this purpose. I browse too many times and finally got this course which i felt is really awesome. The method of teaching is awesome, everything detailed in this course is really amazing. I am a beginner of WordPress so i will share my experience with the passage of time. Again a bundle of thanks Sir!
@xromium
@xromium 6 лет назад
Hi, Brad! Welcome back on RU-vid! Thanks for the course, I'm currently on lecture 42 and should say it's great! Hope to see new videos on your channel, we missed you ;)
@praveen_javali
@praveen_javali 6 лет назад
Waiting for Javascript and React js Course!!!
@pastuh
@pastuh 6 лет назад
And VUE.js
@cla1814
@cla1814 5 лет назад
rather have another wordpress course focused on plugins only.
@jorgegapco25
@jorgegapco25 5 лет назад
This course is so good I ended up purchasing the full course on udemy. Totally worth the investment in my eyes. Thank you for making this very easy to understand for the absolute beginner.
@nicholasifeanyi9541
@nicholasifeanyi9541 2 года назад
Hi Jorge is there anyway i can have access to the purchased course as i currently dont have the cash to pay for the remaining paid course
@TheBurningofSolomon
@TheBurningofSolomon 6 лет назад
Professional, clear, concise, direct, 11/10 would watch again. Thank you for your hard work. Earned a subscriber!
@pinkies26k
@pinkies26k 5 лет назад
You are by far the best online coach that I have followed so far. Purchased two of your course in udemy. Wish to see more from you. Really appreciate the guide you have provided in the lessons. Thank you for the efforts. Please do not stop! Please continue!
@athulak
@athulak 5 лет назад
a newborn baby can learn from this tutorial.
@amilama7972
@amilama7972 5 лет назад
The best tut on Udemy..💜💜 God bless you💗💗
@devdude7607
@devdude7607 2 года назад
Man, You are the kind of mentor we need for every programming language out there! Great content! Thank you so much for this goldmine!
@pauldelcour
@pauldelcour 5 лет назад
Absolutely brilliant teaching. You are quite perfect in understanding the needs of those who are not in the know. Take each, and I mean each step and do it slowly and with full understanding of what someone is going through for whom this is all completely or partly new. Without being able to monitor us, this is truly well done!
@nonsensepoem
@nonsensepoem 6 лет назад
You had me at cat.
@TosinOmojola1
@TosinOmojola1 4 года назад
I cannot express enough the immense gratitude I have for making this tutorial available and, because I would love to get the full gist of the entire package I headed on to udemy to make a purchase but, I made a startling discovery. I am practicing this course on Wordpress 5.4 and found that the page templates are not the same. Even though the functions are still working but the ( page.php, single.php ) do not correspond to the files in the default theme twenty-twenty. As a result, I am not getting the same navigation results as the video shows ( or, as in an earlier wordpress version ). Could you please highlight the code differences that would make this applicable to the latest wordpress version 5.4? I love your style of teaching a lot. Thank you. Edit: I have found the problem. It has to do with an apache configuration on my Ubuntu laptop that was not enabled previously. It's now working fine. Thanks
@memphismarkmusic56
@memphismarkmusic56 4 года назад
I'm doing this course in 2020 with WordPress v5.4 and everything is working for me.
@fierybeacon936
@fierybeacon936 2 года назад
@ OluwaTosin Omojola I just purchased the Udemy course and it has been updated as of 04/2022.
@Scrapewithbots
@Scrapewithbots 4 года назад
the best WordPress tutorial, I have watched in a decade.
@iankim2241
@iankim2241 6 лет назад
This is my first comment by using youtube for 15 years, and all i can say is; your course is amazing and very informative among the other. thank you for this and for making my first comment on youtube.
@DVDSONXD
@DVDSONXD 6 лет назад
When I used wp_enqueue_style('wharever', get_stylesheet_uri()) the work at first time, but when I try to change style.css they just maintain the first version os style.css, that means, style.css starts with body color orange but don't change to green, can you help please? PS.: in wp_enqueue_style I change the version parameters and works, but this just stuck each version I put with the color I put at first.
@qu4l1ty1988
@qu4l1ty1988 6 лет назад
I have the same problem. I went back multiple times and redo the whole steps... and still nothing.
@DVDSONXD
@DVDSONXD 6 лет назад
Maciej Jakubiak hi man, I'm found the problem and is the cache of the browser, try use hard-refresh(ctrl-f5) or disable the cache.
@nick8292
@nick8292 6 лет назад
I missed a single semi-colon in index.php and it wouldn't work until I fixed that!
@jameslazar2933
@jameslazar2933 6 лет назад
You god. I just went over every single step about four times because mine wasn't​ working!
@pkbaby1418
@pkbaby1418 6 лет назад
James Lazar open page in incognito mode
@kingmumblez6577
@kingmumblez6577 6 лет назад
Hi, I am having problems at the 2 hour section. WP is not responding to my style.css after i copy the content's from the downloaded file to mine. No theme is changing so the webpage looks exactly the same with or without the style.css file. Can i please get some help.
@MrRsarika
@MrRsarika 6 лет назад
Thank you!! Really appreciate this.
@Apc-dg2rs
@Apc-dg2rs 6 лет назад
Had the same issue thanks for this!
@AlexLazer
@AlexLazer 6 лет назад
Brilliant, thanks!
@DJGShow
@DJGShow 6 лет назад
Great help. Thanks
@7nurul1
@7nurul1 6 лет назад
it works thx a lot dear
@unnatigupta1112
@unnatigupta1112 3 года назад
wow your voice is so soothing it's like I can study for hours and will not get bored and what an amazing style of teaching
@sankai91
@sankai91 5 лет назад
I've been watching tutorials for different coding languages and other similar stuff for three years now. Without a joke, it's the first time, that I didn't have any second of boredom during a video. You explained everything very well and still interestingly enough, so that I'm not bored, even though I know a lot of the stuff you explained! It's even the first time in a while I had fun watching a video like that! Nice vid! :D +1 sub
@sudhakar7400
@sudhakar7400 6 лет назад
can you create a woocommerce theme and plugin development tutorial
@iyakfishing2917
@iyakfishing2917 6 лет назад
I like the work you have put into your channel! You have awesome content! But don't you think WordPress is about to change in a big way, their core language changing to "react" with the new "coming soon update" of version 5.0 "Gutenberg editor" in about 4-6 months? WorPress will be completely different. Check it out @WordPress.tv
@LearnWebCode
@LearnWebCode 6 лет назад
Thanks! Gutenberg is definitely a big change, but at the end of the day it's just a new editing-screen experience, and from a front-end template perspective primarily only effects the "the_content()" field. If this course focused on plugin development; I agree; it's silly to chase a moving target with Gutenberg this close; but we spend most of our time on custom post types, custom fields, roles & permissions, and working with the REST API and using JS to perform CRUD operations. Out of those topics; I think only custom fields will be impacted by Gutenberg. When 5.0 launches I'll definitely add a "Program Your First Gutenberg Block" video lesson. Cheers, Brad
@nakkaashokkumar884
@nakkaashokkumar884 6 лет назад
visit insights.hotjar.com/s?siteId=416725&surveyId=19016
@fawork
@fawork 4 года назад
Brad, thank you for putting this video up. Based on this I went ahead and purchased the full course. You are a great teacher. Keep up the good work!
@Hella333
@Hella333 3 года назад
That’s exactly what I needed: nice pace and practical application. Even php makes sense now. A full version is totally worse it. Thanks!
@christiancnnaji8248
@christiancnnaji8248 4 года назад
The best Practical video training i have ever seen. would love to get the remaining 6 hours videos.
@archer201977
@archer201977 2 года назад
This video is a treasure, i wished i have seen this 2 years ago. Thank you very much for your patience in putting this up and not taking this video down, I am now a designer / developer but i have tons of thing that I need to learn from you and other professional developers.
@raptvent5967
@raptvent5967 3 года назад
Please continue to teach us, I'm fresh graduate and new in this field, I accidentally click your video the one you teaching creating webpage from scratch I really enjoy and I learn a lot from you its make me more easier to understand. Thank you and God bless you ❤️
@jd5514
@jd5514 6 лет назад
Thank you for taking the time to teach us about WordPress. The pace and explanation awesome. Great!
@kwstasber9190
@kwstasber9190 Год назад
Ok let me say this. This is the best tutorial i have ever watched in my life. everything is on point. Every question i had you explained it right away. This is pure gold!!!
@gradyhodge8517
@gradyhodge8517 5 лет назад
Wow, again, one of the best tutorials I've found on RU-vid! You are a great teacher! You truly understand what it is like to be sitting there trying to learn this stuff for the first time. You always paused at the right moments to take a time out and explain a concept most viewers are likely unfamiliar with such as "associative arrays". This tutorial, plus the MAMP install tutorial has me searching for more of your tutorials! I'm currently attending BYU-I online for Front-end Web Development and I can't find any tutorials more succinct than yours! Thank You, Thank You, Thank You.
@arturoguillen
@arturoguillen 6 лет назад
Brad, thank you so much for this. I went in and bought the full course. This is amazing material.
@adiquer-wordpresstutorials2370
@adiquer-wordpresstutorials2370 3 года назад
I just watched the first 4 minutes and I bought the course. This is exactly what I was looking for! Thanks Dude
@desifoodsecrets8831
@desifoodsecrets8831 4 года назад
You are the best instructor i have ever seen, your style of teaching is so great and well organised.
@engclubt1249
@engclubt1249 5 лет назад
Amazing lessons. Thanks a bunch! I have a few wordpress websites myself, but this video has opened me to a new world of wordpress development instead of using ready-made themes and plugins.
@markcabangon3885
@markcabangon3885 6 лет назад
This is a great find! I’m going to get the course this week! Excited to take this next step in my developer course.
@mironmeah
@mironmeah 4 года назад
Thank you sir, I never have seen such a clear and organized tutorials. You are really a great teacher
@BranFlakesR1337
@BranFlakesR1337 4 года назад
What a beautiful tutorial, I appreciate people in this world like yourself; we need more people like you.
@tevfik7
@tevfik7 Год назад
You are by far the best teacher I have ever seen. Just bought the course.
@nasiruddin2638
@nasiruddin2638 6 лет назад
I have been watching you Udemy Course. I would say, you are so good at explaining things. Very easy and clean. You are one of the best instructors.
@SteeveeDan
@SteeveeDan 5 лет назад
Been wanting to learn this for some time and found you. Now I feel that I may actually accomplish this. Your teaching method is awesome and encourages me to continue on. Thank you and keep it up!
@freestylefinance7679
@freestylefinance7679 6 лет назад
I was researching how to download wordpress to my pc when I discovered your video. I have to say I love how thorough, slowly and clearly you go over everything! Like, I really appreciate you! Taking online development classes wasn't even on my agenda right now, just lingering somewhere in the back of my mind haunting me like a nightmare. But I love your teaching style so much, I just might check you out on Udemy and take the whole course! :) Thank you for sharing!!
@kusalranasinghe6363
@kusalranasinghe6363 6 месяцев назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-7vVj1XikMXs.htmlsi=1FAdQQFy8G6E_6PA
@AndrewKwabula
@AndrewKwabula Год назад
I wonder if Brad had ACTUALLY trained as school teacher because he takes the secondary school teaching approach where everything is explained as opposed to University lectures. Dude you make everything clear and the metaphors are especially helpful. You really stand out among Web Tutors because you have a deliberate style and your lessons show planning and are methodical.
@LearnWebCode
@LearnWebCode Год назад
I'm glad the videos and metaphors are helpful, thank you so much! I did study to teach English in secondary school, that's so funny that you picked up on it. Cheers!
@AndrewKwabula
@AndrewKwabula Год назад
@@LearnWebCode Because I trained as a Secondary School Science teacher. I did courses in educational psychology and sociology as well as teaching methods. When I actually went to teach, I found a mixture of those who were just Mathematicians, Biologists, or Chemists without a teaching component. Dept of Education called them untrained teachers. and paid them accordingly. The feedback from pupils was clear. Pupils were having problems with almost all of those untrained teachers. I was a Grade Teacher so I used to log the complaints. The problem was delivery, the teachers knew the subjects well. Now learning the web, your RU-vid WordPress made me fall in love with WordPress. I have used PHP for a few years but snubbed WordPress because I thought it was just a copy-and-paste thing. Your tutorial showed one could actually plan and build a proper WordPress website by coding. So I looked you up and I will now buy some of your courses on Udemy, I have previewed them and they are like being in a class with a teacher who has a lesson plan and objectives.
@Ovalrapture
@Ovalrapture 5 лет назад
You have a distinct talent for teaching. Amazing course. I'm sold.
@shallanrambaran6942
@shallanrambaran6942 Год назад
You're a wonderful teacher. As you explain in great detail what you're doing; you're saving people like me who don't even know where to begin with WordPress development. I combed the vast internet regarding this subject matter for weeks and usually end up in a dead-end (confused and demoralized). Your teaching however makes what I have learnt relevant (I can now have context to things I learnt from others which didn't make sense before). You are an excellent 'foundational' teacher (meaning everybody should come to you first before evolving and learning from other sources). I cannot thank you enough; I don't feel lost anymore. You have my permission to use my comment as feedback for your course.
@LearnWebCode
@LearnWebCode Год назад
Thank you so much for the kind words; and I'm glad my explanations are helpful!
@teamleadworkspace5081
@teamleadworkspace5081 3 года назад
I want to attend this university! I got to 1:50, opened the university-static-master, and must have spent 15 minutes just going over the page. Agree wholeheartedly with all the positive comments below. Thank you so much... P.S. You also taught me JSON :) (and AJAX, and REST). If I lived in your town, I'd buy you coffee every Monday morning...
@ecerejo
@ecerejo 3 года назад
This is a lot to digest, I went through the PHP course from net ninja where you build a website from scratch using PHP and MySQL and I didn't find it as nearly as confusing as WordPress alone! I can't even imagine what the rest of this course will be like!
@advanturelovers4271
@advanturelovers4271 6 лет назад
A great teacher I've ever seen. It's not just a video about WordPress but I started feeling that PHP is not that difficult how other teachers used to say and teach. ThankYou very much for that great stuff. Blessings Regards: Talha (From Pakistan)
@robclarkson2443
@robclarkson2443 3 года назад
Ron Howard you are an excellent Wordpress Teacher!
@ghaith2431
@ghaith2431 4 года назад
I don't know how to describe your amazing teaching skill with friendly metaphores. Thank you,
@pedro.zurita
@pedro.zurita 2 года назад
You seriously have an amazing talent for teaching and your demeanor is so calming. Great job. 👍
@webaryal
@webaryal 6 лет назад
Thank you Brad for publishing in RU-vid. Already bought your course though
@SurajKumar-qj3rg
@SurajKumar-qj3rg 4 года назад
Thanks, Brad, you have talent of educator with smooth flow and understanding of student mindset. Great work.
@jeff-wo6mm
@jeff-wo6mm 3 года назад
Either you have the natural ability of knowing what questions we have or you have put a lot of thought into this. I think you are the only developer who has not lost site of what it's like NOT to know. I'll have to check out all. your Udemy courses!
Далее
WordPress Full Site Editing But For Developers
19:22
Просмотров 21 тыс.
100❤️
00:20
Просмотров 7 млн
Прилетели в Дубай
00:17
Просмотров 75 тыс.
WordPress Interactivity API Tutorial & Explanation
1:57:13
Why is Wordpress THE Key to Freelance?
8:02
Просмотров 17 тыс.
Why I Pick ShadCN and Tailwind for all my projects
18:53
How I Coded An Entire Website Using ChatGPT
18:22
Просмотров 1,8 млн
Wordpress vs coding - why devs SHOULD learn Wordpress
11:03