に......線125に文字列に変換することができませんでした私はポストタイプのタイトルをフィルタリングしようとしていると私はこのキャッチできる致命的なエラー:クラスはstdClassのオブジェクトはWordPress
を得ましたここCatchable fatal error: Object of class stdClass could not be converted to string in line 125
は、私が使用し...
add_filter('wpseo_title', 'vehicle_listing_title', 10, 1);
function vehicle_listing_title($title) {
global $post;
if (get_post_type() == 'vehicles'){
$model = get_queried_object('vehicle_model');
$location = get_queried_object('vehicle_location');
$title = $model . "used cars for sale in" . $location .'on'. get_bloginfo('name'); <---- this is line 125
}
return $title;
}
くそー、名前は 'get_queried_object'あなたは単なる文字列でそれを連結し、私が思う__toString''実装していないオブジェクトを返す必要があることを示唆しています。 'var_dump($ model、$ location)'を試してみてください。 – Chay22