更有效的方式来组织各州的自定义Wordpress帖子

时间:2013-12-09 21:35:33

标签: php mysql wordpress performance

好的,我正在使用Types插件和Posts 2 Posts插件来构建一个网站,该网站有一个名为'opening'的自定义帖子类型,其中包含有关特定职位空缺及其相关顾问的信息。我需要能够在一个由州(阿拉巴马州,阿拉斯加州等)组织的页面上显示这些帖子。我有一个解决方案,但效率似乎非常低。

我不会太担心它,但是它被托管在资源非常有限的服务器和我的解决方案上,虽然它在我的开发服务器上工作得很好,但却在实时服务器上超时。

这是我为每个州使用的代码:

    <!-- -----------------------Alabama ------------------------ -->

<!-- Pulls the list of openings -->
<?php $loop = new WP_Query( array( 'post_type' => 'current-opening', 'meta_key' => 'wpcf-state', 'meta_value' => 'alabama', 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC' ) ); ?>  

<a name="alabama">
<?php $count = 1; ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
       <?php $cat = types_render_field( "state" );
       if( $cat == 'Alabama' ) : ?>
            <?php if( $count == 1 ){ echo "<h2>Alabama</h2>"; ++$count; ++$alabama; echo "<hr />"; } ?>

        <ul>
        <li><h3 class="entry-title"><?php the_title( ); ?></li>
        <li><?php echo(types_render_field( "position", array("show_name" => "true") )); ?></li>
        <li><?php echo(types_render_field( "enrollment", array( "show_name" => "true" ) )); ?></li>

        <!-- Display the connected Consultant(s) -->
        <?php
        // Find connected Consultants
        $connected = new WP_Query( array(
        'connected_type' => 'consultant_to_opening',
        'connected_items' => $post,
        'nopaging' => true
        ) );

        // Display connected Consultants
        p2p_list_posts( $connected, array(
            'before_list' => '<li>Consultant(s): ',
            'separator' => ', ',
            'after_list'  => '</li>',
        ) );
        ?>

        <li><?php echo(types_render_field( "school-district-website", array( "show_name" => "true", "no_protocol" => "true" ) )); ?></li>

        <?php $deadline = types_render_field( "application-deadline", array( "show_name" => "true", "style" => "text" ) );
        if( $deadline ) : ?>
            <li><?php echo $deadline; ?></li>
        <?php endif; ?>

        <?php $app_word = types_render_field( "application-form-word", array( "show_name" => "true", "link" => "true", "title" => "Download" ) );
        if( $app_word ) : ?>
            <li><?php echo $app_word; ?></li>
        <?php endif; ?>

        <?php $app_pdf = types_render_field( "application-form-pdf", array( "show_name" => "true", "link" => "true", "title" => "Download" ) );
        if ( $app_pdf ) : ?>
            <li><?php echo $app_pdf; ?></li>
        <?php endif; ?>

        <?php $app_link = types_render_field( "application-link", array( "show_name" => "true", "link" => "true", "title" => "Click Here" ) );
        if ( $app_link ) : ?>
            <li><?php echo $app_link; ?></li>
        <?php endif; ?>

        <?php $vacancy = types_render_field( "announcement-of-vacancy", array( "show_name" => "true", "link" => "true", "title" => "Download" ) );
        if( $vacancy ) : ?>
            <li><?php echo $vacancy; ?></li>
        <?php endif; ?>

        <?php $notes = types_render_field( "notes", array( "show_name" => "true" ) );
        if ( $notes ) : ?>
            <li><?php echo $notes; ?></li>
        <?php endif; ?>
        </ul>
       <?php endif; ?>
    <?php endwhile; ?>

<!-- -----------------------/Alabama ------------------------ -->

这里的问题是我正在查询数据库以获取与该状态相关的开口,然后循环遍历每个结果以显示其每个字段,然后查询数据库以查找其相关的顾问。如果我只为一个州做这件事,那不是很多工作但是我必须为所有50个州和华盛顿特区做这件事并将它们全部显示在一页上。

我能做些什么来提高效率吗?

1 个答案:

答案 0 :(得分:0)

似乎types_render_field()功能效率不高。我通过使用内置的Wordpress功能替换这些功能来显示自定义字段,帮助了我自己:get_post_meta()