luguokankan 发表于 2013-7-18 05:49:22

smallvally 发表于 2013-7-16 22:43 static/image/common/back.gif
kankan大师,又来请教你一个难题了,
我最近有个站是个下载站,需要列出资源的 大小,型号,以及每篇都会有 ...

http://wordpress.org/plugins/advanced-custom-fields/

用这个插件. 下面的链接教你怎么在主题里显示.

http://www.advancedcustomfields.com/resources/getting-started/displaying-custom-field-values-in-your-theme/

smallvally 发表于 2013-7-18 12:24:11

零PHP基础,看了下,貌似暂时驾驭不了啊,有时间再仔细琢磨下。感谢!

weijinmen 发表于 2013-7-24 14:19:01

楼主牛人 加好人一个
希望楼主不吝赐教

frankwng1985 发表于 2013-8-23 17:49:36

请问版主,XML-RPC的时候如果分类不存在能不能自动创建分类?能否给下相应的函数

luguokankan 发表于 2013-8-24 12:59:29

frankwng1985 发表于 2013-8-23 17:49 static/image/common/back.gif
请问版主,XML-RPC的时候如果分类不存在能不能自动创建分类?能否给下相应的函数
...

wp-includes/class-wp-xmlrpc-server.php

wp_newPost函数.

看这个参数 terms_names - array, with taxonomy names as keys and arrays of term names as values

跟踪_insert_post函数, 发现会自动创建不存在的category.

好久没研究xmlrpc了, 老版本wp是不支持的.我也不知道什么时候引进这个terms_names参数的,你自己研究下




fnzxl 发表于 2013-10-10 21:36:10

,我做的一个站,有个模板,为什么首页不显示,是不是出现什么问题的呢?我网站是:http://www.healthprotections.com

首页代码是:<?php get_header(); ?>

<!-- content -->
<div class="content">
       
        <?php if ( !function_exists('dynamic_sidebar')
        || !dynamic_sidebar('Ad Position 2') ) : ?>
        <?php endif; ?>
   
    <!-- leftcontent -->
    <div class="<?php if ( substr(of_get_option('site_layout'),-1) == 'l' ) { echo 'leftcontent-l'; } else { echo 'leftcontent';}?>">
               
                <?php if ( !function_exists('dynamic_sidebar')
                || !dynamic_sidebar('Ad Position 3') ) : ?>
                <?php endif; ?>
      
      <?php if ( of_get_option('homeheading') <> "" ) { ?>
      <h1 class="postmargin"><?php echo of_get_option('homeheading'); ?></h1>
      <?php } ?>

      <?php if ( of_get_option('homeintro') <> "" ) { ?>
      <div class="intro">
                       
                        <?php if ( !function_exists('dynamic_sidebar')
                        || !dynamic_sidebar('Ad Position 5') ) : ?>
                        <?php endif; ?>
                       
                        <?php if ( !function_exists('dynamic_sidebar')
                        || !dynamic_sidebar('Ad Position 6') ) : ?>
                        <?php endif; ?>
                       
              <?php if ( of_get_option('intro_image') <> "" ) { ?><?php if ( of_get_option('intro_image_url') <> "" ) { ?><a href="<?php echo of_get_option('intro_image_url'); ?>" rel="nofollow" target="_blank"><?php } ?><img src="<?php echo of_get_option('intro_image'); ?>" align="left" class="introimage" alt="<?php if(of_get_option('intro_image_alt')){ ?><?php echo of_get_option('intro_image_alt'); ?><?php } else { ?><?php bloginfo('name'); ?><?php } ?>"><?php if ( of_get_option('intro_image_url') <> "" ) { ?></a><?php } ?><?php } ?>
                        <?php echo stripslashes(of_get_option('homeintro')); ?>
      </div>
      <?php } ?>
               
                <?php if ( !function_exists('dynamic_sidebar')
                || !dynamic_sidebar('Ad Position 7') ) : ?>
                <?php endif; ?>
               
                <?php if ( of_get_option('show_home_posts')) { ?>
               
                <?php if ( of_get_option('categories_home') <> "" || of_get_option('home_posts') ) { ?>
                        <?php $cattoinclude = of_get_option('categories_home'); ?>
                        <?php $homepostnumber = of_get_option('home_posts'); ?>
                <?php query_posts('cat='.$cattoinclude.'&showposts='.$homepostnumber); ?>
                <?php } ?>
      
                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
             
            <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'med-thumb' ); ?>
            <?php if ($image): ?>
                                       
                <!-- post -->
                <div class="post">
                                       
                  <?php if ( of_get_option('home_excerpt')) { ?>
                               
                        <h2<?php if(!of_get_option('showmeta')){ ?> class="postmargin"<?php } ?>><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                                                <?php if ( of_get_option('showmeta')) { ?>
                        <div class="post_meta">
                            <ul>
                              <li><?php the_time('M d, Y'); ?></li>
                              <li>|</li>
                              <li><?php the_category(', '); ?></li>
                              <li>|</li>
                              <li><?php comments_popup_link('Comments', '1 Comment', '% Comments'); ?></li>
                            </ul>
                        </div>
                        <?php } ?>
                        <div class="postleft">
                            <a href="<?php the_permalink(); ?>"><img src="<?php echo $image; ?>" width="150" height="150" border="0" title="<?php the_title(); ?>" alt="<?php the_title(); ?>" /></a>
                        </div>
                        
                        <div class="postright">
                            <p><?php excerpt('200'); ?> <a href="<?php the_permalink(); ?>">Read More »</a></p>
                        </div>
                        
                        <div class="clear"></div>
                  
                  <?php } else { ?>
                         
                        <h2<?php if(!of_get_option('showmeta')){ ?> class="postmargin"<?php } ?>><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                                                <?php if ( of_get_option('showmeta')) { ?>
                                                <div class="post_meta">
                                                        <ul>
                                                                <li><?php the_time('M d, Y'); ?></li>
                                                                <li>|</li>
                                                                <li><?php the_category(', '); ?></li>
                                                                <li>|</li>
                                                                <li><?php comments_popup_link('Comments', '1 Comment', '% Comments'); ?></li>
                                                        </ul>
                                                </div>
                                                <?php } ?>
                        
                          <p><a href="<?php the_permalink(); ?>"><img src="<?php echo $image; ?>" width="150" height="150" border="0" title="<?php the_title(); ?>" alt="<?php the_title(); ?>" align="left" class="fullconentimg" /></a><?php the_content(); ?></p>
                        
                        <div class="clear"></div>
                  
                  <?php } ?>
                                                             
                </div>
                <!-- end post -->
            
            <?php else: ?>
               
                <!-- post -->
                <div class="post">
                  
                                        <h2<?php if(!of_get_option('showmeta')){ ?> class="postmargin"<?php } ?>><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                                        <?php if ( of_get_option('showmeta')) { ?>
                                        <div class="post_meta">
                                                <ul>
                                                        <li><?php the_time('M d, Y'); ?></li>
                                                        <li>|</li>
                                                        <li><?php the_category(', '); ?></li>
                                                        <li>|</li>
                                                        <li><?php comments_popup_link('Comments', '1 Comment', '% Comments'); ?></li>
                                                </ul>
                                        </div>
                                        <?php } ?>
                  <?php if ( of_get_option('home_excerpt')) { ?>
                                        <p><?php excerpt('300'); ?> <a href="<?php the_permalink(); ?>">Read More »</a></p>
                                        <?php } else { ?>
                                        <p><?php the_content(); ?></p>
                                        <?php } ?>
               
                </div>
                <!-- end post -->
               
            <?php endif; ?>
               
                <?php endwhile; endif; ?>
               
                <?php } ?>
               
                <?php if ( !function_exists('dynamic_sidebar')
                || !dynamic_sidebar('Ad Position 8') ) : ?>
                <?php endif; ?>
   
    </div>
    <!-- end leftcontent -->
       
        <?php if(of_get_option('site_layout') == '3c-l' || of_get_option('site_layout') == '3c-r'){ ?>
        <div class="midcontent">
                <?php if ( !function_exists('dynamic_sidebar')
                || !dynamic_sidebar('Middle Column') ) : ?>
                <?php endif; ?>
        </div>
        <?php } ?>
   
        <?php get_footer(); ?>这个代码是不是有什么问题?应该怎么修改的呢?

luguokankan 发表于 2013-10-12 11:08:36

fnzxl 发表于 2013-10-10 21:36 static/image/common/back.gif
,我做的一个站,有个模板,为什么首页不显示,是不是出现什么问题的呢?我网站是:http://www.healthprote ...

额,这个帖子我都不关注了.

空白应该是主题有些错误.

http://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG


加define('WP_DEBUG', true); 到 wp-config.php 看看


页: 1 2 3 4 5 [6]
查看完整版本: wordpress专业解决问题