📜  在联系表格 7 中添加自定义简码 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:40.346000             🧑  作者: Mango

代码示例1
wpcf7_add_shortcode('custom_date', 'wpcf7_custom_date_shortcode_handler', true);

function wpcf7_custom_date_shortcode_handler($tag) {
    if (!is_array($tag)) return '';

    $name = $tag['name'];
    if (empty($name)) return '';

    $next_week = date('Y-m-d', time() + (60*60*24*7)); 
    $html = '';
    return $html;
}