Skip to main content

Home/ WordPress Beginners/ Group items tagged WordPress Features

Rss Feed Group items tagged

Toshiro Shimura

10 Things You Need to Know About WordPress 2.6 - 1 views

  • Post Versioning Developers familiar with Subversion, or SVN, understand the concept of versioning and diffs. Compare one file, or revision, against another file, or revision, and see a breakdown of differences between the two. With the help of GUI tools, developers can see a color-coded red vs. green (removed vs. added) presentation. This concept has now been applied to posts so you can view differences between posts as well as “revert” to an earlier version of a post. I absolutely love this feature and you can see an example of a “revision compare” built directly into WordPress.
  • Google Gears Support Gears is the Google technology that allows for Firefox (apparently IE 6 too, but I can’t confirm) to “pre-cache” pages and speed up access. Gears has been integrated with WordPress 2.6 on the admin side and speeds things up tremendously. This is particularly important where broadband access is limited or inaccessible (third world, for instance). To enable Gears in your new WordPress 2.6 installation, click on the Turbo link in the upper right corner of your WordPress admin.
  • XML-RPC Editor Functionality Quietly, a new bit of functionality snuck into WordPress trunk that threw a number of developers and kicked off an interesting discussion. In the development cycle, XML-RPC and Atom Pub API for remote editing was turned off by default as a “security precaution” since many recent WordPress security issues seem to stem from the XML-RPC protocol.
  • ...7 more annotations...
  • SQL Security - $wpdb->prepare() Back in WordPress 2.3, the prepare() first emerged, initially unused… but there. The method was very experimental at the time and was not ready for prime-time so, though it was included, it was not yet used. We started to see its emergence in WordPress 2.5 and in WordPress 2.6 it is being used just about everywhere.
  • Shift-Click Selection of Multiple Checkboxes in WP-Admin As the backend of WordPress continues to evolve after the release of the drastically redesigned admin in WP 2.5, usability enhancements are also making their way in.
  • More Avatar Options With the Automattic acquisition of Gravatar last year, in-built support for Gravatars was introduced in WordPress 2.5. WordPress 2.6 gives the blogger more options by allowing for selection of the “default” avatar. Out of the box, the default Gravatar can be “Mystery Man”, a generic grey avatar with a white silhouette of someone. Default avatars can also be “blank” (self-explanatory), the Gravatar logo, Identicons, Wavatars or MonsterIDs. These have all been a part of WordPress.com for some time and now come to the rest of us. For more information, Matt wrote a post for the WP.com community that you should probably check out. The difference here being, of course, that WordPress.com offers “dashboard avatars” and WPFROU (WordPress for the Rest of Us) does not include this functionality.
  • Page Templates over XML-RPC In addition to the XML-RPC/APP security measures listed above, a new key bit of functionality has now been exposed for API editors (and also, if you think about it, demonstrates the power behind XML-RPC and why you might want to turn it off if you don’t use it). The XML-RPC interface now allows for managing page templates from an API editor. To the best of my knowledge, no editor supports this yet and may not. However, increasingly there is the ability to remotely post content from places like YouTube, Utterz and others. None of these services would have any real use for this functionality either, however I want to point out that because they can post remotely anything that is exposed to the remote world can also be managed.
  • Press This Press this! is a new enhancement of a long-existing concept. Bookmarklets. In fact, WordPress used to have a bookmarklet included that would allow a user to quickly start a new post from the browser toolbar, but the functionality was limited.
  • Integrated Theme Preview Theme previewing has been a bugaboo for many a theme designer. How do we check and develop without affecting the rest of the site. Some folks resorted to using Ryan’s venerable Theme Preview plugin. Others setup a beta version of a site that was sandboxed off from the rest of the world. Lots of different approaches, all of which remain valid.
  • Plugin Management Overhaul Finally, the plugin management interface has received a face-lift and some added functionality. Active plugins and inactive plugins are segregated and with that new fangled Shift-click functionality I talked about before, plugin management just got really freaking simple. Note that Active plugins can be deactivated in bulk and Deactivated plugins can be activated or even deleted in bulk. Clean up that stale plugin list in a snap. But… there’s always a but… make a backup before you go nuts.
trimantra

How to setup multiple site in wordpress | Trimantra Blog - 0 views

  •  
    This new feature is being called Network or Multi-site option. In WordPress By default this feature is disabled. If you want to use this option in your WordPress, you need to enable it.To enable this feature, simply open your wp-config.php file located in your WordPress root folder.
  •  
    This new feature is being called Network or Multi-site option. In WordPress By default this feature is disabled. If you want to use this option in your WordPress, you need to enable it.To enable this feature, simply open your wp-config.php file located in your WordPress root folder.
anonymous

WordPress Features & Advantages - 0 views

  •  
    The WordPress Framework offers powerful features to set up an engaging online brand presence for all kinds of businesses. The best part about this platform is that it can be easily customized to meet the exclusive needs of your business.
anonymous

The importance of WordPress upgradation - 0 views

  •  
    Our WordPress Upgradation Services help you benefit from new WordPress Features. We offer quick WordPress Version Upgrade including WP Blog/Theme Upgrade.
anonymous

5 Useful WordPress Blog Development Tips for Beginners - 1 views

  •  
    WordPress is considered as one of the best CMS (Content Management Tool). Majority of the bloggers opt for this platform due to the highly impeccable features and functionalities it offers to its users.
Siraj Mahmood

WordPress 4.3 Introduce New Features - KnowledgeIDea - 0 views

  •  
    WordPress 4.3 introduce with new features. WordPress 4.3 released on 18 august and WordPress team add some incredible features and extended their platform.
Siraj Mahmood

Register Plus Redux Wordpress Plugin Features & Overview - 0 views

  •  
    Register plus redux WordPress plugin features & overview. WordPress custom registration form plugin with all pro features. WordPress users register plugin.
designsave

Essential WordPress Plugins for Beginners - Designsave.com - 0 views

  •  
    Check out this Essential WordPress Plugins, lets you add functionality you need for your blog and can be useful for enhancing current features.
  •  
    Check out this Essential WordPress Plugins, lets you add functionality you need for your blog and can be useful for enhancing current features.
Toshiro Shimura

PodPress in WordPress 2.6 « Andrew Ozz on WordPress - 1 views

  • Yesterday had a quick look at podPress, the premier plugin for podcasting. It has a small incompatibility with the new Post Revisions feature introduced in WordPress 2.6. PodPress seems to be in the middle of a large update. I’ve used the “experimental” version (8.9) of the plugin and emailed the proposed fix to the authors, however for the more impatient here is the patch: view plaincopy to clipboardprintfunction post_edit($post_id) {      GLOBAL $post;      if($this->justposted) {          return;      }      $this->justposted = true;        if ( isset($_POST['post_ID']) && (int) $_POST['post_ID'] )          $post_id = (int) $_POST['post_ID'];        $this->settings_item_save($post_id, $_POST);  }   function post_edit($post_id) { GLOBAL $post; if($this->justposted) { return; } $this->justposted = true; if ( isset($_POST['post_ID']) && (int) $_POST['post_ID'] ) $post_id = (int) $_POST['post_ID']; $this->settings_item_save($post_id, $_POST); } It goes in podpress/podpress_admin_class.php, around line 51. What it does is to make sure the custom post meta fields used by podPress are attached to the actual Post, not one of the revisions.
Toshiro Shimura

WordPress Tip: Careful with that Autosave, Eugene * Perishable Press - 0 views

  • After upgrading WordPress from version 2.0.5 to 2.3.3, I did some experimenting with the “post autosave” feature. The autosave feature uses some crafty ajax to automagically save your post every 2 minutes (120 seconds by default). Below the post-editing field, you will notice a line of text that displays the time of the most recent autosave, similar to the following:
  • How to change the time-interval for the WordPress Autosave feature While experimenting with the autosave feature for this post, I discovered how easy it is to change the default autosave time interval. In WordPress 2.3 (and probably 2.2 and 2.1), open the wp-includes/script-loader.php and edit the instance of 120 (seconds) to something more appropriate. Don’t get too crazy though, or you might get a nasty email from your host. Here is how the interval-setting code appears on line #43: 'autosaveInterval' => apply_filters('autosave_interval', '120'),
Toshiro Shimura

Simple Tags - Plugins for WordPress 2.3 - Extend management of tags - Simple and Powerf... - 0 views

  • Theme Integration st_related_posts(); : Display an list of related posts (must be placed in WP Loop) st_tag_cloud(); : Display a color (dynamic) tags cloud. st_the_tags(); : Display current tags post. st_meta_keywords(); : Display meta keywords, generated from tags. Use only on your header blog. st_related_tags(); : Display an list of related tags, useful for tags navigation st_remove_related_tags(); : Display the list of remove related tags from current view, useful for tags navigation
  • Related Posts : st_related_posts() With this functionnality, you can show related posts on your post. Is related posts which have at least one common tag. If you don't wish to show related posts, but use them inside the loop, use st_get_related_posts() function. Usage: <?php st_related_posts(); ?> Default Usage:
  • Tags cloud: st_tag_cloud() With this functionnality you can show a color tags cloud created dynamically. If you don't want to show it, but use it, use st_get_tag_cloud() function. Usage: <?php st_tag_cloud(); ?> Default Usage:
  • ...3 more annotations...
  • Current posts tags: st_the_tags() This feature extend WordPress builtin function "the_tags()", you can specify tag format, text if no tags and post id, also outside the loop If you don't want to show it, but use it, use st_get_the_tags() function. Usage: <?php st_the_tags(); ?> Default Usage: 'before' => __('Tags: ', 'simpletags'), 'separator' => ', ', 'after' => ' ', 'post_id' => '', 'xformat' => __('<a href="%tag_link%" title="%tag_name%" %tag_rel%>%tag_name%</a>', 'simpletags'), 'notagtext' => __('No tag for this post.', 'simpletags'), 'number' => 0 Parameters:
  • Related tags: st_related_tags() This feature display a list of related tags into tag view. It allow to restrict tag search with an another tag. This function output a list only on tag view, else it display nothing. If you don't wish to show related tags, but use them inside the loop, use st_get_related_tags() function. Usage: <?php st_related_tags(); ?> Default Usage: 'number' => 5, 'order' => 'count-desc', 'separator' => ' ', 'format' => 'list', 'method' => 'OR', 'title' => __('<h4>Related tags</h4>', 'simpletags'), 'notagstext' => __('No related tag found.', 'simpletags'), 'xformat' => __('<span>%tag_count%</span> <a href="%tag_link_add%">+</a> <a href="%tag_link%">%tag_name%</a>', 'simpletags')   Parameters:
  • Remove related tags: st_remove_related_tags() This feature display a list of remove related tags into tag view. It allow to remove one tag from URL. This function output a list only on tag view, else it display nothing. If you don't wish to show remove related tags, but use them inside the loop, use st_get_remove_related_tags() function. Usage: <?php st_remove_related_tags(); ?> Default Usage: 'separator' => ' ', 'format' => 'list', 'notagstext' => ' ', 'xformat' => __('» <a href="%tag_link_remove%" title="Remove %tag_name_attribute% from search">Remove %tag_name%</a>', 'simpletags') Parameters: format
chimpdesign

Best Directory WordPress Theme for Business Listing, job portal and Classifieds Ads - 0 views

  •  
    Do you have a plan to build an online directory? Then the best platform for your project is WordPress. I have couple of examples for directory demonstration to prove WordPress is the best, because it offers themes with multiples features which are you directory listing website requirement.
anonymous

Go For WordPress To Get Higher Page Ranking In Google - 0 views

  •  
    Wordpress is used across the world to power personal blog, websites, e-commerce websites, social networking websites, educational websites, news portals and lot more. It has a set of impressive features and functionality that help to increase website ranking position in search engines such as Google, Yahoo, Bing and others.
chimpdesign

Top 10 Real Estate WordPress Theme - 0 views

  •  
    If you have a real estate business want to build your Real Estate Business Website then you are on right spot, I have a comprehensive collection of WordPress themes for property rental, house renting, buy and sale property and real estate business. All themes are fully featured with modern technology of Google map integration, advance...
John Smith

Dictate - Business, Fashion, Medical, Spa WP Theme - 0 views

  •  
    Dictate, the 6-in-one premium Wordpress theme, brings you modern design and neat & clean outlook. Touching the heights of artistic perfection, this multi-purpose web building tool can be used for six different niches, Medical, Fashion, Spa, Saloon, Business and Blog. Nevertheless, it is suitable for every single website, as you can utilize 72 built-in elements and advanced Visual Composer (save $ 25) page builder to modify it to any required shape and functionality. The greatest appeal lies in its versatility of features and ease of customization, so that you may launch a fully featured website with little or no basic knowledge, effort and time.
netgains

Latest Features Of Wordpress 3.9 - 0 views

  •  
    Are you searching what's new in wordpress 3.9? Yes, then it following new features such as easy image editing, enhance visual editing, new audio and video playlist and many more. Curious, to know more?
Toshiro Shimura

How To Turning Off WordPress Autosave - Moonlight Blog - 0 views

  • I finally patched core program post_new.php to disable autosave for a “new” post and the problem went away. Do not know if this will help you or not. My patch for v.2.3.1 follows. Newer versions might be around the same location. Edit the file wp-admin/post_new.php WP v2.3.1 and insert “//” (without the quotes) at the beginning of this line (currently line 8): wp_enqueue_script('autosave'); Save and upload the file post_new.php, and the WordPress autosave features is now disable.
chimpdesign

Luxury | Online Hotel Booking Reservation Theme - 0 views

  •  
    Luxury is the online hotel booking and reservation WordPress theme specially design for hotel booking, room reservation and resort booking. The theme come with advance room booking system, its stunning features allow user to check all available rooms. User can also change the parameters of the room selection in the middle of the booking with its awesome ajax features.
anekanttruagency

Supercharge your wordpress website file management with File Manager Plugin - 0 views

  •  
    File manager provide you the ability to manage your files and folder with extensive features which can also be upgraded later according to your requirement via File Manager Pro (File type, shortcode, private folder access, Addons/Integrations and many to go) accordingly. Proudly powering 1+ million websites and achieving a 5-star rating!
Toshiro Shimura

TinyMCE Javascript Content Editor by Moxiecode Systems AB - 0 views

  • TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under LGPL by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances. TinyMCE is very easy to integrate into other Content Management Systems.
  • TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under LGPL by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances. TinyMCE is very easy to integrate into other Content Management Systems. TinyMCE Features Easy to integrate, takes only two lines of code. Customizable through themes and plugins. Customizable XHTML 1.0 output. Block invalid elements and force attributes. International language support (Language packs) Multiple browser support, Mozilla, MSIE, FireFox, Opera and Safari (experimental). PHP/.NET/JSP/Coldfusion GZip compressor, Makes TinyMCE 75% smaller and a lot faster to load. You can easily use AJAX to save and load content!
1 - 20 of 20
Showing 20 items per page