我在页面上有下面的代码,基本上我想做的是$content
使用函数填充变量pagecontent
。函数内部的任何内容pagecontent
都应该添加到$content
变量中,然后我的主题系统会将$content
其放入主题中。从下面的答案看来,你们认为我想要在我不想要的实际函数中使用 html 和 php。
下面的这个函数用于页面内容,是我目前试图用来填充 $content 的函数。
function pagecontent()
{
return $pagecontent;
}
<?php
//starts the pagecontent and anything inside should be inside the variable is what I want
$content = pagecontent() {
?>
I want anything is this area whether it be PHP or HTML added to $content using pagecontent() function above.
<?php
}///this ends pagecontent
echo functional($content, 'Home');
?>