|
|
|
Code เดียวกันแสดงไม่เหมือนกันคับ ไม่รู้เป็นเพราะอะไร |
|
|
|
|
|
|
|
ขออภัยคับลงรูปผิด
code ที่ลงเครื่องแล้ว มันชี้ไปยัง class menu
คลาสที่ถูกต้องมันต้องชี้ไป cnav_menu
|
|
|
|
|
Date :
2011-12-10 19:47:03 |
By :
แก้ไข |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูไฟล์ functions.php หน่อยครับ อยู่ใน folder เดียวกันครับ
|
|
|
|
|
Date :
2011-12-10 20:17:57 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ใช่แล้วมั้งครับ functions.php มันต้องเป็น code php สิครับ
|
|
|
|
|
Date :
2011-12-10 22:52:20 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โทษคับ ผิดอันขอรับ
Code (PHP)
<?php
include 'controlpanel.php';
include 'guide.php';
if ( function_exists('register_sidebar') )
register_sidebar(array(
'name' => 'Sidebar',
'before_widget' => '<li id="%1$s" class="sidebar %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="sidebartitle">',
'after_title' => '</h2>',
));
register_sidebar(array(
'name' => 'Footer',
'before_widget' => '<div class="footlinks">',
'after_widget' => '</div>',
'before_title' => '<h3 class="foothead">',
'after_title' => '</h3>',
));
/* ADD FEATURED THUMBNAIL */
if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
add_theme_support( 'post-thumbnails' );
}
/* GET THUMBNAIL URL */
function get_image_url(){
$image_id = get_post_thumbnail_id();
$image_url = wp_get_attachment_image_src($image_id,'large');
$image_url = $image_url[0];
echo $image_url;
}
// WP nav menu
if (function_exists('wp_nav_menu')) {
register_nav_menus(array('primary' => 'Primary Navigation'));
}
function zbench_page_menu_args( $args ) {
$args['show_home'] = true;
return $args;
}
add_filter( 'wp_page_menu_args', 'zbench_page_menu_args' );
add_filter('excerpt_length', 'my_excerpt_length');
function my_excerpt_length($length) {
return 70; }
function my_excerpt_more($more) {
return ' [..]';
}
add_filter('excerpt_more', 'my_excerpt_more');
function the_breadcrumb() {
if (!is_home()) {
echo '<a href="';
echo get_option('home');
echo '">';
bloginfo('name');
echo "</a> » ";
if (is_category() || is_single()) {
the_category('title_li=');
if (is_single()) {
echo " » ";
the_title();
}
} elseif (is_page()) {
echo the_title();
}
}
}
function dimox_breadcrumbs() {
$delimiter = '»';
$name = 'Home'; //text for the 'Home' link
$currentBefore = '<span class="current">';
$currentAfter = '</span>';
if ( !is_home() && !is_front_page() || is_paged() ) {
echo '<div id="crumbs">';
global $post;
$home = get_bloginfo('url');
echo '<a href="' . $home . '">' . $name . '</a> ' . $delimiter . ' ';
if ( is_category() ) {
global $wp_query;
$cat_obj = $wp_query->get_queried_object();
$thisCat = $cat_obj->term_id;
$thisCat = get_category($thisCat);
$parentCat = get_category($thisCat->parent);
if ($thisCat->parent != 0) echo(get_category_parents($parentCat, TRUE, ' ' . $delimiter . ' '));
echo $currentBefore . 'Archive by category '';
single_cat_title();
echo ''' . $currentAfter;
} elseif ( is_day() ) {
echo '<a href="' . get_year_link(get_the_time('Y')) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' ';
echo '<a href="' . get_month_link(get_the_time('Y'),get_the_time('m')) . '">' . get_the_time('F') . '</a> ' . $delimiter . ' ';
echo $currentBefore . get_the_time('d') . $currentAfter;
} elseif ( is_month() ) {
echo '<a href="' . get_year_link(get_the_time('Y')) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' ';
echo $currentBefore . get_the_time('F') . $currentAfter;
} elseif ( is_year() ) {
echo $currentBefore . get_the_time('Y') . $currentAfter;
} elseif ( is_single() && !is_attachment() ) {
$cat = get_the_category(); $cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo $currentBefore;
the_title();
echo $currentAfter;
} elseif ( is_attachment() ) {
$parent = get_post($post->post_parent);
$cat = get_the_category($parent->ID); $cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo '<a href="' . get_permalink($parent) . '">' . $parent->post_title . '</a> ' . $delimiter . ' ';
echo $currentBefore;
the_title();
echo $currentAfter;
} elseif ( is_page() && !$post->post_parent ) {
echo $currentBefore;
the_title();
echo $currentAfter;
} elseif ( is_page() && $post->post_parent ) {
$parent_id = $post->post_parent;
$breadcrumbs = array();
while ($parent_id) {
$page = get_page($parent_id);
$breadcrumbs[] = '<a href="' . get_permalink($page->ID) . '">' . get_the_title($page->ID) . '</a>';
$parent_id = $page->post_parent;
}
$breadcrumbs = array_reverse($breadcrumbs);
foreach ($breadcrumbs as $crumb) echo $crumb . ' ' . $delimiter . ' ';
echo $currentBefore;
the_title();
echo $currentAfter;
} elseif ( is_search() ) {
echo $currentBefore . 'Search results for '' . get_search_query() . ''' . $currentAfter;
} elseif ( is_tag() ) {
echo $currentBefore . 'Posts tagged '';
single_tag_title();
echo ''' . $currentAfter;
} elseif ( is_author() ) {
global $author;
$userdata = get_userdata($author);
echo $currentBefore . 'Articles posted by ' . $userdata->display_name . $currentAfter;
} elseif ( is_404() ) {
echo $currentBefore . 'Error 404' . $currentAfter;
}
if ( get_query_var('paged') ) {
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ' (';
echo __('Page') . ' ' . get_query_var('paged');
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ')';
}
echo '</div>';
}
}
?>
|
|
|
|
|
Date :
2011-12-11 02:37:17 |
By :
แก้ไข |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง Comment มันออกไปครับ ลบไปเลยก็ได้คับ Line 39-43
Code (PHP)
// WP nav menu
if (function_exists('wp_nav_menu')) {
register_nav_menus(array('primary' => 'Primary Navigation'));
}
|
|
|
|
|
Date :
2011-12-11 06:03:37 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เหมือนเดิมคับไม่มีอะไรเกิดขึ้น ลองเอา ไฟล์ them ไปลองดูไหมคับ
|
|
|
|
|
Date :
2011-12-11 06:56:20 |
By :
แก้ไข |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไปโหลดมาจากไหนครับ เด๋วผมไปโหลดมาลอง
|
|
|
|
|
Date :
2011-12-11 07:29:03 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สงสัยที่ผมบอกไปจะไม่ใช่ละ 555 เบลอ ลองอันนี้ดู
Code (PHP)
// WP nav menu
if (function_exists('wp_nav_menu')) {
register_nav_menus(array('primary' => 'ชื่อ theme'));
}
|
|
|
|
|
Date :
2011-12-11 07:46:17 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
http://www.mediafire.com/?3k0vjunxbp75ls1
อัพให้แล้วนะคับ ช่วยลองแก้ให้ดูทีนะคับ them wordpress คับผม
ขอบคุณอย่างยิ่งคับ แล้วผมจะติดตามอยู่เรื่อยๆนะคับ
|
|
|
|
|
Date :
2011-12-11 08:05:54 |
By :
แก้ไข |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ในไฟล์ header ครับ Line 63 container_class => menu_class
ใน ไฟล์ functions.php ไม่ต้องแก้อะไรครับ ผมดูผิด ขอโทษทีครับ
Code (PHP)
<div id="catmenus"><?php wp_nav_menu( array( 'menu_class' => 'cnav_menu', 'theme_location' => 'primary' ) ); ?></div>
|
ประวัติการแก้ไข 2011-12-11 14:14:46
|
|
|
|
Date :
2011-12-11 14:14:22 |
By :
kerb |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ แค่เปลี่ยนเป็น menu_class ก็ได้แล้วคับ สุดยอดจริงๆคับท่าน
ที่เหลือก็แค่โม แล้วอัพขึ้นเว็บ ขอบคุณจริงๆคับท่าน
|
|
|
|
|
Date :
2011-12-11 15:56:47 |
By :
แก้ไข |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|