kierzniak
Forum Replies Created
-
Forum: Plugins
In reply to: Walker_Nav_Menu errorI must have defined any menu in Menu section. I haven’t have, so I have errors.
Forum: Fixing WordPress
In reply to: RewriteRule ?page=1This way is not elegant for me. Moreover I would have problem to generate links in my pageing gallery. Now i only have href=”?page=2″ and this is fine on all pages. I only want to Rewrite rzezba.html?page=2 to rzezba,2.html.
Forum: Fixing WordPress
In reply to: Editing galleryYes you have right but i don’t mean attach to post but to gallery. Try to create gallery paste to post and editing by adding next image. Everything must working by GUI. I’m creating theme to people who don’t know php stuff.
Forum: Fixing WordPress
In reply to: pagination problemHmm someone have wrong example, i have just change this line:
<?php query_posts('cat=-8&paged=$paged'); ?>
to
<?php query_posts('cat=-8&paged=' . $paged); ?>Forum: Plugins
In reply to: Subpage in admin panel without menu.This work for me:
add_action('admin_menu', 'cutting_banner_menu'); function cutting_banner_menu() { add_options_page('Ads', 'Ads', 'manage_options', 'ads_banner', 'ads_banner_options'); add_submenu_page('ads_banner_new', 'ads banner new', 'ads banner new', 'manage_options', 'ads_banner_new', 'ads_banner_new_page'); }require_once(‘ads-banner-new.php’);
Forum: Fixing WordPress
In reply to: next_posts_link permalinksThis all most work form me! Pagination is ok, but all my events have 404.
I have changed the slug so i have:
http://www.domain.com/events/page/2 is working ok
but with slug set to event
http://www.domain.com/event/my-some-event i have still 404
Any soultion?