第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

簡單的 WP 插件引發(fā)意外結束

簡單的 WP 插件引發(fā)意外結束

PHP
ITMISS 2023-10-01 10:07:44
我創(chuàng)建了插件文件夾“my-plugin”,文件名為 my-plugin.php,內(nèi)容如下。當我嘗試打開插件時出現(xiàn)錯誤:“解析錯誤:語法錯誤,第 83 行 (...)\wp-content\plugins\my-plugin\my-plugin.php 中文件意外結束”。這是該文件中的最后一個空行。哪里有問題?<?php/** * @package my_plugin * @version 1.0 *//*Plugin Name: My pluginPlugin URI: http://wordpress.org/extend/plugins/#Description: This is an example pluginAuthor: Your NameVersion: 1.0Author URI: https://yourwebsite.com/*//** * Register a shortcode * * @param array $atts Array of shortcode attributes */function kinsta_get_posts_cb( $atts ){    // safely extract custom arguments and set default values    extract( shortcode_atts(            array(                'numberposts'       => 3,                'post_type'         => 'post',                'book_category'     => 'fantasy',                'year_published'    => 1900,                'price_min'         => 0,                'price_max'         => 50            ),            $atts,            'kinsta_get_posts'        ) );    // define the array of query arguments    $args = array(        'numberposts'   => $numberposts,        'post_type'     => $post_type,        'tax_query'     => array(            array(                'taxonomy'  => 'book_category',                'field'     => 'slug',                'terms'     => $book_category,            )        ),        'meta_query'    => array(            'relation'      => 'AND',            'year_clause'   => array(                'key'       => 'year_published',                'value'     => $year_published,                'type'      => 'numeric',                'compare'   => '>',            ),            'price_clause'  => array(                'key'       => 'price',                'value'     => array( $price_min, $price_max ),                'type'      => 'numeric',                'compare'   => 'BETWEEN',            )        ),        'orderby' => array( 'price_clause' => 'ASC' )    );
查看完整描述

1 回答

?
暮色呼如

TA貢獻1853條經(jīng)驗 獲得超9個贊

}顯然,您忘記在文件末尾關閉。



查看完整回答
反對 回復 2023-10-01
  • 1 回答
  • 0 關注
  • 128 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號