Just echo the title back twice in your post template. Once for the Norwegian version and once for the English.
or use custom fields: http://codex.ww.wp.xz.cn/Custom_Fields
Thread Starter
atlemo
(@atlemo)
Thanks Carmellom,
could you explain a bit more how I would go about echoing the title back twice? Double up that div? How can I then control what to input in the second field?
In your theme directory there is a file responsible for serving up your post content. It’s probably the single.php. Open that file and look for the line of code that reads
<?php the_title(); ?>
The line is responsible for outing whatever you have in the title field of the post editor. If you copy that line and surround it with the correct language styling you should be good to go. ( I don’t know much about language stuff at all) below if and example…
<?php get_header(); the_post(); ?>
<div id="content">
<h2><?php the_title(); ?></h2>
** Below is an exact copy. Style it accordingly
<h2><?php the_title(); ?></h2>
<div class="theContent">
<?php the_content(); ?>
</div><!-- End The Content -->
</div><!-- End Content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Hope this helps.
Thread Starter
atlemo
(@atlemo)
Oh, hold on; I though this post was put in the “NextGEN Gallery” part of the forum. I guess not?
Anyways, I think my best bet is looking in to the custom fields, that you mentioned.
Thanks again.
It may be, but it’s far easier if you just want two copies of the same title to do it the way described above. Good luck either way! Custom fields are definitely worth knowing.