mirror of
https://github.com/10h30/genesis-simple-sidebars.git
synced 2026-06-05 15:08:34 +09:00
25 lines
392 B
PHP
25 lines
392 B
PHP
<?php
|
|
/**
|
|
* Functions file.
|
|
*
|
|
* @package genesis-simple-sidebars
|
|
*/
|
|
|
|
/**
|
|
* Dummy function for backward compatibility. Outputs the primary sidebar.
|
|
*
|
|
* @since 0.9.0
|
|
*/
|
|
function ss_do_sidebar() {
|
|
genesis_do_sidebar();
|
|
}
|
|
|
|
/**
|
|
* Dummy function for backward compatibility. Outputs the secondary sidebar.
|
|
*
|
|
* @since 0.9.0
|
|
*/
|
|
function ss_do_sidebar_alt() {
|
|
genesis_do_sidebar_alt();
|
|
}
|