Image Field - WordPress Advanced Custom Fields for Beginners (5)

preview_player
Показать описание
Learn how to integrate an image field in WordPress using Advanced Custom Fields plugin.

Welcome to my Advanced Custom Fields tutorial for WordPress.

If you’re not familiar with what Advanced Custom Fields or “ACF” is, then you’ve been missing out.

WordPress, as great and popular as it is as a content management system, has never focused on building a simple system for custom fields - ACF has helped fill this gap.

ACF is, in my opinion, one of the most important plugins you can use as a developer in WordPress.

ACF removes the complexity of adding custom field functionality into your WordPress theme.

If you’ve ever tried creating the functionality of custom fields directly into a plugin or theme, you would know that it is very time consuming. ACF provides you with all of the functionality required for custom fields to display on the admin, and a simple API to display it on the front end of your website using PHP.

So what are custom fields? Well - put simply, they allow you to add custom data to your WordPress website. That data is stored in the database, so you can display it anywhere you want, you can truly build some very customised interfaces VERY easily.

If you’re a web developer and want to provide simple fields for your clients to update their website, ACF is perfect for you.

There are two versions of ACF. A free and a premium version. In this series, I will using the PRO version - however, you can follow along with the FREE version - and if the software helps you, I would definitely recommend purchasing it.

Each video in this series will cover a different field type in ACF - and show you how to implement it as well as different ways it can be used.

In this series, you will learn WordPress Advanced Custom Fields in the simplest way possible.

Advanced Custom Fields brings custom field functionality to WordPress providing you with an extremely fast way to customise WordPress. From basic text fields to complex Flexible Content fields, ACF is an excellent plugin and is arguably the best and most useful plugin for WordPress developers.

Save time and make more money as a web developer because you can seamlessly create fast interfaces for yourself or your clients to update parts of the website.
Рекомендации по теме
Комментарии
Автор

I love your tempo of explaning stuff! Everything is so exact and fast in your videos, it saves so much time! Thanks!!!

МилянМилькович
Автор

Loving all your tuts Sean! Appreciate the time and effort!

bodhicreative
Автор

I know this is quite old now, but when trying this with wordpress 6.4 i cannot save Image, Gallery, Wysiwyg or embed fields on the page editor. When I click Update, the page refreshes but these fields are blank. If I change thew standard Title, content and featured image fields, these are saved.

peteharrison
Автор

Thank you for the fields are very helpful, I do not know if you were still supporting this tutorial? But I will ask a question and see what happens, image in Theme Header?

ChrisDaleArt
Автор

Thank you, I learnt how to use this plugin from your videoes. U rock 👌

parisaparvizi
Автор

How would I show an ACF image inside a filter? I want to filter images thats contained in each CPT post and inject that into the top nav. I'm not sure how to show it.

kberwager
Автор

i hope you enjoyed your trip in morocco
thanks for the tutorial is really helpful

yazidkhaldi
Автор

Excellent too pleased and relieved to have found this tutorial. Thanks mate and have a lovely day ahead. Already subscribed.

yasirtahirkheli
Автор

Thank you for this serie. It helped me a lot. The doc is kinda unclear

Tony.Nguyen
Автор

Do I use the pirated version (SCF) or advanced custom fields?

lukeyk
Автор

Thanks for the tutorial. This series is proving really helpful. It would be great to be shown your method for responsive images with ACF...

jeromeprice
Автор

How can we add a favicon?
By the way, you explain well each topic. Thank you!

shahabuddinadvocate
Автор

Really like your tutorial
But please tell me how to display image inside the row or column my image is not showing

rohitpanchal
Автор

Great tutorial, I was wondering, is there any of your tutorials that show how to make an image gallery with filter buttons at the top? Thanks

SIFWD
Автор

Does this still word the same in 2021? Not having much luck with my image size.

jlambert
Автор

$image = get_field('image');
$size = 'medium';
if( $image ) {
echo wp_get_attachment_image( $image, $size );
}

jlambert
Автор

How can i add that the field image has also a link option?

T__B