0

我正在使用 Ben 的 fishpig 代码,它将相关的帖子摘录放在首页:http: //fishpig.co.uk/magento/wordpress-integration/services/recent-posts-block/#code

但是,我已经设法将此代码用于首页和自定义选项卡 CMS 块中,但我无法弄清楚如何让特色图像与摘录一起显示。

前页 XML

**
* Display a list of your 5 most recent WordPress Posts
* Also include post excerpt, date and comment count
*
* {{block type="wordpress/sidebar_widget_posts" name="wordpress.widget.recent_posts"     post_count="5" title="Latest Posts" excerpt="on" excerpt_length="1" date="on"   comment_num="on" template="wordpress/sidebar/widget/categoryposts.phtml"}}
*/
-->
<reference name="head">
<action method="addItem"><type>skin_css</type><name>css/custom.css</name></action>
</reference> 

<reference name="content">
    <block type="wordpress/sidebar_widget_posts" name="wordpress.widget.recent_posts" as="recent_posts" template="wordpress/sidebar/widget/categoryposts.phtml">
        <action method="setTitle"><title>Latest Posts</title></action>
        <action method="setPostCount"><post_count>5</post_count></action>
        <action method="setExcerpt"><display>on</display></action>
**HELP**--><action method="setFeaturedImage"><display>on</display></action>
        <action method="setDate"><date>on</date></action>
        <action method="setCommentNum"><comments>on</comments></action>
    </block>
</reference>

这是自定义选项卡的代码:

{{block type="wordpress/sidebar_widget_posts" name="wordpress.widget.recent_posts" post_count="5" category_id="19" title="Latest Posts" excerpt="on" excerpt_length="1" date="on" comment_num="on" template="wordpress/sidebar/widget/categoryposts.phtml"}}

谢谢!

4

6 回答 6

1

要添加图像,您需要修改最近的帖子模板。以下代码说明了如何显示 Post 模型中的图像:

<?php if ($featuredImage = $post->getFeaturedImage()): ?>
    <div class="featured-image left">
        <a href="<?php echo $post->getPermalink() ?>" title="<?php echo $this->escapeHtml($post->getPostTitle()) ?>"><img src="<?php echo $featuredImage->getAvailableImage() ?>" alt="<?php echo $this->escapeHtml($post->getPostTitle()) ?>"/></a>
    </div>
<?php endif; ?>
于 2014-02-26T13:56:48.450 回答
0

<action method="setFeaturedImage"><display>on</display></action> should be <action method="setThumb"><thumb>on</thumb</action>

于 2014-09-29T03:41:20.253 回答
0

请走这条路:

/app/design/frontend/base/default/template/wordpress/sidebar/widget/categoryposts.phtml

并替换此代码以从 WordPress 获取特色图片。

<?php if ($featuredImage = $post->getFeaturedImage()): ?>
                <div class="featured-image left">
                    <a href="<?php echo $post->getPermalink() ?>" title="<?php echo $this->escapeHtml($post->getPostTitle()) ?>"><img height="185" width="320" src="<?php echo $featuredImage->getFullSizeImage() ?>" alt="<?php echo $this->escapeHtml($post->getPostTitle()) ?>"/></a>
                </div>
            <?php endif; ?>
于 2014-03-11T11:03:49.930 回答
0
<?php if ($featuredImage = $post->getFeaturedImage()): ?>
            <div class="featured-image left">
                <a href="<?php echo $post->getPermalink() ?>" title="<?php echo $this->escapeHtml($post->getPostTitle()) ?>"><img src="<?php echo $featuredImage->getAvailableImage() ?>" alt="<?php echo $this->escapeHtml($post->getPostTitle()) ?>"/></a>
            </div>
<?php endif; ?>

你可以:

$featuredImage->getFullSizeImage();

getThumbnailImage()
getMediumImage()
getLargeImage()
getFullSizeImage()
getPostThumbnailImage()
getAvailableImage()
getImageByType($type = 'thumbnail')
于 2014-12-09T13:02:09.280 回答
0

在 Magento WordPress 集成中发布图像

WordPress 允许您将图像添加到帖子或页面,并将此图像设置为“特色图像”。然后此图像会自动调整为不同的大小,可以在 WordPress 管理员中进行修改。此图像的缩略图将自动显示在您的集成博客中的帖子上,但是可以在您拥有帖子模型的地方显示特色图像。

以下代码将显示帖子的特色图片作为帖子页面的链接。

<?php // $post is already defined ?>
<?php if ($featuredImage = $post->getFeaturedImage()): ?>
    <a href="<?php echo $post->getPermalink() ?>">
        <img src="<?php echo $featuredImage->getAvailableImage() ?>" alt="<?php echo $this->escapeHtml($post->getPostTitle()) ?>"/>
    </a>
<?php endif; ?>

首先,代码通过调用$post->getFeaturedImage()返回 Fishpig_Wordpress_Model_Image 的对象来检索特征图像模型。然后代码调用 $featuredImage->getAvailableImage() 返回它可以找到的最小版本的图像。

可以获得特定大小的图像,而不仅仅是第一个可用的图像。

可以使用以下方法:

<?php

    $image = $post->getFeaturedImage();

    // Get the URL of the thumbnail image
    echo $image->getThumbnailImage();

    // Get the URL of the medium sized image
    echo $image->getMediumImage();

    // Get the URL of the large image
    echo $image->getLargeImage();

    // Get the URL of the full size image (this will be the original uploaded image size)
    echo $image->getFullSizeImage();

    // Get the post thumbnail image URL
    echo $image->getPostThumbnailImage();

    // Work through these images and get the first available image
    echo $image->getAvailableImage();

?>

并且您需要确保帖子已经具有特色图片。

于 2017-05-03T14:00:13.630 回答
-2

以防其他人注意到 XML 解决方案确实有效。只是上面提供的 XML 缺少“/”

应该是:开

于 2015-05-14T15:43:38.680 回答