Avatar billede kimit Praktikant
31. juli 2015 - 14:22 Der er 14 kommentarer

Logo i header på en Wordpress løsning skal skifte på de forskellige sprogversioner.

Hej...

Jeg sidder med et wordpress site på to sprog, og har brug for at logoet i header skifter, når man skifter vælger andet sprog. Har WPML installeret.

Skifter jeg logoet i Theme options bliver logoet, der vælges - generelt vist på alle sprog.

Der mangler helt sikkert noget php kode i header.php der giver den ønskede virkning.


Er der nogen, som kan hjælpe med det ?
Her er hvordan koden i headeren ser ud:



<?php

/**

* The Header for our theme.

*

* Displays all of the <head> section and everything up till <div id="main">

*

* @package WordPress

* @subpackage SSX_THEME

* @since SSXTHEME 1.0

*/

?><!DOCTYPE html>

<!--[if IE 7]>

<html class="ie ie7" <?php language_attributes(); ?>>

<![endif]-->

<!--[if IE 8]>

<html class="ie ie8" <?php language_attributes(); ?>>

<![endif]-->

<!--[if !(IE 7) | !(IE 8)  ]><!-->

<html <?php language_attributes(); ?>>

<!--<![endif]-->

<head>

    <meta charset="<?php bloginfo( 'charset' ); ?>">

    <meta name="viewport" content="width=device-width">

    <title><?php wp_title( '|', true, 'right' ); ?></title>

    <link rel="profile" href="http://gmpg.org/xfn/11">

    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">

    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="<?php bloginfo('template_url');?>/fonts/stylesheet.css">
   
    <!--[if lt IE 9]>

    <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>

    <![endif]-->

    <?php wp_head(); ?>
   
    <script>
    var varLang = "<?php echo ICL_LANGUAGE_CODE;?>";
    </script>

</head>



<body <?php body_class(); ?>>

   

    <div class="wrapper">

<section class="container">



<header>

<div class="lang_select">
<?php dynamic_sidebar('header-lang');?>
</div>

  <div class="logo_section">

  <?php $logo=of_get_option('site_logo');?>

  <a href="<?php bloginfo('url');?>" class="logo">

 

  <?php if($logo){?>



            <img src="<?php echo $logo;?>" alt="" />



            <?php }else{bloginfo('name');}?>

 

  </a>

  </div>



  <nav>

  <a href="#" class="toggle">Menu</a>

  <?php wp_nav_menu(array('menu'=>'main_menu','after'  => '<span></span>'));?>

  </nav>

</header>
Avatar billede showsource Seniormester
01. august 2015 - 08:01 #1
Hvis du tilføjer lang til billedet, kan du vel blot i if $logo

<img src="<?php echo $logo."_".ICL_LANGUAGE_CODE;?>" alt="" />

D.v.s. du har billeder som hedder f.eks.

topbanner_dk.jpg
topbanner_eng.jpg
Avatar billede kimit Praktikant
01. august 2015 - 08:58 #2
Jeg har uploadet to billeder:

toplogo_dk.png
toplogo_ck.png

I Theme options har man mulighed for at tilknytte toplogo
Lægger jeg toplogo_dk.png ind på den danske version, vises den også på den tjekkiske version. Selv om jeg skifter til ck, når jeg står i Theme options.

Så her virker det ikke fra.

Skal der evt. tilknyttes noget kode i funktion.php ?

Her min functions.php:


<?php

/**

* SSXTHEME functions and definitions.

*

  */

if ( ! isset( $content_width ) )

    $content_width = 604;



/**

* Adds support for a custom header image.

*/

//require get_template_directory() . '/inc/custom-header.php';



/**

* SSXTHEME only works in WordPress 3.6 or later.

*/

if ( version_compare( $GLOBALS['wp_version'], '3.6-alpha', '<' ) )

    require get_template_directory() . '/inc/back-compat.php';



/**

* Sets up theme defaults and registers the various WordPress features that

  * @return void

*/

function ssxtheme_setup() {

    /*

    * Makes SSXTHEME available for translation.

    *

    * Translations can be added to the /languages/ directory.

    * If you're building a theme based on SSXTHEME, use a find and

    * replace to change 'ssxtheme' to the name of your theme in all

    * template files.

    */

    load_theme_textdomain( 'ssxtheme', get_template_directory() . '/languages' );



   

    // Adds RSS feed links to <head> for posts and comments.

    add_theme_support( 'automatic-feed-links' );



    // Switches default core markup for search form, comment form, and comments

    // to output valid HTML5.

    add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list' ) );



    // This theme uses wp_nav_menu() in one location.

    register_nav_menu( 'primary', __( 'Navigation Menu', 'ssxtheme' ) );



    /*

    * This theme uses a custom image size for featured images, displayed on

    * "standard" posts and pages.

    */

    add_theme_support( 'post-thumbnails' );

    set_post_thumbnail_size( 604, 270, true );



    // This theme uses its own gallery styles.

    add_filter( 'use_default_gallery_style', '__return_false' );

}

add_action( 'after_setup_theme', 'ssxtheme_setup' );

/**

* Enqueues scripts and styles for front end.

*

* @since SSXTHEME 1.0

*

* @return void

*/

function ssxtheme_scripts_styles() {

    // Adds JavaScript to pages with the comment form to support sites with

    // threaded comments (when in use).

    if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )

        wp_enqueue_script( 'comment-reply' );



    // Adds Masonry to handle vertical alignment of footer widgets.

    if ( is_active_sidebar( 'sidebar-1' ) )

        wp_enqueue_script( 'jquery-masonry' );



    // Loads JavaScript file with functionality specific to SSXTHEME.

    wp_enqueue_script( 'ssxtheme-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '2013-07-18', true );

    // Loads our main stylesheet.

    wp_enqueue_style( 'ssxtheme-style', get_stylesheet_uri(), array(), '2013-07-18' );

   

    // Loads the Internet Explorer specific stylesheet.

    wp_enqueue_style( 'ssxtheme-ie', get_template_directory_uri() . '/css/ie.css', array( 'ssxtheme-style' ), '2013-07-18' );

    wp_style_add_data( 'ssxtheme-ie', 'conditional', 'lt IE 9' );

}

add_action( 'wp_enqueue_scripts', 'ssxtheme_scripts_styles' );



/**

* Creates a nicely formatted and more specific title element text for output

* in head of document, based on current view.

*

* @since SSXTHEME 1.0

*

* @param string $title Default title text for current view.

* @param string $sep Optional separator.

* @return string The filtered title.

*/

function ssxtheme_wp_title( $title, $sep ) {

    global $paged, $page;



    if ( is_feed() )

        return $title;



    // Add the site name.

    $title .= get_bloginfo( 'name' );



    // Add the site description for the home/front page.

    $site_description = get_bloginfo( 'description', 'display' );

    if ( $site_description && ( is_home() || is_front_page() ) )

        $title = "$title $sep $site_description";



    // Add a page number if necessary.

    if ( $paged >= 2 || $page >= 2 )

        $title = "$title $sep " . sprintf( __( 'Page %s', 'ssxtheme' ), max( $paged, $page ) );



    return $title;

}

add_filter( 'wp_title', 'ssxtheme_wp_title', 10, 2 );



/**

* Registers two widget areas.

*

* @since SSXTHEME 1.0

*

* @return void

*/

function ssxtheme_widgets_init() {
   
    register_sidebar( array(
        'name'          => __( 'Language Selector Widget Area', 'ssxtheme' ),
        'id'            => 'header-lang',
        'description'  => __( 'Appears in the header section of the site.', 'ssxtheme' ),
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget'  => '</aside>',
        'before_title'  => '<h3 class="widget-title" style="display:none;">',
        'after_title'  => '</h3>',
    ) );
   
   

    register_sidebar( array(

        'name'          => __( 'Sidebar Slider Widget Area', 'ssxtheme' ),

        'id'            => 'sidebar-slider',

        'description'  => __( 'Appears on posts and pages in the sidebar.', 'ssxtheme' ),

        'before_widget' => '<aside id="%1$s" class="widget slider %2$s">',

        'after_widget'  => '</aside>',

        'before_title'  => '<h3 class="widget-title">',

        'after_title'  => '</h3>',

    ) );

   

   

    register_sidebar( array(

        'name'          => __( 'Sidebar Link Widget Area', 'ssxtheme' ),

        'id'            => 'sidebar-link',

        'description'  => __( 'Appears on posts and pages in the sidebar.', 'ssxtheme' ),

        'before_widget' => '<aside id="%1$s" class="widget %2$s">',

        'after_widget'  => '</aside>',

        'before_title'  => '<h3 class="widget-title">',

        'after_title'  => '</h3>',

    ) );

   



    register_sidebar( array(

        'name'          => __( 'Footer Top Widget Area', 'ssxtheme' ),

        'id'            => 'footer-top',

        'description'  => __( 'Appears in the footer section of the site.', 'ssxtheme' ),

        'before_widget' => '<aside id="%1$s" class="widget %2$s">',

        'after_widget'  => '</aside>',

        'before_title'  => '<h3 class="widget-title" style="display:none;">',

        'after_title'  => '</h3>',

    ) );



    register_sidebar( array(

        'name'          => __( 'Footer Bottom Widget Area', 'ssxtheme' ),

        'id'            => 'footer-bottom',

        'description'  => __( 'Appears in the footer section of the site.', 'ssxtheme' ),

        'before_widget' => '<aside id="%1$s" class="widget %2$s">',

        'after_widget'  => '</aside>',

        'before_title'  => '<h3 class="widget-title" style="display:none;">',

        'after_title'  => '</h3>',

    ) );   

   

   

}

add_action( 'widgets_init', 'ssxtheme_widgets_init' );



if ( ! function_exists( 'ssxtheme_paging_nav' ) ) :

/**

* Displays navigation to next/previous set of posts when applicable.

*

* @since SSXTHEME 1.0

*

* @return void

*/

function ssxtheme_paging_nav() {

    global $wp_query;



    // Don't print empty markup if there's only one page.

    if ( $wp_query->max_num_pages < 2 )

        return;

    ?>

    <nav class="navigation paging-navigation" role="navigation">

        <h1 class="screen-reader-text"><?php _e( 'Posts navigation', 'ssxtheme' ); ?></h1>

        <div class="nav-links">



            <?php if ( get_next_posts_link() ) : ?>

            <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'ssxtheme' ) ); ?></div>

            <?php endif; ?>



            <?php if ( get_previous_posts_link() ) : ?>

            <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'ssxtheme' ) ); ?></div>

            <?php endif; ?>



        </div><!-- .nav-links -->

    </nav><!-- .navigation -->

    <?php

}

endif;



if ( ! function_exists( 'ssxtheme_post_nav' ) ) :

/**

* Displays navigation to next/previous post when applicable.

*

* @since SSXTHEME 1.0

*

* @return void

*/

function ssxtheme_post_nav() {

    global $post;



    // Don't print empty markup if there's nowhere to navigate.

    $previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true );

    $next    = get_adjacent_post( false, '', false );



    if ( ! $next && ! $previous )

        return;

    ?>

    <nav class="navigation post-navigation" role="navigation">

        <h1 class="screen-reader-text"><?php _e( 'Post navigation', 'ssxtheme' ); ?></h1>

        <div class="nav-links">



            <?php previous_post_link( '%link', _x( '<span class="meta-nav">&larr;</span> %title', 'Previous post link', 'ssxtheme' ) ); ?>

            <?php next_post_link( '%link', _x( '%title <span class="meta-nav">&rarr;</span>', 'Next post link', 'ssxtheme' ) ); ?>



        </div><!-- .nav-links -->

    </nav><!-- .navigation -->

    <?php

}

endif;



if ( ! function_exists( 'ssxtheme_entry_meta' ) ) :

/**

* Prints HTML with meta information for current post: categories, tags, permalink, author, and date.

*

* Create your own ssxtheme_entry_meta() to override in a child theme.

*

* @since SSXTHEME 1.0

*

* @return void

*/

function ssxtheme_entry_meta() {

    if ( is_sticky() && is_home() && ! is_paged() )

        echo '<span class="featured-post">' . __( 'Sticky', 'ssxtheme' ) . '</span>';



    if ( ! has_post_format( 'link' ) && 'post' == get_post_type() )

        ssxtheme_entry_date();



    // Translators: used between list items, there is a space after the comma.

    $categories_list = get_the_category_list( __( ', ', 'ssxtheme' ) );

    if ( $categories_list ) {

        echo '<span class="categories-links">' . $categories_list . '</span>';

    }



    // Translators: used between list items, there is a space after the comma.

    $tag_list = get_the_tag_list( '', __( ', ', 'ssxtheme' ) );

    if ( $tag_list ) {

        echo '<span class="tags-links">' . $tag_list . '</span>';

    }



    // Post author

    if ( 'post' == get_post_type() ) {

        printf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',

            esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),

            esc_attr( sprintf( __( 'View all posts by %s', 'ssxtheme' ), get_the_author() ) ),

            get_the_author()

        );

    }

}

endif;



if ( ! function_exists( 'ssxtheme_entry_date' ) ) :

/**

* Prints HTML with date information for current post.

*

* Create your own ssxtheme_entry_date() to override in a child theme.

*

* @since SSXTHEME 1.0

*

* @param boolean $echo Whether to echo the date. Default true.

* @return string The HTML-formatted post date.

*/

function ssxtheme_entry_date( $echo = true ) {

    if ( has_post_format( array( 'chat', 'status' ) ) )

        $format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'ssxtheme' );

    else

        $format_prefix = '%2$s';



    $date = sprintf( '<span class="date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span>',

        esc_url( get_permalink() ),

        esc_attr( sprintf( __( 'Permalink to %s', 'ssxtheme' ), the_title_attribute( 'echo=0' ) ) ),

        esc_attr( get_the_date( 'c' ) ),

        esc_html( sprintf( $format_prefix, get_post_format_string( get_post_format() ), get_the_date() ) )

    );



    if ( $echo )

        echo $date;



    return $date;

}

endif;



if ( ! function_exists( 'ssxtheme_the_attached_image' ) ) :

/**

* Prints the attached image with a link to the next attached image.

*

* @since SSXTHEME 1.0

*

* @return void

*/

function ssxtheme_the_attached_image() {

    $post                = get_post();

    $attachment_size    = apply_filters( 'ssxtheme_attachment_size', array( 724, 724 ) );

    $next_attachment_url = wp_get_attachment_url();



    /**

    * Grab the IDs of all the image attachments in a gallery so we can get the URL

    * of the next adjacent image in a gallery, or the first image (if we're

    * looking at the last image in a gallery), or, in a gallery of one, just the

    * link to that image file.

    */

    $attachment_ids = get_posts( array(

        'post_parent'    => $post->post_parent,

        'fields'        => 'ids',

        'numberposts'    => -1,

        'post_status'    => 'inherit',

        'post_type'      => 'attachment',

        'post_mime_type' => 'image',

        'order'          => 'ASC',

        'orderby'        => 'menu_order ID'

    ) );



    // If there is more than 1 attachment in a gallery...

    if ( count( $attachment_ids ) > 1 ) {

        foreach ( $attachment_ids as $attachment_id ) {

            if ( $attachment_id == $post->ID ) {

                $next_id = current( $attachment_ids );

                break;

            }

        }



        // get the URL of the next image attachment...

        if ( $next_id )

            $next_attachment_url = get_attachment_link( $next_id );



        // or get the URL of the first image attachment.

        else

            $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );

    }



    printf( '<a href="%1$s" title="%2$s" rel="attachment">%3$s</a>',

        esc_url( $next_attachment_url ),

        the_title_attribute( array( 'echo' => false ) ),

        wp_get_attachment_image( $post->ID, $attachment_size )

    );

}

endif;



/**

* Returns the URL from the post.

*

* @uses get_url_in_content() to get the URL in the post meta (if it exists) or

* the first link found in the post content.

*

* Falls back to the post permalink if no URL is found in the post.

*

* @since SSXTHEME 1.0

*

* @return string The Link format URL.

*/

function ssxtheme_get_link_url() {

    $content = get_the_content();

    $has_url = get_url_in_content( $content );



    return ( $has_url ) ? $has_url : apply_filters( 'the_permalink', get_permalink() );

}



/**

* Extends the default WordPress body classes.

*/

function ssxtheme_body_class( $classes ) {

    if ( ! is_multi_author() )

        $classes[] = 'single-author';



    if ( is_active_sidebar( 'sidebar-2' ) && ! is_attachment() && ! is_404() )

        $classes[] = 'sidebar';



    if ( ! get_option( 'show_avatars' ) )

        $classes[] = 'no-avatars';



    return $classes;

}

add_filter( 'body_class', 'ssxtheme_body_class' );



/**

* Binds JavaScript handlers to make Customizer preview reload changes

* asynchronously.

*

* @since SSXTHEME 1.0

*/

function ssxtheme_customize_preview_js() {

    wp_enqueue_script( 'ssxtheme-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20130226', true );

}

add_action( 'customize_preview_init', 'ssxtheme_customize_preview_js' );





if ( !function_exists( 'optionsframework_init' ) ) {



    define( 'OPTIONS_FRAMEWORK_DIRECTORY', get_template_directory_uri() . '/inc/' );



    require_once dirname( __FILE__ ) . '/inc/options-framework.php';



}







function initial_setup()  {



    if (isset($_GET['activated'])) {



        header( 'Location: ' . admin_url() . 'themes.php?page=options-framework');



    }



}







$options[] = array(



        'name' => __('Select a Category For Sidebar', 'options_framework_theme'),



        'desc' => __('Select category', 'options_framework_theme'),



        'id' => 'cat_id',



        'type' => 'select',



        'options' => $options_categories);

       



//styles



function theme_styles() {



    wp_register_style( 'genericons', get_template_directory_uri() . '/css/genericons.css' ); 



    wp_enqueue_style( 'genericons' );



  wp_register_style( 'responsive', get_template_directory_uri() . '/css/responsive.css' ); 



    wp_enqueue_style( 'responsive' );


  wp_register_style( 'jqtransform', get_template_directory_uri() . '/jqtransform/jqtransform.css' ); 



    wp_enqueue_style( 'jqtransform' );


}



add_action('wp_enqueue_scripts', 'theme_styles');

       







//Excerpt

function custom_excerpt_length( $length ) {

    return 40;

}

add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );





// no more jumping for read more link

function new_excerpt_more( $more ) {

          return '...<a href="'. esc_url( get_permalink() ) . '" class="read" >' . __( 'Read More', 'ssxtheme' ) . '</a>';

}

add_filter('excerpt_more', 'new_excerpt_more');       

function load_custom_wp_admin_style() {
        wp_register_style( 'custom_wp_admin_css', get_template_directory_uri() . '/admin-style.css', false, '1.0.0' );
        wp_enqueue_style( 'custom_wp_admin_css' );
}
add_action( 'admin_enqueue_scripts', 'load_custom_wp_admin_style' );

//Add Menu  left
add_action( 'admin_menu', 'register_my_custom_menu_page' );

function register_my_custom_menu_page(){
    add_menu_page( 'Contact Form Count', 'Contact Form Count', 'manage_options', 'contact_form_count', 'contact_form_count', plugins_url( 'count.png' ) );
}

function contact_form_count(){
$arrImage = array("da_DK"=>"wp-content/plugins/sitepress-multilingual-cms/res/flags/da.png");   
//
?>
<div class="forms_row headin ">
    <div class="form_col1 headin">Name Of Form</div><div class="form_col2 headin">Number Of Entries</div>
    </div><?php
    global $wpdb,$post;
    query_posts(array('post_type'=>'wpcf7_contact_form','showposts'=>-1));
    while(have_posts()): the_post();
        $get_title=addslashes(get_the_title());

        $table=$wpdb->prefix."cf7dbplugin_submits";
        $sql = "SELECT count(DISTINCT(submit_time)) as total FROM $table WHERE form_name='$get_title'";
        $rows=$wpdb->get_results($sql,ARRAY_A);

$varTable2  = $wpdb->prefix."postmeta";
$sql2 = "SELECT meta_value as lang FROM $varTable2 WHERE meta_key='_locale' AND post_id ='$post->ID'";
$rows2 = $wpdb->get_results($sql2,ARRAY_A);

    $total="";

    if(is_array($rows)){
          $total=$rows[0]['total'];
    }

$varLng = $rows2[0]["lang"];

?>
    <div class="forms_row">
    <div class="form_col1"><?php echo $get_title; ?><?php if($varLng) {?> <span style="margin-left:20px;"><img src="<?php echo get_bloginfo('url').'/'.$arrImage[$varLng];?>" alt="" title="" /></span><?php } else {  ?><span style="margin-left:20px;"><img src="<?php echo get_bloginfo('url').'/'.$arrImage[$varLng].'/wp-content/plugins/sitepress-multilingual-cms/res/flags/en.png';?>" alt="" title="" /></span><?php } ?></div><div class="form_col2"><?php echo $total;?></div>
    </div>
    <?php
    endwhile;
   
   
}
Avatar billede showsource Seniormester
01. august 2015 - 17:21 #3
Hmm, find funktionen "of_get_option()" som jo returnerer toplogo_dk.png
Det må være her der skal "pilles" ved at gøre brug af ICL_LANGUAGE_CODE som jo så skal være defineret tidligere.
Men det er den nok også da den jo er væsentlig ?
Avatar billede showsource Seniormester
01. august 2015 - 17:26 #4
Evt. lad toplogo.png være default
Og så
<?php if($logo){

    if(!empty(ICL_LANGUAGE_CODE)) {
    $navn = basename($logo, ".png");
    $logo = $navn."_".ICL_LANGUAGE_CODE.".png";
    }
//utestet

?>
Avatar billede showsource Seniormester
01. august 2015 - 17:27 #5
og hov, se lige bort fra min sidste post!
Hvis man vil skifte mellem sprog går der jo ged i den ! :O)
Avatar billede kimit Praktikant
01. august 2015 - 20:09 #6
:-)
Avatar billede showsource Seniormester
02. august 2015 - 08:19 #7
DEFINE("ICL_LANGUAGE_CODE", "dk");
$logo = "toplogo.png";


if($logo) {

    if(!empty(ICL_LANGUAGE_CODE)) {
    $navn = basename($logo, ".png");
    $logo = $navn."_".ICL_LANGUAGE_CODE.".png";
    }

echo $logo;

}

burde kunne gøre det du ønsker
Avatar billede showsource Seniormester
02. august 2015 - 08:21 #8
D.v.s. du vælger toplogo.png som standard i wp.
Avatar billede kimit Praktikant
02. august 2015 - 09:03 #9
Jeg har navngivet mine to toplogo filer sådan:

toplogo_dk.png
toplogo_ck.png

Dansk og Tjekkisk

Så hvordan skal koden se ud med de navngivninger. Og skal koden ind i header.php ?
Avatar billede showsource Seniormester
02. august 2015 - 20:11 #10
toplogo.png vælger du i WP.
( toplogo.png bliver så ikke brugt, men så har du et filnavn at gøre med )

I header:

<?php if($logo){


    if(!empty(ICL_LANGUAGE_CODE)) {
    $navn = basename($logo, ".png");
    $logo = $navn."_".ICL_LANGUAGE_CODE.".png";
    }
?>
            <img src="<?php echo $logo;?>" alt="" />

            <?php }else{bloginfo('name');}?>
Avatar billede kimit Praktikant
02. august 2015 - 20:50 #11
Hvor i wp vælger jeg toplogo.png ?
Avatar billede showsource Seniormester
02. august 2015 - 21:10 #12
Du skriver selv:
"Skifter jeg logoet i Theme options bliver logoet, der vælges - generelt vist på alle sprog."

Så det må jo være i Theme options :O)
Avatar billede kimit Praktikant
02. august 2015 - 22:29 #13
Du har ret. Men det der gør mig lidt forvirret er at du nævner en fil ved navn toplogo.png

Jeg har to filer:

toplogo_dk.png
toplogo_ck.png

ingen ved navn toplogo.png

Skal jeg uploade toplogo_dk.png i Theme options og så lægge dit forslag til kode ind i headeren ?
Avatar billede showsource Seniormester
03. august 2015 - 05:35 #14
Nej, du skal uploade en fil som hedder toplogo.png
Den vil så ikke blive brugt, (tager bare serverplads), men du har så et filnavn som skal bruges ved visning af "sprog billeder".


Dit spm. kunne sikkert løses ved at ændre i funktionen of_get_option(), men jeg kender ikke wp og kommer nok heller aldrig til det.
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester