我有这样一个页面:
<?php
/*
Template Name: Agenda
*/
get_header(); ?>
<div class="wrap">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
My Hompagetext
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(\'test\'); ?>
</div><!-- .wrap -->
<?php get_footer();?>
我有一个边栏叫做:边栏测试。php
<aside id="secondary" class="widget-area" role="complementary" aria-label="<?php esc_attr_e( \'Test Sidebar\', \'rczo2\' ); ?>">
this text is displayed on the bottom but I want it in the sidebar on the right side
</aside><!-- #secondary -->
我尝试阅读了WP文档,找到了如何注册小部件,但没有找到如何包含这样一个简单的脚本。