在Wordpress中将图像用作自定义字段

时间:2013-02-20 02:01:27

标签: php wordpress custom-fields

有人可以帮我改变这个主题,从每个帖子的自定义字段“侧边栏”中拉出侧边栏中的图片,而不是像现在这样的特色图片。框架和链接可以保持不变,我只需要图像来自自定义字段而不是特色图像。

        <div id="content" class="city_page">
        <div id="inner_sidebar">
            <?php
                $mypages = get_pages( array( 'child_of' => 9, 'sort_column' => 'post_title', 'sort_order' => 'asc' ) );

                foreach( $mypages as $page ) {      
                    $content = $page->post_content;
                    if ( ! $content ) // Check for empty page
                        continue;

                    $content = apply_filters( 'the_content', $content );
                ?>
                <div class="item city">
                    <?php echo get_the_post_thumbnail($page->ID, 'thumbnail'); ?>
                    <a href="<?php echo get_page_link( $page->ID ); ?>"><img class="frame" src="<?php bloginfo('url'); ?>/images/city_image_frame_thumb.png" alt="" /></a>
                    <a class="title" href="<?php echo get_page_link( $page->ID ); ?>"><?php echo $page->post_title; ?></a>
                </div>
                <?php
                }   
            ?>
        </div>

2 个答案:

答案 0 :(得分:1)

只要您在“侧边栏”自定义字段中放置图片网址,就可以使用以下内容替换整个img src。

<?php echo get_post_meta($post->ID, 'sidebar', true) ?>

您可以在此处详细了解缩略图网址的get_post_meta:http://codex.wordpress.org/Function_Reference/get_post_meta#Retrieve_a_Custom_Field_Thumbnail_Url

希望有所帮助!

答案 1 :(得分:0)

就个人而言,我是Advanced Custom Fields插件的忠实粉丝。它是我在新的WordPress安装中安装的第一个插件之一。它非常灵活,并且具有用于获取和设置自定义字段的简单API。

看看吧!