Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Plugins
    In reply to: [Bogo] Custom Post Types?

    Hello,

    Just a comment to let it clear, it works in your functions.php. Here is a little working example:

    add_filter(‘bogo_localizable_post_types’, ‘my_localizable_post_types’, 10, 1);

    function my_localizable_post_types($localizable) {
    $localizable[] = ‘event’;
    return $localizable;
    }

Viewing 1 replies (of 1 total)