我真的很感谢任何人在这方面的帮助。基本上我想制作一个由其他数组组成的列表数组,以绕过 wordpress 的 do_shortcode 函数的限制。我正在使用许多功能来做到这一点。
问题的长版本:
目前的代码如下所示:
/* These are the functions contained in a functions file */
function output_entry_data() {
$postdate = get_the_date('j/n/y');
$entrytitle = get_the_title();
return ('<li><p class="postmeta">'. $postdate. '</p><h3>'. $entrytitle. '</h3></li>');
}
function output_month_data($entrynomax = '', $month = '', $entrydata = '') {
$entryno = 1;
while($entryno <= $entrynomax) {
echo $entrydata[$entryno];
$entryno++;
}
}
function output_year_data($monthlynomax = '', $year = '', $monthlydata = '') {
$monthno = 1;
while($monthno <= $monthnomax) {
echo do_shortcode('<h4>[slider title="'. $month. '"]</h4><ul>'. $monthlydata[$monthno]. '</ul>[/slider]');
$monthno++;
}
}
/* This is from a loop that determines whether you have reached the end of a month or a year */
$entrydata[$entryno] = output_entry_data();
$entrynomax = $entryno;
$monthlydata = array($monthno => $monthno);
$monthlydata[$monthno] = return(output_month_data($entrynomax, $month, $entrydata));
$monthlynomax = $monthno;
$annualdata[$yearno] = array($yearno => $yearno);
$annualdata[$yearno] = return(output_year_data($monthlynomax, $year, $monthlydata));
$entryno = 1;
$monthno = 1;
$yearno++;
$yearo = get_the_date('Y');
/* The idea is that all the data gets outputted at the end of the loop like this: */
$yearnomax = $yearno;
echo ('<ul>');
$yearno = 1;
if($yearno <= $yearnomax) {
echo do_shortcode('<h3>[expand title ="'. $year. '"]</h3><ul>'. $annualdata[$yearno]. '</ul>[/expand]');
$yearno++;
}
echo('</ul>');
目前,代码成功创建了 $entrydata[$entryno] 数组,因为函数 output_entry_data() 每次只返回一行代码。
但是,当我尝试为每个月创建数组 $monthlydata[$monthno] 时,它只是运行函数 output_month_data() 并列出所有每月条目的大列表,而不是将数据传递给数组以供使用其他功能。
我可以看到这是因为我在 output_entry_data() 中使用了“return”,在 output_month_data() 中使用了“echo”
问题的简短版本
数组 $entrydata[$entryno] 中的每个项目都是一个包含列表项标记的字符串,我希望 output_monthly_data() 返回 $entrydata[$entryno] 中所有项目的一个大字符串以供其他函数使用,而不是像当前代码一样回显它们。当涉及到一个while循环时可以这样做吗?
非常感谢,我很感激这里的任何输入。