Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
function my_buddypress_theme_setup() { // Lägg till BuddyPress stöd add_theme_support( 'buddypress' ); } add_action( 'after_setup_theme', 'my_buddypress_theme_setup' ); function register_my_menus() { register_nav_menus( array( 'primary' => __( 'Primary Menu' ), 'footer' => __( 'Footer Menu' ), ) ); } add_action( 'after_setup_theme', 'register_my_menus' ); function my_theme_custom_logo() { add_theme_support( 'custom-logo' ); } add_action( 'after_setup_theme', 'my_theme_custom_logo' );
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Hi, this is a comment.
To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.