Dove sono i valori dei campi personalizzati memorizzati nel database
-
-
Ciao @ChetanaKestikar,poiché ACFnonfaeffettivamenteparte di WordPress,è difficile dire dovememorizzai dati senza unagrande conoscenza delfunzionamentointerno delplugin.Per questomotivo,latua domandapotrebbeessere affrontata almeglionei canali di supporto ufficiali di ACF.Hello @ChetanaKestikar - since ACF is not actually a part of WordPress, it's difficult to say where it stores data without a great deal of knowledge regarding the inner workings of the plugin. For that reason, your question would be best addressed in the official ACF support channels.
- 0
- 2017-03-25
- bosco
-
1 risposta
- voti
-
- 2013-06-27
Dal codiceperi campipersonalizzati :
Leinformazioni di PostMeta vengonomemorizzatein unanuovatabella,$ wpdb- >postmeta.Questatabella ha quattro campi:
"meta_id": un ID univocoper ogni voce.
"post_id": l'ID delpostper questimetadati.
'meta_key' - Ilnome della 'chiave'.
"meta_value":il valore associato alla chiave.Questo ovviamentepresuppone che ACF utilizzi la strutturapredefinita di WordPresse non un databasepersonalizzato.
From the codex for custom fields:
The PostMeta information is stored in a new table, $wpdb->postmeta. This table has four fields:
'meta_id' - A unique id for each entry.
'post_id' - The ID of the post for this metadata.
'meta_key' - The name of the 'key'.
'meta_value' - The value associated with the key.This of course assumings that ACF uses the default WordPress stucture and not a custom database.
-
Quindi risulta che ACF utilizza la strutturapredefinita di WordPress?So it turns out that ACF uses the default WordPress structure?
- 1
- 2015-05-15
- Mike Lyons
-
@MikeLyons Hai ragione.@MikeLyons You are correct.
- 2
- 2015-08-13
- iambriansreed
-
Ma qual èilnome deltavolo?But which is the name of the table?
- 0
- 2015-11-04
- Revious
-
@Revious Da questo diagramma appare come `wp_postmeta` https://codex.wordpress.org/Database_Description#Table:_wp_postmeta@Revious From this diagram looks like `wp_postmeta` https://codex.wordpress.org/Database_Description#Table:_wp_postmeta
- 1
- 2015-11-07
- Brooke.
-
@BandonRandon:grazie,hai ragione.Hogià cancellato quelloinutilizzato@BandonRandon: thanks, you are right. I've already deleted the unused one
- 0
- 2015-11-07
- Revious
Sto utilizzandoilplug-in avanzato dei campipersonalizzatiperi post.Vorrei sapere dove sono archiviatii campipersonalizzati.Ho controllato latabella
wp_posts
.Tuttavia,non sono riuscito atrovarei post con campipersonalizzati.Vorrei saperein qualetabella sonomemorizzatinel database.