Joms
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: custom post typesYou can use this: http://codex.wordpress.org/Function_Reference/get_post_custom
Forum: Fixing WordPress
In reply to: using get method to call a pageHi, I think you misunderstood the include functions of WordPress like get_sidebar(), get_header() and get_footer(). These functions are found within WordPress and were made to make including of template parts easier. If you want to include a PHP file you can just use the PHP function include() or require().
Forum: Everything else WordPress
In reply to: public wordpress to local wamp/dreamweaverSearch for your live site URL, it should be something like http://www.sitename.com then replace it with your local website URL, something like http://localhost/sitename/.
Forum: Fixing WordPress
In reply to: Question about multi-blogs.Why not just use WordPress categories? You can create a “Guys” and “Girls” category, then assign your post.
You can then access your category page without having to create a new page. It could be something like http://www.example.com/category/girls where all the posts assigned to the Girls category will be listed.
Forum: Hacks
In reply to: Sticky Postis_sticky( '17' ) Returns true when Post 17 is considered a sticky post.Forum: Everything else WordPress
In reply to: Likely asked and already answered Q about simple dbForum: Fixing WordPress
In reply to: Moved site – now blank pageYou can troubleshoot more effectively if you enable WP_DEBUG in wp-config.php. This will show you the PHP error/s.
Forum: Fixing WordPress
In reply to: Lost username and passwordBy default WordPress’ user creation is disabled so you can’t create a user in your case.
If you have access to the database you might want to check the users table to identify which email you used. If you don’t recognize it just change it to your email and try the retrieve password again.
Or you can try directly editing the password by using an MD5 tool.
Forum: Themes and Templates
In reply to: Trouble with custom Meta BoxesHave you tried using add_meta_box() function? Because I can’t find it in your code.
You could also use this plugin: http://wordpress.org/extend/plugins/verve-meta-boxes/
Regards.
Forum: Themes and Templates
In reply to: Header Logo is not CenteredThat is not the proper way to center align an element. You have to set the left and right margin to auto and display it as block.
So in your theme it will be cleaner to just edit style.css and look for #logo around line 38.
Change the margin property to this:
margin: 63px auto 34px;And add this:
display: block;Hope that helps.
Forum: Everything else WordPress
In reply to: Custom Post Type for huge number of records.Thanks for your reply. I completely agree, but my concern is about the searching of multiple custom fields since it will require a lot of JOINS or sub queries in the SQL query. I’m not sure WordPress.com has that.
But I’m gonna try it first to see if its speed is reasonable, otherwise I might give Pods CMS Framework a try.
Thanks again.
Forum: Fixing WordPress
In reply to: Exclude page from menuIt uses WP 3’s wp_nav_menu function. You can create a menu under Appearance->Menus and assign it on the ‘primary’ theme location.
Forum: Your WordPress
In reply to: My Website/PortfolioYes, although most of the content are hard coded.
Forum: Themes and Templates
In reply to: Custom Widgets have bottom frame issue.On your style.css find this (around line 249):
.sidebar ul li ul, .sidebar ul li divand below it replace the styles with:
clear: none; padding: 0 10px 15px 14px; position: static; width: auto;Forum: Fixing WordPress
In reply to: Some posts excerpted, others notYou might want to check The Loop within your theme files.
http://codex.wordpress.org/Function_Reference/the_excerpt