Pods vs Metabox - Part 2

Video Statistics and Information

Video
Captions Word Cloud
Reddit Comments
Captions
well good afternoon everybody we are about a little less than five minutes away from getting started we'll start right at the top of the hour feel free if you want to chat along with the live webinar and ask your questions you can just pop them into that youtube chat box or into facebook and both those locations will get directly to me and i can answer your questions as we go so this is going to be day two of our pods versus meta box yesterday we just basically covered the getting started of both of those tools for using custom post type creation all those type of things uh and today we are gonna go kind of off into the netherworld of doing some advanced functionality with pods just going beyond and with metabox so we won't really touch on the custom post type creation or the fields creation we're going to dive into creating a settings page what pod short code is how to use conditional tags and we'll do that in both we may not do as much with meta box today we're going to stay pretty heavy on pods and again we're we'll start in about three or four minutes this is just a little bit of the pre-show while we wait for uh the two p.m start time to roll by um oh and i'm also going to cover i think we should have time to cover how pods works with elementor and beaver builder oxygen other types of page builder situation so we'll pop on a page builder or and try different things and then depending on again if we have enough time in today's session we will look at front-end forms as a different way of getting data into the database so we'll start at the top of the hour a little over two minutes to go hopefully you're seeing i think you should be seeing just a generic at the generic wordpress admin site that we are playing around with live that's the other thing that makes uh wp studio training and the things i've been doing for past 15 years slightly different i don't cookie cut anything we do all development live i've always done it that way because i'd rather you see me get into situations have something not quite work and we can figure it out together and by me fixing the mistakes it should also give you greater knowledge on how to handle it when it happens to you all right so just a little over a minute or so to go these are the ongoing free trainings that uh are offered through wp studio broadcast through youtube and facebook i hope you're all having a great tuesday make sure that i a bunch of the members of wp studio want to make sure they're in the proper chat room all right so just a few seconds to go before we get started here lorraine great question uh we will cover those type of extensions on wednesday all right so it just turned two o'clock for me so i'm going to start the webinar today so thank you all for being back here uh for day two of our pods versus meta box that's right we are going to be continuing to show some advanced functionality in terms of what we can do with pods and what we can do with metabox to extend the capability of wordpress just as a reminder if you missed yesterday's live webinar you can re-watch it on the youtube channel and you can get all the information about how we created custom post types and work with that all right so in order for us to play around and go beyond just the generic stuff what we are going to be doing today is building quick implementations so this and this is probably not exactly what you would do for clients but i am building simple implementations so that you can see the construction and the actual actual output of the stuff that we are designing today and you can see it in real time so what we are going to start with right now today is we are going to create a settings page um so this would be in the admin area and it allows you to customize solutions for your clients so if you are this is the first time you've ever been in a wp studio training one of the focuses i've always had in training for the past 15 years is i try and train developers who are working with clients so it's a different it's a unique skill set not you're not really building a site for yourself you're building a site for a client who may not have the same knowledge as you do when it comes to working with wordpress customizing items so with this understanding sometimes when we work with clients in the web development world we need to give the client a feeling of control and we need to actually give them some type of control so my quick little solution i'm going to show you is how we can create a simple settings page so that the client logs in and rather than looking at the big massive admin area we will give them a custom settings page that they can log in tweak settings on their site and feel like they're in control rather than giving them the full access to a page builder the full access to whatever so we're going to start here with pods i'm going to hide our little screen there so that you guys can see the full page so what we've got going on here we're going to go to pods and we're going to do add new same as yesterday where we wanted to create a post type this time we're going to create a settings page so from this content type in the drop down i can say hey we're going to use a custom settings page uh in this case we are now given the ability for a page title that will be basically what shows up here the menu label that'll be what shows up on the left hand side and then we'll take a look at the location so let's call this one our customer setting or customer [Music] tools and i'll do the same thing customer tools then i can choose what i want what do i want to do add to the settings menu which means it's going to drop it as a sub menu here add to the appearances menu it's going to drop it to the sub heading here or make a new menu item below the settings so we'll do that one and so i'm going to hit next step and immediately you're going to see oh look there's customer tools all right so we are on our way again because it's pods i can do a few things like labels admin ui and the rest api but currently we're not using pods doesn't support the settings page for rest api so don't worry about that but there's one thing i want to show you that currently a menu icon url if you have an svg or a font icon that exists um somewhere you can put that url i'm gonna use something very simple wordpress automatically comes bundled with dash icons so i'm gonna go select a dash icon for my customer setting you know and since these are already bundled with wordpress you don't have to figure out how to um embed this or add this i'm just going to look let's add the cake sure how about this we'll add a cake so now all i need to do is have the name of this dash icon copy it let's jump back over here just paste that in there save the pod look now our customer tools has a little cake next to it it's just a little little tweak that makes it useful okay so now here we are with our pod it's important we'll remember this in just a moment this customer tools up here in the top is going to be quite important when we go get the values of these settings out so that we can use them all right so i'm going to make something very simple because i want you to see the setting of the setting allowing a customer to change the setting and then we are going to implement it into the theme so that the customer feels like hey i have control so what a perfect way to do that is just allow the customer to change the background color i know this is horrible it's going to look horrible but you know welcome to the world of my color sense all right so let's add a field and we will call this one our custom background color so this is also an important thing custom background color we need to know that name because that name will allow us to fetch the information out and i'm going to use the drop down to allow pods so that i can choose a color picker perfect let's put a description so that when the client logs into their special settings panel they'll know what to do choose your background happyness color of the day i can come in here additional field options there are none for this uh i don't need to assign any css classes unless i was going to do some extra design work so let's save this field and save the pod now it's going to be very simple we're just using one setting just so i can demonstrate the output for you so let's now see that if the client were to come to our customer tools look i now have a settings page for them and the customer can say oh i'm going to choose green that's my color of the day save the changes okay so what did that do well right now nothing because we are not fetching the value that's being stored here in pods in the settings we're not doing anything with it so i have pulled up basically the header.php file of our site the reason why we're doing that is i'm just going to put an inline style on this body class and this way i can show you how they can immediately change the color all right now there's something really cool with pods in terms of this settings area i'm going to come back over here and i'm going to show you two things first we need to remember the pod name or our settings pod the one that we created because we're going to combine this name with the name of the field so let's do this because pods uses in terms of to get the value of whatever settings field we created it uses the default wordpress get option if you've never played around in php in a templating thing there is a function in wordpress called get option that will fetch data out of the database it does all the hard work for you you only need to know get option will get me that information but pods takes it a step further to make your life easier so before we pull that out i'm just going to add a style background and basically at this point we are we want to fetch the actual color or the exit the hexadecimal number for the color that's being saved in this pod on on this page all right so let's do that because we need to you have to use php to get it out i'm just going to put my php here and we are going to use the get option function and we're going to put the option name here so pods makes it super easy you don't have to remember all the stuff all you need to remember is the name of the pod so customer underscore tools oops let's go here customer underscore tools then so the first part of that get option is the name of the pod and let's go in there and then the second part is the name of the field custom background color and you just combine both of them with an underscore now pods is smart enough in this get option field so that when it saves each one of these fields it's saving them as an option in the database wordpress database under this id so it already knows how to go get that information so let me just finish this up because all i've done is i've done my style background let's do this color background color to make it easier background color and then it's just oh i forgot we have to echo this out because if i simply just say get option it's going to get the option but do nothing with it so we want to echo out the option right in this location which would be the color so i'm going to save this header.php file let's go take a look at our site and all of a sudden the background is green then the the the customer the client comes back and the next day oh i'm really mad let's go change it to red they look at their website and whoo it's red and shouts because now their eyes are blinded uh well if we did yellow then everybody's eyes would be blinded all right so you get the idea it's that easy for us to grab whether it's a field whether it's a color picker whether it's a yes no statement whether we can create an entire section of options that a client can choose or select and we can as the developer can implement those solutions into the theme into other areas and so pods gives you this settings panel well guess what meta box does the exact same thing in fact if we jump over and take a look at meta box they have their separate section called settings pages we create a settings page and we'll call this one our super settings we can set our own option name it's not required as you can see here but we can automatically select our font dash icon that we're using or maybe if you want to use an svg you can put the svg item maybe you have a custom url each of these are options and again we can choose whether we're doing what type of capabilities like only people who have edit theme options can see this setting we have a little more control over some of the advanced things and we have built-in tabs so you can create multiple pages of settings you can create a pretty robust now i have an upcoming training where we're going to do a lot with this but i can i can create the whole a whole settings panel again here's our super settings there's nothing there because the way remember meta box that we talked about yesterday we assigned custom fields now i could just come in here and um oh let's let's create a new one a new field we'll call this one our settings fields uh and we're going to add a field let's just do let's just do the same type of thing there's a color picker there's a color picker and i can uh let's just save that one let's come over here and we're assigning this field group to the settings page i can choose whichever settings page are super settings that we've got publish this now when we take a look at our settings page for our super settings there's our color picker same thing uses the default wordpress color picker and save the settings perfect well the only difference between using the meta box settings page and the pods setting page is pods uses by default the get option which is default for wordpress whereas i'm just going to put this in here rather than type all the code let me just put the php so we won't get any errors i'm going to use this just as a kind of like a screen for us to see what we would be doing is we would be using a function like we would be echoing out the r w m b meta that's a custom function that metabox uses to fetch things out so what we would be looking at is we want the field id um and so the field id is if we jump back over here to meta box and looked at our custom fields and our settings fields we would be looking at this here's our setting id because it's using the a default generated one so we would be coming over here that we would have our custom our field id here and we need to say object type is setting and then we go in if we'd have another option so again this is a little more complex than i'm going to cover in this webinar uh but we do advance things like this over wp studio we we will really dive in and show you i'm just trying to show you at a upper level uh 10 000 foot view how you can use this all right so let's now take a look at um one of the biggest questions and this is going to deal with specifically pods for the next few times how can i if maybe i'm using a different type of tool or different type of theme or a different type of solution how can i get pods into a page or maybe i want to fetch a whole bunch of the books and i already have a template well part of that is we have there are a whole bunch of pods short codes so basically anywhere on a site let me actually just pull up a blank page let's just pull up a blank html page [Music] uh hold on let's do this we'll just go over here add a new page okay so we are here in uh actually let's go back to let's not use i didn't want to use gutenberg yet let me just go in here all right so i'm going to use the wysiwyg editor that we created from the post type yesterday all right so pods has a short code called pods and there's a whole bunch of different variables where we can select the the name of the pod you know that that's when we we take a look at this name of the pot the book or customer tools so i could say pods pot or come in here and open up the pods the id number or the name of the pod so i go name book how many do you want to return show me four of the latest books i won't change the query but then i can also do things like well i already know i have a template so we'll go ahead and just say hey since you're already using that let's show the template with whatever template name and what that will do is basically fetches whatever stuff is in the pod uses a wordpress query regular query and pulls out use and displays the content using that template now if you are unfamiliar with how the wordpress loop works it is that's a fundamental part of wordpress that is the default query that goes into the database and says fetch me x number of posts display them in a reverse chronological order and return them and and show them in the loop you know over and over again until you run out of items that you fetch from the database if that is a new terminology for you let me know in the comments and i can schedule an up uh just a free training on understanding the wordpress loop and if we need to go in we can talk about understanding the word press query because no matter which page builder you use or just default wordpress if you don't understand how the theme is communicating to the database to fetch the data out for a visitor on your website you really miss out on the ability to create very unique websites and very custom websites now so pods gives me short codes that allows me to do all sorts of things but it does make it super easy on if you're currently in the current version of pods not the beta version the current version in the classic editor you actually have an option of use clicking this button for a pod shortcode and you can choose whether you're going to display a single pod basically this is like a short code generator it it if you if you answer the questions here it will build the short code for you so for example if i want to list multiple pod items so i'm just saying hey go into the book use this template we created yesterday or i can write a template here limit it by only show me five order it by um let's do post title because i know that exists and then i could do something like a where statement where where the date is greater than january or something like that and so we can actually write a query insert the thing and all of a sudden it will generate the short code for you now if you're currently using a page builder you could sim once you learn how to use these short codes you can simply copy and paste this and drop it into a short code area whether it's gutenberg block editor blah blah blah all right but i'm going to show you something really cool here so with buried within this pods short code is the ability to create a front and data input what i mean by this is when we are building custom sites for clients i will tell you i've been doing this with wordpress for a long time even when wordpress was much simpler the admin area can be overwhelming for some customers now some of you may be building sites for clients or maybe you have them yourself and the back end is no problem for you but you will probably run into some clients who we don't want to give them access but they want to upload their own information or they want to be involved in the process so pods has a form so what we're gonna do here is and i'll show you what it would be if we say hey let's show a form for the the books remember that's the custom post type we created yesterday i'm just going to insert this and then we'll play around with some options here the reason why is we're going to go create a custom page in our custom page [Music] bob's um admin box so we're gonna do bob's admin box because this is the way rather than have bob sign in and what we'll do something like this is let's let's password protect it for bob using our superpassword1234 so that when bob the administrator goes to this page url he has to type in the the super secure password so that he can get to i'm just going to use the shortcode box here pods form book we're going to publish this great now let's go view our page all right bob oh i still have the yellow i'm sorry we still have that going on all right so look at this all of a sudden bob has the ability to write stuff but if we just use the form bob has the ability to do every single thing we don't want that let's say we only want bob to be able to upload the author photo and the publish are an author photo and the author name [Music] so we want to change this so in our pods form we can we can adjust what we display so let's go back to that page or let's go back to this page and we're going to tweak this short code because yes we have our pods form name but i can also add an argument called fields where i can put in the fields that we're using so let's do author name and i think we also had author photo these were from yesterday so i add in these fields let's update this now go back to bob's admin site and look bob is now only given the ability to enter bob's the the name and the author photo this is on the front end of the website so pods has now watched if we do bob photo let's just save that great form submitted successfully if we jump back here to the back end and took a look at our books there's one in here because it's set as draft right now but if we take a look there's bob's photo under the name so it did enter that um but it didn't see we've got our name here for the author name and the photo we didn't upload anything but if we had added additional fields we'd have that flexibility now tomorrow i'm going to show you how we can do that form stuff with meta box but we can do even more with metabox so i'm going to leave that till tomorrow all right so let me close out of one or two of these windows just so that we can keep uh from window creep getting all over the place okay so here's here's an issue that many people will when they start working with pods and they're like okay i start to i'm loving these templates i now can work with this in the admin area i don't have to open up the theme template what do i do in this page template um can everybody i hope everybody can see this all right let me see if i can zoom this in slightly more so that you can see a better implementation so i've got this single post that we had done yesterday using the pods books reference and one of the worst things that you can do as a developer because not every field will always be filled in or maybe you want to make sure that you only display this if an author name is included with the post or let's say you are building a photo blogging website where somebody is geocaching their photo and so they're traveling around they hit the photo they go to their little special upload form that you have created for them to upload that photo that they just took and there you give them the option of putting a geolocation for where that photo took place but let's say that's optional so how do we create a template that knows to only show geolocation stuff if there actually is geolocation stuff because there's nothing worse than going to a photo and there's like it says this photo was taken blank and it's blank because there's nothing there so i'm going to use the same example for this book's written pods templates has a really cool ability to basically say if something exists we'll do something so the magic tags we talked about yesterday where we can fetch the data out of a custom field that's in pods uses this squiggly brace or squiggly bracket and the the at sign and then the name of the field there's another type of short code that uses just the square brace and i can do an if statement now i'm just going to plop this in here and if [Music] and i'm going to say if i'm going to end the statement so what i can do to check we can say if the field author name exists do this and then we're ending the if statement which means well if there is no author name we're not going to ever output this and we can do this in pods templates so this makes it easier if so we can customize if something exists or if something does not this also makes it easy for us to maybe we have a look we've created a check box in a field or in one of the fields that says are they a member or is this a member's only post well if that's true we could do something like if member check um is there then we can put a whole bunch of stuff in the members area and if somebody's not a member then hey we don't have to worry about it because we're not going to have to deal with that so that's that's one way to do it now let's say because the other thing people talk about is like what if i have a cloned field or remember i showed you yesterday how people could create additional uploaded files where we were going to do multiple uploads they could choose however many files they want so let's say again uh did i i don't think i did it for this one oh here's author photo we'll just grab this author photo so i'm going to do another if statement so if because we only want to do this little thing if the author photo is there so author photo and i always like to write the ending if so i don't forget that then i could do well if there is an author photo i'm going to do something like a um let's do a div class author photo area and in my css i would go in and style something uh so that's all set to go but what if i have multiple author pictures i can't just do what we've done before image source uh and i can grab my author photo thumbnail let's do that one we'll just use that image from thumbnail actually i want the source so it would actually be this direct url so i could do that except that will only fetch me one and if somebody and if the post has uploaded multiple or the person who's posting has uploaded multiple images we need to basically loop through it so that i can do something like uh each author photo and then i can end each so see what this is now done is and let's do let's do a break just so that they would separate but if i had multiple images in the author photos where they could upload multiple photos it would then loop through until all the photos have been dis and have been shown so there's a lot of neat things that we can do here well there's another aspect of this that people like to talk about remember i told you yesterday when we can create something that maybe we would attached let me bring this over here edit the pod like in this book where we can attach a template to the singular which we were just doing or what about if it's the archive so normally an archive page is a listing of multiple posts well in our template here this would be the listing of each individual post so basically we're styling each post to show up in the archive list but sometimes we want to put information before the loop begins before it starts putting out all the different posts and then sometimes we want to put stuff after but if all you have is a single template page there's no real way to say well if there are eight of them go ahead and put eight posts and then do all this stuff but pods makes it pretty easy because pods says all right what you can do is use a function or a short code called after and we can do something like thank you for learning about all of our books so that this would show up at the end of when the loop finishes and then we can also do a before before are you ready to learn about the books h2 before so adding in a before and and after now allows us to cycle through all the different books so where does this look like and again i can't remember if we i don't think we uploaded any images but it's perfectly fine because we added this if statement so i'm going to update this template let's go back to our pods just make sure that all right so we've got our single post page uh let's see if our archive is working today let's go over to our dev site and i think it's under book all right so i've got to figure out why our little templating options [Music] okay it's still using oh i know what it okay i because of my demonstrating multiple uses of metabox and pods we have things we have things like different views that are already interrupting or intercepting and even when we use the different page builders you can use create single posts that's what's happening with this pod template not being displayed there's something else interrupting it and i don't have the time to basically reset the whole site and show it again with this but basically this is what's going to happen we'd have one instance of the before then this would loop through all the different books that we would be using and then we'd have our after so that we could now have an archive uh actually archive posts for books so we'd be able to do a lot here in our template here all right now let's play a little bit with practical implementations so what i mean by that is let's you guys had a number of questions about yesterday elementor page builders oxygen and i wanted to show you how easy it is to work within those so on our little test site i have already got a number of the tools installed and since you wanted me to specifically talk about elementor pro i am going to activate elementor pro on this all right so now we have elementor pro added working with elementor pro and getting information out of the pod uh let me let me do two things because i'm going to try and eliminate let me remove the views that we did for this let me remove the views that we did for our books so i'm going to turn off pods template this is way i can show you how elementor would take over so in elementor pro we have templates what we're looking for is the theme builder so if you've never used elementor before there is a oh here's our let me trash that just so we can start from scratch we have the ability to build a header a footer a single post page um a singular page archive page all that type of stuff so what i can do is let's take a look at a single post so basically what we're going to try and do is when somebody clicks on an individual book how can we display that how can we pull that data out of pods so i'm going to do a single post um and in the single post let's go ahead and add a new one or you could if you've never done this before click the big green one so we need to tell it what type of thing we're doing i'm going to do a single post that's basically what we're doing and then we'll call this one our sample class thingy just because we want to be very specific all right so elementor is going to load up you don't need to do anything with this to make your life oh that yellow is just horrible hold on let's go back over here oh here i'll just i'll just rip this out of the the body tank okay so we don't have to deal with that all right i'll just refresh now we don't have to bleed our eyes all right in order to work with pa elementor and styling the the custom post types that we create with pods or something else it's also helpful to come down here to the settings and under the preview we're going to tell it what to basically put onto our page because if we don't put anything there we don't really see the the things in real time it makes it harder so what i'm going to do is i am going to it's a single book and let's let's find a book just so that it'll grab one a new book by bot let's do i think i had another one called awesome big book of awesome i think there is more on that so i'm going to apply this so once i've applied this you're going to say oh well nothing happened well by default mentor starts with this blank canvas so i'm just going to use like a text editor because that gives me the ability to quickly add dynamic content so i've added my item here ignore the fact that there's a pod shortcode you can deal with that but what we're really looking for is this dynamic tag in elementor when we click on the dynamic tag i can scroll all the way down until i see a pods field awesome so i've got my little pods field all set and this is what we're looking at my pods field and in my pods field when i click on this i have a key well the key is actually the name of the fields that we're doing remember we had a name and we had a book overview well remember there were other things like the author stuff but there was so we can look at the dynamic tags there was the date field remember we had a date field here publish date that's where we find everything so we'd find the fields that we're looking at to be dynamic down here pods field if you see other dynamic things where like there's an author name you would see other things that would have the word pods in front of it so we have a pods field click that say the book overview and look there's our book overview already showing up now in the advanced i can if i want to do something um book overview boom so i know that that book overview is going to show here every single time and i've got i can automatically grab that field directly in and the best part about it is now that i've pulled dynamic data in i can go through and do the styling that would occur with elementor i can go in and do all the paddings effects aspects for just that field so this is a perfect way for us to go through and you just once you've got it done you can go in and say all right let's add another field in here full size let's go ahead and grab our post title and when we grab our post title i can come over here and say all right what do i want post url field i can send it to that pot so this is how you work with pods to get everything out and again all we are doing is not regular elementor in like a page builder we are using the the theme builder part of elementor i hope that makes sense now just to show you that elementor doesn't have to be the only thing you use i'm going to go ahead and let's go back to our things and we're going to deactivate elementor just to make life easier to not have everything activated and i'm going to load beaver builder and i'm going to also load in beaver builder themer and there's actually a pods beaver builder themer that does make it even easier so we're going to go ahead and activate those three so that if i were using our beaver builder themer i can come in here to my again the themer layout does the exact same thing that elementor does allows us to create a let's do an archive page this time an archive page we call this one our archive of the movies add the theme or layout oh wait the movies was metabox that's fine it's it's the same thing location movie archives that's what we're doing let's go ahead and launch beaver builder shows up again we've got our disaster movie not everything is there but i can come in here to our disaster movie to our po uh let's uh no not do this let's come over here there here's our archive title i can change the titles let's move this so it's operating a little bit easier so i've got my archive title i can do all these things but look i also have these meta box fields so any type of field you may have like this modules if we put in i'll use the same text editor we used for um that elementor did beaver builder also has a little plus thing it's kind of like the dynamic option where i can say hey i want to grab a meta box field here so let's connect to my maybe i don't have any hold on let's go back oh i'm trying to demonstrate pods oh wait um here's my pods fields from this let's connect oh well let's change this one hold on i got myself in because i'm trying to demonstrate a let's do our book archive because the book archive is actually book was created by pods movies was by meta box we'll do meta box stuff tomorrow so let me publish this we'll launch this all i had to do is jump out to make sure that we are going to let's still says well never mind hold on let's x this out let's go to our pods fields connect i'm still stuck there what did i do did i not save something let's leave this oh i didn't update okay so we're on our book archive let's see if this now works let's grab our little text field that we're using exit out of this it's still trying to get movies oh one second let's just delete this i'll show you what it is here we are themer layouts add a new let's create a singular one we'll call this one our book let's do a book for all of the singular book ones publish this launch this um post uh let's grab a field what i wanted to do before the same thing grab that little text editor so we have a field that we're use that's the row here's our text editor grab this scroll all the way down pods field from connect there we are there so there's our author book overview author photo publish date so now i have access within beaver builder for those fields that pods created now this is what you can use with elementor with beaver builder right now there is also uh let's just jump back over here go back to the admin um scott the the current developer of pods also has a pro add-on that if you use oxygen if you use divi uh if you use beep again beaver themer kind of what i already just showed you you're able to use this beaver builder pace not be pods page builder toolkit which does the similar thing where it opens up the fields now again you don't have to use page builders because of how pods handles templates and other elements of sitting in the way of the theme so with all the stuff we've just kind of a fire hose of information looking at pods short codes conditional tags that we can use within our pods templates looking at how we can use pods to fetch certain data out of the database for the templates or for page builders tomorrow at 2 p.m we are going to build upon the idea of the the front end forms so we're going to use at the same time metabox and beaver builder to build a customer entry point where they can submit information basically we will create a mini customer support area where people can fill out information without having to use a form a plug-in so that's one of the things we are going to do we'll be able to build a customer support section for our sites and we will do that in real time so not only will you have a customer support section on the website you will also have a listing of prior customer support requests that a client can see and we will also have a place for you to respond on the customer support so we're going to do all of that with only pods with only metabox using both of them and no form plug-in no nothing else like that just to show you the power of non-traditional uses of pods and metabox so i hope you guys come back for that again we do lots of advanced training that go way beyond this at wp studio currently there's a whole rebrand happening and a re-re-implementation of wp studios membership if you want to be alerted to new things that are happening make sure you sign up for the newsletter the email lists that happen at wpstudio.com and you'll be the first to know of not only upcoming free events that we're going to be doing a lot more regularly but also some of the more advanced things that happen in the membership and benefits of the membership so take care i hope you guys have a great rest of your tuesday and i hope you see me back here tomorrow as we kind of take everything we looked at briefly yesterday and today and put it together as we build a customer support section for clients on a website which doesn't require clients to come to the admin area and we'll do it all with pods and metabox have a great rest of the day and i will see you on future training events
Info
Channel: WPStudio
Views: 169
Rating: undefined out of 5
Keywords:
Id: 8sSymmEjmfI
Channel Id: undefined
Length: 56min 26sec (3386 seconds)
Published: Tue Jun 29 2021
Related Videos
Note
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.