有人可以指导我如何设置“归档小部件”的样式
显示两列(如下图所示)?



我是Wordpress的新手,真的不知道该如何实现。

最佳答案

我设计了自己的小部件,例如

在我的sidebar.php文件中,将类别数据分为两列,然后根据其数据将其隐藏在页面的某个位置。

<?php
 $catArray = explode("</li>",wp_list_categories('title_li=&echo=0&depth=1'));
 $catCount = count($catArray) - 1;
 $catColumns = round($catCount / 2);

 for ($i=0;$i<$catCount;$i++) {
  if ($i<$catColumns){
   $catLeft = $catLeft.''.$catArray[$i].'</li>';
          }
  elseif ($i>=$catColumns){
   $catRight = $catRight.''.$catArray[$i].'</li>';
   }
 };
?>

关于css - 如何在两列中设置小部件样式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7500246/

10-16 21:55