因此,我在 wordpress 上的所见即所得(TinyMCE)中添加了按钮。有一个函数被调用来将按钮添加到按钮数组中。在该函数中,我创建了一个新循环,因为要添加很多按钮。我的循环一定有问题,因为它会抛出错误,而手动插入代码则不会返回任何错误。
//Add button to the button array.
function register_button($buttons) {
//Use PHP 'array_push' function to add the columns button to the $buttons array
$columnNum = array('one','two','three','four','five','six','seven','eight','nine','ten','eleven');
for($i=0;$i<11;$i++){
array_push($buttons, '"'.$columnNum[$i].'_col"');
array_push($buttons, '"'.$columnNum[$i].'_col_first"');
array_push($buttons, '"'.$columnNum[$i].'_col_last"');
}
//Return buttons array to TinyMCE
return $buttons;
}
谢谢你的帮助!