Hallo Community,
Ich habe da ein problem, undzwar habe ich über nacht an meinem ContentLayout gebastelt was jetzt über JS läuft ( siehe HIER ) wie Ihr sehen könnt habe ich mir da ein schicken Toggle eingebaut.
Nun kommt aber mein problem, nach dem Tittel wollte ich noch eine Spalte einbauen: "Genre: House" ( will es aus Kategorie auslesen lassen )
Nach "Genre" wollte ich dann über "benutzerdefiniertes Feld" noch die Spallte "Download: << Hier >>" der dann zu Musikload oder Itunes linkt jenachdem was für eine URL im Wert steht.
So sollte es zum schluss Aussehen:[Blockierte Grafik: http://load-your-script.org/werbung/toggle.gif]
Mein problem an der sache ist das Genre und Download ummer unter einander stehen und ich bekomm es nicht auf die rechte seite.
hier nich der code meiner index.php
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<div id="content" class="narrowcolumn" role="main">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div title=<?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h2 class="trigger">
<a rel="nofollow" href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>
<div class="toggle_container">
<div class="block">
<div class="entry">
<?php the_content(__('Read the rest of this entry »', 'kubrick')); ?>
</div>
<p class="postmetadata"><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'kubrick'), __('1 Comment »', 'kubrick'), __('% Comments »', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p>
</div>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')) ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')) ?></div>
</div>
<?php else : ?>
<h2 class="center"><?php _e('Not Found', 'kubrick'); ?></h2>
<p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'kubrick'); ?></p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen
Ich hoffe das ihr mir etwas weiterhelfen könnt, und bedanke mich schon einmal für jeden hilfreichen tip im vorraus
Gruss
C0dex