Riassunto AI
Descrizione
Il filtro wpforms_smart_tag_process utilizzato per elaborare gli Smart Tag all'interno del costruttore di moduli WPForms.
Parametri
- $content
- (string) (Richiesto) Contenuto dello Smart Tag.
- $tag
- (string) (Richiesto) Nome del tag dello Smart Tag.
Origine
wpforms/includes/class-smart-tags.php
Maggiori Informazioni
Il filtro viene utilizzato per creare, definire e registrare Smart Tag da utilizzare all'interno del costruttore di moduli WPForms.
L'utilizzo di questo filtro deve essere accompagnato anche da wpforms_smart_tags che registrerebbe lo Smart Tag prima della sua elaborazione.
Esempio
/**
* Process the Smart Tag.
*
* @link https://wpforms.com/developers/wpforms_smart_tag_process/
*
* @param string $content Content of the Smart Tag.
* @param string $tag Tag name of the Smart Tag.
* @return string
*/
function wpf_dev_process_smarttag( $content, $tag ) {
$userID = get_current_user_id();
// Only run if it is our desired tag.
if ( 'wp_nickname' === $tag ) {
$wp_nickname = get_the_author_meta( 'nickname', $userID );
// Replace the tag with the nickname pulled from the user's WordPress profile.
$content = str_replace( '{wp_nickname}', $wp_nickname, $content );
}
if ( 'wp_username' === $tag ) {
$wp_username = get_the_author_meta( 'user_login', $userID );
// Replace the tag with the username pulled from the user's WordPress profile.
$content = str_replace( '{wp_username}', $wp_username, $content );
}
return $content;
}
add_filter( 'wpforms_smart_tag_process', 'wpf_dev_process_smarttag', 10, 2 );
Articoli di riferimento
- Come creare uno Smart Tag personalizzato
- Come creare uno Smart Tag per l'ora corrente
- Come creare un ID univoco per ogni invio del modulo
- Come creare altri Smart Tag utente
- Come includere l'URL del post delle richieste nel messaggio di conferma
- Come creare uno Smart Tag da un campo ACF
- Come creare un URL di dominio Smart Tag