ross104
Forum Replies Created
Viewing 8 replies - 1 through 8 (of 8 total)
-
Forum: Fixing WordPress
In reply to: Custom Field [Required] & Custom Post Type [Auto Taxonomy Choosing]1.
review this WP-SnippetIncrease default number of custom fields
WordPress has a default number of 30 custom fields. In the following example we have increased the limit to 200.
Simply paste the following into your functions.php-file and away you go!Its for limit increasing. And I need to make custom field required to fill in when user is adding a publication, or when publication is being saved.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] How to make field required?BUUUMP!!!
Forum: Plugins
In reply to: [Plugin: Viper's Video Quicktags] Automatic Thumbnails for VVQ+1 000 000 to this thread!!!
Forum: Plugins
In reply to: [Plugin: Custom Field Template] How to make field required?To the top!
Forum: Plugins
In reply to: [Plugin: Custom Field Template] How to make field required?Bump!
Forum: Plugins
In reply to: [Plugin: Custom Post Type UI] How to show custom post types on main pageAdded function to my functions.php
add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( is_home() && false == $query->query_vars['suppress_filters'] ) $query->set( 'post_type', array( 'post', 'audiorelease', 'movies', 'games' ) ); return $query; }Forum: Plugins
In reply to: [Plugin: Custom Post Type UI] How to show custom post types on main pageSolved 🙂
Forum: Fixing WordPress
In reply to: [Plugin: WP Forum] Can’t create GroupsSame problem….
Viewing 8 replies - 1 through 8 (of 8 total)