我想在页脚中添加第 5 列并从小部件区域填充它。我不确定这里需要什么。我在我的功能中做了.php在我的孩子主题中
add_filter( 'storefront_footer_widget_columns', 'MyFooterColumns' );
function MyFooterColumns( $columns ) {
return 5;
}
但什么也没发生 如何添加另一列?
它正在工作。您的代码是正确的。 如果您转到 管理员wp-admin/widgets.php
,您将看到第五列。