summaryrefslogtreecommitdiff
path: root/api/sidebar.php
blob: 75c8b36234247d4a90e3fb816a41a0c85977a161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

function fk_get_sidebar() {
    ob_start();
    get_template_part( 'sidebar-templates/sidebar', 'right' );
    $content = ob_get_contents();
    $content = array("sidebar-right" => $content);
    ob_end_clean();

    return $content;
}