Equal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Drop downs not workingThe best way is to implement the
wp_nav_menuinto your theme and then you can have full control.Forum: Fixing WordPress
In reply to: Make your submenus slideGoogle is your friend here:
This one seems to explain it.
Forum: Fixing WordPress
In reply to: Attachment Page – Image AlignIf you copy your themes single.php file and name it image.php you can then style this page as you wish with CSS.
Forum: Fixing WordPress
In reply to: Drop downs not workingTo be a drop down there would need to be a depth of at least 2 so that it can nest the links in another unordered list. However if you use ‘include’ then the depth will not work unless one of the page IDs you have included is a child page.
Forum: Installing WordPress
In reply to: Got php running but wordpress .php files wont loadBoth files bring a 404 for me. Therefore I would say the test file is not working either?
Forum: Installing WordPress
In reply to: Error Message after updatingMaybe something went wrong with the install. Perhaps try a manual WordPress upgrade:
Forum: Installing WordPress
In reply to: Homepage works but not individual postsSounds like a permalink issue to me. Go into your dashboard and the click on settings and permalinks and save the permalink structure again, then try your site.
Forum: Installing WordPress
In reply to: Website does not work after uploadedWhen you made the move did you move the database as well as the files?
Forum: Fixing WordPress
In reply to: Drop downs not workingAs far as I am aware if you use the include parameter the depth is irrelevant as WordPress will only include pages you have added to the include parameter. So in the example above it will only includes pages with IDs 4,16,29,13,37,34,406 and 9.
I would think about using the new
wp_nav_menuinstead then you have drag and drop control over which pages etc are in your menu.Forum: Fixing WordPress
In reply to: include costum post types in wp_page_menu()Pretty sure that function only works with pages hence the name. Why not use
wp_nav_menuinstead?Forum: Fixing WordPress
In reply to: Drop downs not workingYes thats right. I am confused as to why you all the instances of wp_list_pages. Could you not just include it once?
Forum: Fixing WordPress
In reply to: Meta Title and Descriptions For Categorieshttp://ww.wp.xz.cn/extend/plugins/wordpress-seo/
That is a good plugin and one I always use now. It allows you to set titles and descriptions etc for all categories etc.
Forum: Fixing WordPress
In reply to: Drop downs not workingEach of those calls to
wp_list_pages()will only show one page as you only have one page ID in the include parameter.Forum: Fixing WordPress
In reply to: Lost websiteI would say that the update did not work correctly and there are some corrupted files that means the site cannot load correctly.
The solution I would do would be to manually re-install WordPress as though you are upgrading it manually. Follow the instructions here:
<?php if( get_post_meta($post->ID, "thumbnail", true) ): ?>This is looking for a custom field in the post with the key of Thumbnail and the value of this would be the URL of the thumbnail image. If you add this to your post in the custom fields section it should show up.