@staff
フォーラムへの返信
-
フォーラム: 使い方全般
返信が含まれるトピック: Codiumというテーマの「HOME」を消したいのですが・・フォーラム: 使い方全般
返信が含まれるトピック: Codiumというテーマの「HOME」を消したいのですが・・>>megane9988様
<a href=”<?php echo home_url( ’/’ ); ?>” title=”home”class=”top_parent”><?phpprintf(__(’home’, ’codium’)) ?></a>
</li>
ごめんなさい
消したのはこういう記述部分です。フォーラム: 使い方全般
返信が含まれるトピック: Codiumというテーマの「HOME」を消したいのですが・・>header.php に該当の記述があるようです。
” title=”home” class=”top_parent”><?php printf(__(‘HOME’, ‘codium’)) ?>
以上を消したらHOMEが現われなくなりましたけど、これで宜しいのでしょうか?
ダメ出しがあったらお願いします。フォーラム: 使い方全般
返信が含まれるトピック: Codiumというテーマの「HOME」を消したいのですが・・フォーラム: 使い方全般
返信が含まれるトピック: Codiumというテーマの「HOME」を消したいのですが・・上の投稿は的外れのようでした。
すべて消してプレビューをしてみても変化はありませんでした。では
http://ja.forums.wordpress.org/topic/5913?replies=3
に書かれているものとは別物なのでしょうかね。何か手がかりはないでしょうか・・・
引き続きお願いします。
フォーラム: 使い方全般
返信が含まれるトピック: Codiumというテーマの「HOME」を消したいのですが・・http://ja.forums.wordpress.org/topic/5913?replies=3
を参考に以下から同じ条件のものを探していたけど、まったくわかりません。
Codiumというテーマは特別な何かなんでしょうか?
<?php /* This file is part of Codium. Hack and customize by henri labarre and based on the marvelous sandbox theme Codium is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. */ // This theme allows users to set a custom background if ( function_exists( 'get_custom_header' ) ) { add_theme_support( 'custom-background' ); } else { // Compat: Versions of WordPress prior to 3.4. add_custom_background(); } // This theme allows users to set a custom header image //custom header for 3.4 and compatability for prior version $args = array( 'width' => 980, 'height' => 250, 'default-image' => '', 'default-text-color' => 'FFFFFF', 'wp-head-callback' => 'codium_header_style', 'admin-head-callback' => 'codium_admin_header_style', ); $args = apply_filters( 'codium_custom_header', $args ); if ( function_exists( 'get_custom_header' ) ) { add_theme_support( 'custom-header', $args ); } else { // Compat: Versions of WordPress prior to 3.4. define('HEADER_TEXTCOLOR', 'FFFFFF'); define('HEADER_IMAGE_WIDTH', 980); // use width and height appropriate for your theme define('HEADER_IMAGE_HEIGHT', 250); add_custom_image_header( $args['wp-head-callback'], $args['admin-head-callback'] ); } // gets included in the site header function codium_header_style() { if (get_header_image() != ''){ ?><style type="text/css"> div#header { background: url(<?php header_image(); ?>); height :230px; -moz-border-radius-topleft:6px;border-top-left-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px; } #access{background:#f1f2f4;display:block;float:left;width:980px;margin:0 auto;text-transform: uppercase;-moz-border-radius-topleft:0px;border-top-left-radius:0px;-moz-border-radius-topright:0px;border-top-right-radius:0px;} <?php if ( 'blank' == get_header_textcolor() ) { ?> h1.blogtitle,.description { display: none; } <?php } else { ?> h1.blogtitle a,.description { color:#<?php header_textcolor() ?>; } <?php } ?> </style><?php } } // gets included in the admin header function codium_admin_header_style() { ?><style type="text/css"> #headimg { width: <?php echo HEADER_IMAGE_WIDTH; ?>px; height: <?php echo HEADER_IMAGE_HEIGHT; ?>px; } </style><?php } // Post thumbnails support for post if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9 add_theme_support( 'post-thumbnails', array( 'post' ) ); // Add it for posts set_post_thumbnail_size( 220, 165, true ); // Normal post thumbnails } // Set the content width based on the theme's design and stylesheet. if ( ! isset( $content_width ) ) $content_width = 620; //feed add_theme_support('automatic-feed-links'); // Make theme available for translation // Translations can be filed in the /languages/ directory load_theme_textdomain( 'codium', TEMPLATEPATH . '/languages' ); $locale = get_locale(); $locale_file = TEMPLATEPATH . "/languages/$locale.php"; if ( is_readable( $locale_file ) ) require_once( $locale_file ); // Generates semantic classes for BODY and POST element function codium_category_id_class($classes) { global $post; if (!is_404() && isset($post)) foreach((get_the_category($post->ID)) as $category) $classes[] = $category->category_nicename; return $classes; } add_filter('body_class', 'codium_category_id_class'); function codium_tag_id_class($classes) { global $post; if (!is_404() && isset($post)) if ( $tags = get_the_tags() ) foreach ( $tags as $tag ) $classes[] = 'tag-' . $tag->slug; return $classes; } add_filter('body_class', 'codium_tag_id_class'); function codium_author_id_class($classes) { global $post; if (!is_404() && isset($post)) $classes[] = 'author-' . sanitize_title_with_dashes(strtolower(get_the_author_meta('login'))); return $classes; } add_filter('post_class', 'codium_author_id_class'); // Generates time- and date-based classes for BODY, post DIVs, and comment LIs; relative to GMT (UTC) function codium_date_classes( $t, &$c, $p = '' ) { $t = $t + ( get_option('gmt_offset') * 3600 ); $c[] = $p . 'y' . gmdate( 'Y', $t ); // Year $c[] = $p . 'm' . gmdate( 'm', $t ); // Month $c[] = $p . 'd' . gmdate( 'd', $t ); // Day $c[] = $p . 'h' . gmdate( 'H', $t ); // Hour } // For category lists on category archives: Returns other categories except the current one (redundant) function codium_cats_meow($glue) { $current_cat = single_cat_title( '', false ); $separator = "\n"; $cats = explode( $separator, get_the_category_list($separator) ); foreach ( $cats as $i => $str ) { if ( strstr( $str, ">$current_cat<" ) ) { unset($cats[$i]); break; } } if ( empty($cats) ) return false; return trim(join( $glue, $cats )); } // For tag lists on tag archives: Returns other tags except the current one (redundant) function codium_tag_ur_it($glue) { $current_tag = single_tag_title( '', '', false ); $separator = "\n"; $tags = explode( $separator, get_the_tag_list( "", "$separator", "" ) ); foreach ( $tags as $i => $str ) { if ( strstr( $str, ">$current_tag<" ) ) { unset($tags[$i]); break; } } if ( empty($tags) ) return false; return trim(join( $glue, $tags )); } if ( ! function_exists( 'codium_posted_on' ) ) : // data before post function codium_posted_on() { printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s.', 'codium' ), 'meta-prep meta-prep-author', sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), sprintf( '<span class="author vcard"><a href="%1$s" title="%2$s" rel="author">%3$s</a></span>', get_author_posts_url( get_the_author_meta( 'ID' ) ), sprintf( esc_attr__( 'View all posts by %s', 'codium' ), get_the_author() ), get_the_author() ) ); } endif; if ( ! function_exists( 'codium_posted_in' ) ) : // data after post function codium_posted_in() { // Retrieves tag list of current post, separated by commas. $tag_list = get_the_tag_list( '', ', ' ); if ( $tag_list ) { $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'codium' ); } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'codium' ); } else { $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'codium' ); } // Prints the string, replacing the placeholders. printf( $posted_in, get_the_category_list( ', ' ), $tag_list, get_permalink(), the_title_attribute( 'echo=0' ) ); } endif; // Widgets plugin: intializes the plugin after the widgets above have passed snuff function codium_widgets_init() { register_sidebar(array( 'name' => 'SidebarTop', 'description' => 'Top sidebar', 'before_widget' => "\n\t\t\t" . '<li id="%1$s" class="widget %2$s"><div class="widgetblock">', 'after_widget' => "\n\t\t\t</div>\n", 'before_title' => "\n\t\t\t\t". '<div class="widgettitleb"><h3 class="widgettitle">', 'after_title' => "</h3></div>\n" .'' )); register_sidebar(array( 'name' => 'SidebarBottom', 'description' => 'Bottom sidebar', 'before_widget' => "\n\t\t\t" . '<li id="%1$s" class="widget %2$s"><div class="widgetblock">', 'after_widget' => "\n\t\t\t</div>\n", 'before_title' => "\n\t\t\t\t". '<div class="widgettitleb"><h3 class="widgettitle">', 'after_title' => "</h3></div>\n" .'' )); } // Changes default [...] in excerpt to a real link function codium_excerpt_more($more) { global $post; $readmore = __(' read more <span class="meta-nav">»</span>', 'codium' ); return ' <a>ID) . '">' . $readmore . '</a>'; } add_filter('excerpt_more', 'codium_excerpt_more'); // Runs our code at the end to check that everything needed has loaded add_action( 'init', 'codium_widgets_init' ); // Adds filters for the description/meta content in archives.php add_filter( 'archive_meta', 'wptexturize' ); add_filter( 'archive_meta', 'convert_smilies' ); add_filter( 'archive_meta', 'convert_chars' ); add_filter( 'archive_meta', 'wpautop' ); // Remember: the codium is for play. // footer link add_action('wp_footer', 'footer_link'); function footer_link() { if ( is_front_page() && !is_paged()) { $anchorthemeowner='<a href="http://codium.code-2-reduction.fr/" title="code reduction">code reduction</a>'; $textfooter = __('A nice revamping of Sandbox theme for <a href="http://www.wordpress.org">WordPress</a> by ', 'codium' ); $content = '<div id="footerlink"><div class="center"><p>' .$textfooter. $anchorthemeowner.'</p></div><div class="clear"></div></div></div>'; echo $content; } else { $textfooter = __('A nice revamping of Sandbox theme for <a href="http://www.wordpress.org">WordPress</a>', 'codium' ); $content = '<div id="footerlink"><div class="center"><p>' .$textfooter.'</p></div><div class="clear"></div></div></div>'; echo $content; } } //Remove <p> in excerpt function codium_strip_para_tags ($content) { if ( is_home() && ($paged < 2 )) { $content = str_replace( '<p>', '', $content ); $content = str_replace( '</p>', '', $content ); return $content; } } if ( ! function_exists( 'codium_comment' ) ) : //Comment function function codium_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case '' : ?> <li id="comment-<?php comment_ID() ?>" <?php comment_class(); ?>> <div class="comment-author vcard"> <?php echo get_avatar( $comment, 48 ); ?> <?php printf(__('<div class="fn">%s</div> '), get_comment_author_link()) ?> </div> <?php if ($comment->comment_approved == '0') : ?> <em><?php _e('Your comment is in moderation.', 'codium') ?></em> <?php endif; ?> <div class="comment-meta"><?php printf(__('%1$s - %2$s <span class="meta-sep">|</span> <a href="%3$s" title="Permalink to this comment">Permalink</a>', 'codium'), get_comment_date(), get_comment_time(), '#comment-' . get_comment_ID() ); edit_comment_link(__('Edit', 'codium'), ' <span class="meta-sep">|</span> <span class="edit-link">', '</span>'); ?></div> <div class="clear"></div> <div class="comment-body"><?php comment_text(); ?></div> <div class="reply"> <?php comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?> </div> <?php break; case 'pingback' : case 'trackback' : ?> <li class="post pingback"> <p><?php _e( 'Pingback:', 'codium' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( 'Edit', 'codium' ), ' ' ); ?></p> <?php break; endswitch; } endif; //custom menu support add_action( 'init', 'codium_register_my_menu' ); function codium_register_my_menu() { register_nav_menu( 'primary-menu', __( 'Primary Menu', 'codium' ) ); } //font for the Title function codium_google_font() { ?> <link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css' /> <?php } add_action('wp_head', 'codium_google_font'); ?>
フォーラム: インストール
返信が含まれるトピック: サイトが見られなくなってしまいました(接続パスワードをうっかり変更MitsuoSatoh様
おはようございます。
>’*****’の 部分は既に新しいパスワードに変わっていました。
私自身が対象ディレクトリでなく類似ディレクトリを触っていたようです。対象ディレクトリを開いて、ご指摘の通り作業を行なった結果、すぐに解決しました。
適切なご対応に感謝いたします。
本当に有難うございました。
フォーラム: インストール
返信が含まれるトピック: サイトが見られなくなってしまいました(接続パスワードをうっかり変更>まなにか情報がありましたらよろしくお願いします。
「た」が抜けていました。ま「た」なにか情報がありましたらよろしくお願いします。
大変失礼しました。
フォーラム: インストール
返信が含まれるトピック: サイトが見られなくなってしまいました(接続パスワードをうっかり変更MitsuoSatoh様
有難うございます。
そのファイルを見たところ
/** MySQL データベースのパスワード */
define(‘DB_PASSWORD’, ‘*****’);‘*****’の 部分は既に新しいパスワードに変わっていました。
(※再アップしましたが依然と表示されません)まなにか情報がありましたらよろしくお願いします。
有難うございました。
フォーラム: インストール
返信が含まれるトピック: サイトが見られなくなってしまいました(接続パスワードをうっかり変更