1 回答

TA貢獻1827條經(jīng)驗 獲得超8個贊
您可以通過添加此內(nèi)容輕松做到這一點
$this->output('<meta property="og:url" content="'.$this->content['description'].'" />');
由于最后的 CID,您將遇到 giphy 無法正確調(diào)用的問題,因此您需要讓它從 filename.gif 之后的任何內(nèi)容中刪除數(shù)據(jù)。
您可以在這里輕松做到這一點:
`
$re = '/(?<=gif).*/';
$str = $this->content['description'];
$subst = '';
$result = preg_replace($re, $subst, $str);`
$this->output('<meta property="og:url" content="'.$result.'" />');
Place this code in /root/king-theme/YOURTHEME/king-theme.php and above the $this->output('<meta property="og:type" content="article" />');
字體:dafitime https://kingsupport.kingthemes.net/
- 1 回答
- 0 關注
- 144 瀏覽
添加回答
舉報