WordPress Custom Fields for Custom Post Type

Поділитися
Вставка
  • Опубліковано 3 лис 2024

КОМЕНТАРІ • 21

  • @emmanueltoussaint2466
    @emmanueltoussaint2466 3 роки тому +3

    You are a life saver man. This is the second time that I was in need, and your video describe exactly what I needed.

  • @JonHardison
    @JonHardison Рік тому

    So, so useful! Thank you VERY much for this. Can't tell you how many things it's helped with!
    I've been playing with it and it works perfectly. The only thing I can't seem to figure out is multiple fields but I'll get it and be able to do all sorts of crazy things. LOL!
    Thank you!

  • @wikhan2002
    @wikhan2002 10 місяців тому

    @Vicode Media - I am in awe. How do you know so much in depth of Wordpress? I've been trying hard to grasp the eco system for a while by reading the docs and watching video contents. You are so far unique in many ways of coding and implementing. Thanks a lot for your effort and helping us to understand. Could you give me some clue and resources that I can follow and read to understand better and use them like you do. It would be a great help for me. Wish you success and best regards for you.

    • @VicodeMedia
      @VicodeMedia  9 місяців тому +1

      Hi! Thank you for your support. I'd say the most important thing that helped me was trying to build things. Don't read too much documentation. Practice coding. Try different ways and don't be afraid of errors 😉 if something doesn't work search on Google. There are multiple forums where people talk about what you need.
      Another thing that helped me is my passion for coding. I really enjoy it.

  • @jimlanpheer5281
    @jimlanpheer5281 9 місяців тому

    Bravo! Well-Done! 👍🏽

  • @ahmedbakhach2490
    @ahmedbakhach2490 2 роки тому +1

    What exactly i was looking for

  • @Viralplace
    @Viralplace Рік тому

    thanks for this video... very useful, well done!

  • @LucaRulvoni
    @LucaRulvoni 3 роки тому

    Congratulations! :)

  • @emmanueltoussaint2466
    @emmanueltoussaint2466 3 роки тому +2

    Could you make a video for us to fully customize the admin panel in wordpress.
    Create a new dasboard from scratch for a certain type of user.

    • @riamahmed7019
      @riamahmed7019 Рік тому

      I want same. Please make videos on this tipoc

  • @mohamedyoussef8835
    @mohamedyoussef8835 Рік тому

    Awesome video ++++++++++ 🙂

  • @MuhammadAdnan2.0
    @MuhammadAdnan2.0 3 роки тому +1

    Watching.... Need more advance plugin vds bro....

  • @sororbudwiser
    @sororbudwiser Рік тому

    How can you do this in full site editing?

  • @sumitmaharjan4943
    @sumitmaharjan4943 3 роки тому

    Everything works fine but we get this warning Notice: Trying to get property 'ID' of non-object in every add page. how to fix that?

  • @francescoberlanda5951
    @francescoberlanda5951 Рік тому

    If the field is not filled I have 2 errors in line 82:
    Warning: Undefined array key "_event_date"
    Warning: Trying to access array offset on value of type null
    I fixed it checking if array key already exists:
    $fieldData = (array_key_exists('_event_date', $custom)) ? $custom['_event_date'][0] : '';

    • @maresolaris
      @maresolaris Рік тому

      You can switch off the error_reporting of PHP, which is turned ON in a default installation. A small adjustment to the file events.php is needed.
      Adjust the contents of this file to

  • @MuhammadAdnan2.0
    @MuhammadAdnan2.0 3 роки тому +1

    I want to achieve multiple texononmies with freaindly url. Here it's I'm looking for Example
    Country/State/City/area
    Texonomy texonomy texonomy custom post type

    • @VicodeMedia
      @VicodeMedia  3 роки тому +2

      Why don't you use children taxonomy?

    • @MuhammadAdnan2.0
      @MuhammadAdnan2.0 3 роки тому

      @@VicodeMedia I only know how to display related texononmies but not idea of these type of Technics can u pls implement it full video ?