Ok vielen Dank für deine Hilfe :)
Ich werd schauen was ich machen kann.
Beiträge von Dr.Geek
-
-
Leider finde ich es nicht in der functions.php.
Die functions.php sieht so aus:
PHP
Alles anzeigen<?php // Exit if accessed directly if ( !defined( 'ABSPATH' ) ) { exit; } /** * * WARNING: Please do not edit this file in any way * * load the theme function files */ $template_directory = get_template_directory(); require( $template_directory . '/core/includes/functions.php' ); require( $template_directory . '/core/includes/functions-update.php' ); require( $template_directory . '/core/includes/functions-sidebar.php' ); require( $template_directory . '/core/includes/functions-install.php' ); require( $template_directory . '/core/includes/functions-admin.php' ); require( $template_directory . '/core/includes/functions-extras.php' ); require( $template_directory . '/core/includes/functions-extentions.php' ); require( $template_directory . '/core/includes/theme-options/theme-options.php' ); require( $template_directory . '/core/includes/post-custom-meta.php' ); require( $template_directory . '/core/includes/tha-theme-hooks.php' ); require( $template_directory . '/core/includes/hooks.php' ); require( $template_directory . '/core/includes/version.php' ); require( $template_directory . '/core/includes/upsell/theme-upsell.php' ); require( $template_directory . '/core/includes/customizer.php' ); // Return value of the supplied responsive free theme option. function responsive_free_get_option( $option, $default = false ) { global $responsive_options; // If the option is set then return it's value, otherwise return false. if ( isset( $responsive_options[$option] ) ) { return $responsive_options[$option]; } return $default; } -
Hallo mistral2,
online geht es gut mit http://www.smushit.com/ysmush.it/ oder im WP mit dem Plugin https://wordpress.org/plugins/optimus/
Danke für den Tip. Hab mir soeben Optimus auf meinem Fotoblog installiert :)
-
Ja den meine ich.
Kenne mich mit PHP nicht so gut aus. In der Datei header.php steht:
<title><?php wp_title( '|', true, 'right' ); ?></title>An anderen Stellen das:
<title><?php wp_title( '|', true, 'right' ); ?></title>Und das:
title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); -
Hallo zusammen!
Ich habe ein kleines Problem. Meine wordpress zeigt als Seitentitel immer den Titel des letzten Beitrags im Blog an. Ich habe es mitlerweile so hinbekommen das wenigstens da hinter der richtige Seitentitel angezeigt wird.
Hat jemand eine Idee wo ich was in Wordpress einstellen muss sodas nur der Seitentitel angezeigt wird?Danke & liebe Grüße
Der Doktor