Ok for some reason the show_content parameter suddenly works. I also found out why the images are not displayed correctly. When I look at the generated source on my site, I see that the width and height parameters I set are added to the image name, like:
image.jpg –> image-300×100.jpg
So I have to upload an image with that name, or change the parameters to reflect an already existing image. Why doesn’t the plugin use the featured image with the added parameters?
Same problem here; parameters don’t work.
I wrote
[pagelist_ext child_of="599" show_title="0" show_image="1" image_width="60" image_height="60" show_content="1" limit_content="250"]
but after show_title all parameters are ignored. I only get this output:
No image and no content is shown
When I look at the generated source code it shows:
<h1>Inhaltsverzeichnis</h1>
<!-- Page-list plugin v.4.2 ww.wp.xz.cn/plugins/page-list/ -->
<div class="page-list page-list-ext ">
<div class="page-list-ext-item"><div class="page-list-ext-image"><a href="http://myhomepage/wordpress/parentpage/child/" title="Beispielseite 702-2"><img src="" width="60" alt="Beispielseite 702-2" /></a></div> <div class="page-list-ext-item-content"><a href="http://myhomepage/wordpress/parentpage/child/">
Beispielartikel Überschrift (Titel)
Beispielartikel Untertitel
</a></div></div>
ok after installing an excerpt plugin and changing parameters I get some content (excerpt) at least.But still no image !
I wrote:
[pagelist_ext child_of="599" show_title="0" image_width="60" image_height="60" limit_content="250"]
and get following output:
Beispielartikel Überschrift (Titel) – – Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. …
generated source:
<!-- Page-list plugin v.4.2 ww.wp.xz.cn/plugins/page-list/ -->
<div class="page-list page-list-ext ">
<div class="page-list-ext-item"><div class="page-list-ext-image"><a href="http://myhomepage/wordpress/parent/child/" title="Beispielseite 702-2"><img src="" width="60" alt="Beispielseite 702-2" /></a></div> <div class="page-list-ext-item-content"><a href="http://myhomepage/wordpress/parent/child/">Beispielartikel Überschrift (Titel) - - Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. ...</a></div></div>
</div>
Please help me get the image 😉