Probleme gelöst!
Erstmal die Eckdaten:
Version: WP 3.2.1
Theme: Flashglobeblue 1.0
URL: DJ-Blog.com
Ich vermute mal, dass meine gewünschten Einstellungen nicht in Wordpress sondern im Theme direkt geändert werden müssen.
1. Problem: Anordnung/Reihenfolge der TOP Navigation.
Screenshot: http://img849.imageshack.us/img849/2436/screen1zd.png
Die Reihenfolge der linke Navigation habe ich durch "Page Attributes/Seiteneinstellungen" auf der jeweiligen Seite eingestellt. Nach dieser Anordnung soll auch die TOP Navigation geordnet werden.
Ich habe leider nicht gefunden wo im Theme sourcecode ich dies einstellen kann. Vielleicht findet ja jemand mit mehr PHP-Erfahrung die relevanten stellen ;)
2. Problem: Kürzung von Beiträgen
Beiträge werden automatisch gekürzt wie in folgendem Screenshot zu sehen ist.
Screenshot: http://img191.imageshack.us/img191/6744/screen2aq.png
Die gesamten Artikel inkl. "Soundcloud-Tag"/"Youtube-Tag" sollen wie bei der "Einzelansicht" angezeigt werden: http://img263.imageshack.us/img263/3064/screen2br.png
Vielen Dank für euere Hilfe!
Theme Quellcodes:
wp-content\themes\flashglobeblue\config.ini
[theme]
name = "Flashglobeblue";
shortname = "DWT";
build = "2.5.0.29918";
[menu]
homeCaption = "Home";
showHome = true;
topItemBegin = "<span class='l'></span><span class='r'></span><span class='t'>";
topItemEnd = "</span>";
showSubitems = true;
source = "Pages";
[vmenu]
showSubitems = false;
source = "Categories";
[metadata]
thumbnail_auto = false;
thumbnail_width = 100;
thumbnail_height = 100;
excerpt_auto = false;
excerpt_min_remainder = 5;
excerpt_words = 40;
excerpt_allowed_tags = "a,img,abbr,blockquote,b,cite,pre,code,em,label,i,p,span,strong,ul,ol,li,"
title = false;
separator = " | ";
header = "date,author,edit";
footer = "category,tag,comments";
date = "<img class='art-metadata-icon' src='[template_url]/images/postdateicon.png' width='18' height='18' alt='' />";
author = "";
category = "<img class='art-metadata-icon' src='[template_url]/images/postcategoryicon.png' width='18' height='18' alt='' />";
tag = "<img class='art-metadata-icon' src='[template_url]/images/posttagicon.png' width='18' height='18' alt='' />";
comments = "<img class='art-metadata-icon' src='[template_url]/images/postcommentsicon.png' width='18' height='18' alt='' />";
edit = "<img class='art-metadata-icon' src='[template_url]/images/postediticon.png' width='20' height='20' alt='' />";
[sidebars]
default = "categories,blogroll";
secondary = "search,archive";
top = "";
bottom = "";
footer = "";
[footer]
defaultText = "";
rss_link = "<a href='[rss_url]' class='art-rss-tag-icon' title='[rss_title]'></a>"
rss_show = true;
Alles anzeigen
wp-content\themes\flashglobeblue\header.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta name="DC.creator" content="dwt" />
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
<title><?php echo art_get_page_title() ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url') ?>" type="text/css" media="screen" />
<!--[if IE 6]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie6.css" type="text/css" media="screen" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie7.css" type="text/css" media="screen" /><![endif]-->
<?php if(WP_VERSION < 3.0): ?>
<link rel="alternate" type="application/rss+xml" title="<?php printf(__('%s RSS Feed', 'kubrick')); ?>" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php printf(__('%s Atom Feed', 'kubrick')); ?>" href="<?php bloginfo('atom_url'); ?>" />
<?php endif; ?>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if (is_file(TEMPLATEPATH .'/favicon.ico')):?>
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
<?php endif; ?>
<?php wp_head(); ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/script.js"></script>
</head>
<body>
<?php
ob_start();
Alles anzeigen