umka
Forum Replies Created
-
Forum: Plugins
In reply to: [Splitter] [Plugin: Splitter] Splits, then go where?Hi!
The plugin is designed to insert a<!--nextpage-->tag automatically. That’s all 🙂
Navigation through the pages should appear in the theme.
If it is not appear, maybe, your theme doesn’t support such navigation.
Check, if the following code doesn’t exists after<?php the_content(); ?>function call (‘single.php’ file):
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:' ), 'after' => '</div>' ) ); ?>, you can add it manually. Also, this style should present in your ‘style.css’:.page-link a:link, .page-link a:visited { background: #f1f1f1; color: #333; font-weight: normal; padding: 0.5em 0.75em; text-decoration: none; } .page-link a { background: #d9e8f7; } .page-link a:active, .page-link a:hover { color: #ff4b33; }I’ll add this instruction into readme.
Forum: Fixing WordPress
In reply to: Trouble with wp-admin/nav-menus.phpanyone?
Forum: Fixing WordPress
In reply to: Trouble with wp-admin/nav-menus.phpThe content of every post is loaded into menu item description (
<input type="hidden" class="menu-item-description" name="menu-item[...][menu-item-description]" value="...">)Forum: Fixing WordPress
In reply to: Trouble with wp-admin/nav-menus.phpOf course, it’s an easiest way.
But, I’m sure, that wordpress do an unnecessary job while processing menus, and there is no need to load a content of all posts to construct a custom menu.
Maybe it’s a bug? 🙂