How to auto-generate names for guest users who leave comments?
How to auto-generate names for guest users who leave comments?
How to auto-generate names for guest users who leave comments?
Your question is very similar to this question: Creating a Custom Post Type for Inserting Preset Content into Post & Pages? You might find the solution to be what you need; I extended my WP Boilerplate Shortcode plugin to meet the needs of the person asking the question; you might find the solution fits your … Read more
Basics of my approach to sliders: Query arguments for selection of posts. Get The Image (plus custom code and caching when needed) to mine for images. Separate function for markup generation so it could be easily swapped. Just add JavaScript slider you like. When you like/need another more just swap markup and script. Of course … Read more
The problem is you are not “filling” the custom field with data you are just outputting the value in the edit screen, so you must save or update, and to have that data inside all of your posts you will need to either create a custom query of all the posts and update there meta … Read more
WordPress doesn’t have “tweeting” functionality built in. However, post scheduling is built in. You just set the time when you want the post to publish on the edit post screen. If you use a twitter plugin like my own Simple Twitter Connect, and you schedule a post, then it will send the tweet at the … Read more
I think you’re just trying to get a featured post slider. If this is the case, you could go with a much more robust and expandable option like Nivo slider. You’d have to code it into your theme yourself to get your desired result (shows recent posts automatically), but it’s definitely possible.
Like Bainternet suggested – remove_meta_box( ‘tagsdiv-custom_taxonomy_id’, ‘post’, ‘side’ ); to remove the default Metabox. If you want to still see the terms. Then re-register the metabox with your own custom callback. This callback function can then mimic the function used to display the default metabox – but simply omitting any input forms /checkboxes which send … Read more
You’ll want to hook into wpmu_new_blog. You can see the args you can pass it here (no codex right now…). That last $meta arg can take a lot of different settings. You also might look into the WPMU New Blog Defaults. It doesn’t seem to do everything you want, but it might at least contain … Read more
The answer was right under my nose facepalm. In the custom field suite plugin, instead of entering ProductName-2000 : ProductName-2000 you enter <a href=”http://www.site.com/ProductName-2000/”>ProductName-2000</a> : ProductName-2000 I kinda wish i could delete this question… hope it helps someone else at least. 😛
You should take a look at your Media Settings, to define the dimensions of your post thumbnails. Additionally, you could add this code to your functions.php to specify your own thumbnails and dimensions: // add thumbnail theme support add_action(‘after_setup_theme’,’tjnz_theme_support’); function tjnz_theme_support() { add_theme_support(‘post-thumbnails’); // wp thumbnails set_post_thumbnail_size(170, 170, true); // default thumb size add_theme_support(‘automatic-feed-links’); // … Read more