poczatek
Forum Replies Created
-
Ok, I have a clue.
There’s a problem with a Role Scoper plugin.
When I disactivate photos works fine.Forum: Fixing WordPress
In reply to: Tabs with photsHi,
I made an example I’d like to achive:
http://paley.pl/I’s using different Tab-plugins but none has function I need.
Forum: Fixing WordPress
In reply to: categories list in postOk, I didn’t manage it 🙂
I checked some widgets but can’t find any usefull.
I suppose I can’t embed content to my page cause it’a a category/newspaper/news-1 not a poge or post.
Do you have any idea of the widget which embed content of generated post?Forum: Fixing WordPress
In reply to: categories list in postHi Cais,
thanks for reply.
I was looking for on other forums and I almost find: “include content of one page in another”: https://stackoverflow.com/questions/4090698/wordpress-include-content-of-one-page-in-another.
I checked Michaels idea. It works’s fine but only with posts. I need soulution for categories I suppose.
function show_post($path) {
$post = get_page_by_path($path);
$content = apply_filters(‘the_content’, $post->post_content);
echo $content;
}and this after content of fomepage
<?php show_post(‘about’); // Shows the content of the “About” page. ?>
<?php show_post(‘products/widget1’); // Shows content of the “Products > Widget” page. ?>