oleinv
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WEBO Site SpeedUp] Webo installs favicon?From YSlow:
A favicon is an icon associated with a web page; this icon resides in the favicon.ico file in the server’s root. Since the browser requests this file, it needs to be present; if it is missing, the browser returns a 404 error (see “Avoid HTTP 404 (Not Found) error” above). Since favicon.ico resides in the server’s root, each time the browser requests this file, the cookies for the server’s root are sent. Making the favicon small and reducing the cookie size for the server’s root cookies improves performance for retrieving the favicon. Making favicon.ico cacheable avoids frequent requests for it.
Forum: Fixing WordPress
In reply to: Can’t remove “advanced cache.php” from serverThank you, jaiasmit! I could not remove the advanced-cache.php long time and could not understand why. And because of this could not install the WP Super Cache. Now everything works.
Forum: Themes and Templates
In reply to: Listing pages in sidebar, excluding top level pagesIf I understand right, you have:
– Page — (ID = X)
— Sub Page A
— Sub Page B
— Sub Page Cand you want this in sidebar:
— Sub Page A
— Sub Page B
— Sub Page CThen add in sidebar
<?php wp_list_pages('child_of=X' ); ?>
Where X = ID of level 1 Page.