php 使用ACF字段创建包含短代码的HREF链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用ACF字段创建包含短代码的HREF链接相关的知识,希望对你有一定的参考价值。

<?php

/*****************************************************************************************************************************************************
 *
 *  Usage: [acf_href href_before="mailto:" href="acf:field_name" text="acf:field_name"]
 *
 *    acf:fieldname will retrieve the value of the specified "fieldname" and use that.
 *    get:url_variable will grab a variable from the URL and use that.
 *
 *      [acf_href href="acf:my_link" text="Link to web site"]
 *      [acf_href href_before="mailto:" href="acf:email_address" text="acf:user_name" post_id="get:post_id"]
 *
 *****************************************************************************************************************************************************/

/*---------------------------------------------------------------------------------------------------------------------------------------------------*/

function acf_field_from_string( $string, $post_id ) {
    if ( substr( $string, 0, 4 ) == 'acf:' ) {      // ACF field name
        $string = get_field( substr( $string, 4 ), $post_id );
    } elseif ( substr( $string, 0, 4 ) == 'get:' ) {
        $string = $_GET[substr( $string, 4 ) ];     // $_GET variable
    }
    return $string;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------*/

add_shortcode( 'acf_href', 'tscpl_sc_acf_href' );
function tscpl_sc_acf_href( $atts ) {
    extract( shortcode_atts( array(
        'href_before' => '',
        'href' => null,
        'href_after' => '',
        'text' => null,
        'title' => null,
        'alt' => null,
        'target' => '_new',
        'post_id' => null,
        'post_type' => 'post',                      // default to POST if not specified
        ), $atts ));

    if ( empty( $post_id ) ) {                      // inside the loop
        $post_id = get_the_id();
    } elseif ( is_numeric( $post_id ) == false ) {  // slug
        $post_id = acf_field_from_string( $post_id );
        if ( empty( $post_type ) )
            $post_type = get_post_type();
        $post = get_page_by_path( $post_id, OBJECT, $post_type );
        $post_id = $post->ID;
    } else {
        $post_id = (int) $post_id;
    }

    if ( empty( $href ) )
        return;

    $href           = acf_field_from_string( $href, $post_id );
    $href_before    = acf_field_from_string( $href_before, $post_id );
    $href_after     = acf_field_from_string( $href_after, $post_id );
    $text           = acf_field_from_string( $text, $post_id );
    $title          = acf_field_from_string( $title, $post_id );
    $alt            = acf_field_from_string( $alt, $post_id );

    return '<a href="' . $href_before . $href . $href_after . '" title="' . $title . '" alt="' . $alt . '" target="' . $target . '">' . $text . '</a>';

}

以上是关于php 使用ACF字段创建包含短代码的HREF链接的主要内容,如果未能解决你的问题,请参考以下文章

php acf字段中的短代码(非所见即所得)

php ACF代码显示带有嵌入链接的图像,后跟文本字段

php ACF代码显示带有嵌入链接的图像,后跟文本字段

为 Slick Slider 和 ACF 创建简码

从 AFC 自定义字段变量中获取 ID 的 foogallery php 短代码不显示

php Beaver Builder / Beaver Themer ACF Map短代码