CSS tutorial, how to create 3D push button effect using css, In this article, we given CSS code with result screenshots. Explained about creating 3d button using CSS only. Create a simple button with 3D look for your website using CSS.
If you’d like your blog to feature posts from multiple authors, how to add users in wordpress website, you can add as many administrative accounts to your blog as you like. There are two different ways to add users. There are two different ways to add a new user to your blog, depending on whether or not that person already has an account at WordPress.com.
how to add users in wordpress website
how to add users in wordpress website
To add someone who already has a WordPress.com account:
Log in to your dashboard.
Click on the Users -> Authors & Users menu option.
In the Add User From Community section at the bottom, enter the author’s email address in the User E-mail box
Select either Contributor, Author or Editor in the Role list
Click the Add User button
Your new user will now see your blog listed in their dashboard when they log in to WordPress.com.
To add someone who does not have a WordPress.com account:
Log in to your dashboard.
Click on the Users -> Invites menu option.
Enter the author’s first name, last name and email address in the appropriate fields.
Check the box labeled Add user to my blog as a contributor.
Click the Send Invite button.
Your new user will receive an email inviting them to sign up for a WordPress.com account (and, optionally, create their own blog if they want). Once they have signed up, you’ll see them listed as a Contributor on your Users tab. You can change them to a different role (Author or Editor) later if you’d like.
The difference between each of the roles is explained in the User Roles documentation.
Warning: Please be very careful when adding a new Administrator user to your blog. Other Administrators are effectively co-owners. They have as much power over your blog as you do, including the ability to permanently delete it.
Transfer Note: For security purposes, there is no way to remove the original creator/owner from their blog. As such, if you wish to transfer your blog to another user/account, please follow the instructions here.
Video
Watch the “Adding users to your blog (or removing them)” video from WordPress.tv.
Adding users to your blog (or removing them)
Adding users to your blog (or removing them)
This movie requires Adobe Flash for playback.
Watch the “Inviting your friends to WordPress.com” video from WordPress.tv.
You cannot change a WordPress.com account username once it has been set. However, you can change what is seen on your posts and comments by changing the display name (nickname) in your profile, or you can create a new account and transfer your blog(s) to the new account.
How to wordpress change admin username
wordpress change admin username
Change Display Name (Nickname)
1. Access your User Profile
2. Change the value next to Display name publicly as under Basic Details
3. Click Update Profile.
↑ Table of Contents ↑
Change Username
1. Log into your current account (using your existing username)
2. Access your Personal Settings and change the e-mail address to another email address. This will free up your primary e-mail for use with the new username.
3. Once the new address has been verified via email confirmation, log out of the account.
4. Go to http://wordpress.com/signup/ and attempt to register a new account (the username you wish to change to) with your e-mail address.
5. If you’ve got a blog you should transfer its ownership to your new username.
Once you’ve done all of that you’ll be rocking WordPress.com with your new username.
Woe to the WordPress administrator who finds only blank pages where once stood a WordPress-based blog or Web site. The site has been plagued with what an increasing number of WordPress operators are nicknaming the White Screen of Death.
Beware the WordPress white screen of death
As the nickname states, the White Screen of Death, WSoD, renders all the WordPress-built pages as a blank screen. But unlike the infamous Microsoft Windows Blue Screen of Death after which it was named, the WSoD does not offer any debugging code, or pointers to what might be causing the problem. Just a blank page where content once resided.
Worse yet, in addition to offlining a Web site or set of blog pages, the bug can also render invisible the WordPress Web-based administrator console, in which some debugging could occur.
The true cause of WSoD cannot be traced to any individual cause, or even to the WordPress code itself, but rather to a conflation of issues around the technology WordPress uses, as well as how the software is augmented by others.
“Our hands … are mostly tied here, especially since WordPress is extended through code from others,” said Andrew Nacin, a WordPress developer, in an e-mail interview.
The good news is that the developers of WordPress offer some simple hints at how to debug the problem, and they promise more measures to thwart the appearance of blank screens in the upcoming version 3.0 release of the software, which should be posted within a few weeks.
Since its first release in 2003, WordPress has played a pivotal role in the emergence of blogs on the Web. An open-source project, it is free to download, and Redwood City, California-based Automattic offers a hosted version of the blogging software, which runs more than 11 million blogs.
Organizations are also considering using WordPress as a low-cost content management system.
WordPress is a modular program. It is actually built with other open-source tools, most notably the PHP Web scripting language. In order to construct a WordPress page, the Web server software executes a series of PHP scripts using a PHP processing module, drawing the content from a database, usually MySQL.
While the WordPress package offers the basic ability to run a blog, most of the additional functionality comes from plug-ins developed by third-parties. Likewise, the look-and-feel of a WordPress blog can be altered by using themes, or templates also generated by third parties.
Some of these of plugs-ins and themes are better constructed than others. And that's where the problem begins.
“Generally, you'll see [a blank page] when PHP hits a brick wall before the browser is served any output,” Nacin said.
Apple on Wednesday released iTunes 9.2, an update to its media and syncing software for iPhone, iPod touch, and iPad.
iTunes 9.2 adds a handful of features, chiefly compatibility with iOS 4 and iPhone 4, both of which are slated for release next week. In addition, the update introduces book syncing and reading with an iPhone or iPod touch running iBooks 1.1, and support for organizing and syncing PDF documents as books.
iTunes 9.2 also supports the new Folders feature in iOS 4 that lets users organize apps into groups (if you synced a device running a build of iOS 4 with a previous iTunes version, your folders would be blown away and all apps would wind up spread out across home screen pages). The updated version should allow for much faster backups while syncing an iPhone or iPod touch running iOS 4 (but, notably, not previous iOS versions), and album artwork should appear more quickly when exploring your library.
iTunes 9.2 is available now via Software Update and at Apple’s site for both Macs and PCs.
Filters are hooks that WordPress launched to modify text of various types before saving to database. we explained how to work with wordpress plugin filters. Your plugin can specify that one or more of its PHP functions is executed to modify specific types of text at these times, using the Filter API.
how to work with wordpress plugin filters
All filters are located in wp-includes/plugin.php file. Following function you can use for using the filters in wordpress plugin.
has filter
Check if any filter has been registered for a hook.
$tag
(string) (required) The name of the filter to hook the $function_to_add to.
Default: None
$function_to_add
(callback) (required) The name of the function to be called when the filter is applied.
Default: None
$priority
(integer) (optional) Used to specify the order in which the functions associated with a particular action are executed. Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.
Default: 10
$accepted_args
(integer) (optional) The number of arguments the function(s) accept(s). In WordPress 1.5.1 and newer. hooked functions can take extra arguments that are set when the matching do_action() or apply_filters() call is run.
Merge the filter functions of a specific filter hook with generic filter functions.
merge_filters($tag);
$tag
(string) (required) The filter hook of which the functions should be merged.
Default: None
remove filter
This function removes a function attached to a specified filter hook. This method can be used to remove default functions attached to a specific filter hook and possibly replace them with a substitute. See also remove_action(), add_filter() and add_action().
Important: Because of long-time unfixed bugs resulting in flaws of the underlying implementation, it is unpredictable which filters this function will remove when called. Usage might/will result in loss of other then the intended filter(s). Plugin authors should prevent the usage of this function if possible.
Important: To remove a hook, the $function_to_remove and $priority arguments must match when the hook was added. This goes for both filters and actions. No warning will be given on removal failure.
$tag
(string) (required) The action hook to which the function to be removed is hooked.
Default: None
$function_to_remove
(string) (required) The name of the function which should be removed.
Default: None
$priority
(int) (optional) The priority of the function (as defined when the function was originally hooked).
Default: 10
$accepted_args
(int) (optional) The number of arguments the function accepts.
Default: 1
remove all filters
Remove all of the hooks from a filter.
remove_all_filters( $tag, $priority );
$tag
(string) (required) The filter to remove hooks from.
Default: None
$priority
(integer) (optional) The priority number to remove.
Default: false
——————————————-x———————————–x—————————–
All List of all WordPress filter hooks you will find on following URL
Photoshop tutorial, how to turn a photo to canvas print using photoshop. In this article, we given full step by step guide with screenshots and with their short cut keys.
In this tutorial, we will learn to convert a normal picture to canvas print.
Step 1: Open your image in Photoshop which you want to convert into canvas print. Double click on Background layer and press OK to work on it.
how to turn a photo to canvas print using photoshop
Step 2: Press Shift+Control+U to desaturate the image:
how to turn a photo to canvas print using photoshop
Step 3: We now colorize this layer. For that, set the foreground color to #C78C66 and background to #F0E6A9.
Step 4: Select the Gradient Tool and select the Gradient:
Step 5: Create a New Layer and fill the image with this gradient from top to bottom. Now set the Blending Mode to Color this layer.
Step 6: Duplicate the layer by pressing Ctrl+J. Set the Blending Mode to Linear Light & reduce the opacity to 55%
Step 7: Now, press Ctrl+L to open the levels dialog box and set the values which I shown in the below image:
Step 8: Press Ctrl+Shift+E to merge all the layers. Now, we will use the texturizer filter to give it a canvas look. For that, go to Filter > Texture> Texturizer and give these values:
Now our image is looking like this:
Step 9: We will now apply lighting effect to give it more classic look. Go to Filter > Render > Lighting Effects and apply the settings as shown in the figure below:
You have successfully converted your picture to a canvas print.
If you are internet user then you know about what is spam. You know or saw spam emails earlier so many times. prevent spam comments wordpress is big task and important also.
how to prevent spam comments wordpress
how to prevent spam comments wordpress
Comment Spam Hacks
The following are not recommended for average users. They involve editing WordPress core files. BACKUP your files first.
Delete wp-comments-post.php
The ultimate end-all solution to your comment spam troubles. This will effectively disable comments and is good for stopping comment spam floods. No one will be able to comment on your WordPress site.
Delete wp-trackback.php
The ultimate end-all solution to your trackback spam troubles. This will effectively disable trackbacks and is good for stopping trackback spam floods. This will mean that no one will be able to trackback your posts, so do this after consideration.
Denying access with .htaccess
While drastic, you can make modifications in your .htaccess file if you are using an Apache server. Check the Internet and Apache for more information.
Use nofollow
The nofollow attribute is another method used to strip spammers of their page ranks. According to Google, “when Google sees the attribute (rel=”nofollow”) on hyperlinks, those links won’t get any credit when we rank websites in our search results.” Under WordPress v1.5, the nofollow attribute is automatically added to all links in the comments section.
WordPress comes with a pre installed antispam solution – Akismet.
In order to use Akismet, you should have a WordPress API key. To receive a WordPress API key, you should register at the official WordPress website. The key will be included in your welcome mail.
If you already have a registration at WordPress.org, you can see your API key by visiting the WP dashboard.
To enable Akismet for your blog, follow the steps below:
Step 1. Go to your WordPress admin area > Plugins > Installed.
Step 2. Click Activate.
There are many ways to protect your WordPress.com blogs from unwanted comments:
* WordPress.com blogs are protected by the Akismet comment spam filter.
* You can control whether comments are automatically approved or if they need to be reviewed before they are published.
* You can add rules for comment moderation to control which comments get marked as pending.
* You can add rules to the comment blacklist section to automatically mark some comments as spam.
* If you turn on email notifications, then you can watch those messages for spam and delete them quickly if you find any that get through the comment spam filter.
Akismet learns by those who mark comment spam as comment spam and legitimate spam is despammed. If your comments are being caught by Akismet, remove them from the Akismet Panel. It might take two or three times, but it will learn and automatically not designate your comments as spam.
Commenters on your blog may have their comments caught by Akismet. If you do not regularly check your Akismet Panel, have an easy way of allowing readers to email you if their comment did not appear.
With updates to the database and major changes to the software, this process may have to be repeated.
If you continue to have problems with Akismet catching your comments or too many of your readers’ comments, contact Akismet for more assistance.
In this blog, we’re going to learn how to create hollywood movie poster photoshop tutorial, blend photos together like Hollywood movie poster using Photoshop. We given step by step with their screenshots and given explanation about same.
how to create hollywood movie poster photoshop tutorial
Here’s the first photo I’ll be using:
how to create hollywood movie poster photoshop tutorial
Here’s the image I want to blend it with:
how to create hollywood movie poster photoshop tutorial
Step 1: The first thing we need in order to blend our two images together is for them to both be in the same document. To do that, with both of my images open on the screen in their own separate document windows, I’m going to grab my Move tool from the Tools palette, or I could press the letter V on my keyboard to quickly select it:
how to create hollywood movie poster photoshop tutorial
Then with my Move tool selected, I’m going to click anywhere inside the image of the couple walking on the beach to make that document window active, and I’m simply going to drag the image into the other document window:
how to create hollywood movie poster photoshop tutorial
When I release my mouse button, both images appear inside the same document, one on top of the other. I can also see both images now on their own separate layers in the Layers palette:
Step 2: Now that I’ve dragged the beach photo into the other document, I need to resize it, and I can do that easily with Photoshop’s Free Transform command. With the beach photo layer selected in the Layers palette, I’m going to use the keyboard shortcut Ctrl+T (Win) / Command+T (Mac) to bring up the Free Transform box and handles around the image.
Problem is, this image is in “landscape” mode, meaning its width is longer than its height, and I’ve dragged it into a document containing an image that’s in “portrait” mode (its height is longer than its width), so even though Photoshop has placed the Free Transform box and handles around my image, I can’t see any of the corner handles because the sides of the image are extending out beyond the viewable area of the document. To do that press F on your keyboard and you can move your image where you want.
When I’m happy with the new size of my image, I’m going to press Enter (Win) / Return (Mac) to accept the transformation.
Your background layer means couple layer is locked to work on it double click on background layer in a Layers pallete. Now the warning message is telling me that Photoshop can’t move the image because the layer is locked, press OK to work on it.
Step 3: Now we can begin blending them together. The first thing we need is a layer mask, and we’re going to add it to the layer on top (“Layer 1”), which is my case is the layer containing the beach photo, so I’m going to click on that layer in the Layers palette to select it. Then, click on the Add A Layer Mask icon at the bottom of the Layers palette:
We can now see the layer mask thumbnail added to the top layer:
Step 4: Select your Gradient tool from the Tools palette, or press G to quickly access it with the keyboard shortcut.
Then, up in the Options Bar at the top of the screen, click on the down-pointing arrow to the right of the gradient preview area, which will bring up the Gradient Picker. Click on the black to white gradient in the top row, third from the left to select it:
Now drag the Gradient like I shown in below image:
Now my image is looking like this:
Step 5: With “Layer 1” still selected in the Layers palette, press Shift+Ctrl+Alt+E (Win) / Shift+Command+Option+E (Mac) to merge both layers onto a new layer above it, which Photoshop will name “Layer 2”:
Step 6: We’re going to remove all the color from the image at this point so we can add our own color, which we’ll do in a moment. To remove the colors, press Shift+Ctrl+U (Win) / Shift+Command+U (Mac) to desaturate the layer:
Step 7: Let’s add a little noise to the image to help the two photos blend more seamlessly together. Go to the Filter menu > Noise > Add Noise. This brings up the Add Noise dialog box. Set the Amount to somewhere between 1-6% depending on the pixel dimensions of your image. I’m working on a low resolution image for this tutorial, so I’m going to set mine to 1% just to add a hint of noise. Make sure Distribution is set to Gaussian, and also make sure the Monochromatic option at the very bottom is checked:
Step 8: All that’s left to do is add our own color to the image. For that, we’re going to use a Solid Color fill layer. Click on the New Fill Or Adjustment Layer icon at the bottom of the Layers palette. Then select Solid Color from the top of the list that appears:
how to create hollywood movie poster photoshop tutorial
Photoshop’s Color Picker will appear. Choose the color that you want to use for your image. I’m going to select a light orange for my color:
Click OK once you’ve chosen a color to exit out of the Color Picker. Don’t worry about choosing the “right” color at the moment because you can always change it later.
Step 9: Go to Blending Mode and select Color:
Your image will now be colorized with your chosen color rather than being blocked from view by it. If you decide you’re not happy with the color you chose, just double-click on the Solid Color fill layer’s color swatch icon in the Layers palette:
When you do that, the Color Picker will pop back up and you can choose a different color. Since the Solid Color fill layer is already set to the “Color” blend mode, you’ll be able to see a live preview of how your current color choice looks with your image.
Here’s my final result:
how to create hollywood movie poster photoshop tutorial
WordPress news about Today WordPress.com goes down with millions of websites . Following are update which are on twitter.
Update #1: ‘We are working on restoring WordPress.com as quickly as possible.”
Today WordPress.com goes down with millions of websites
Following is update from twitter account of wordpress.com
Update #2: “We’ve isolated the issue on WordPress.com, and we are working on a fix.”
Update #3: “The vast majority of blogs are back up, bringing up the rest over the next few minutes after we verify them. — Matt Mullenweg”
Update #4: “That’ll come up later, probably in an hour or two. Focused on blogs right now.”
Update #5: “We’re focused on blogs right now — the ones still down, then home page, then stats, in that order.”
Millions of blogs had shown following message today
Software publisher Automattic, which runs WordPress.com, went down today and took millions of blogs and other websites with it. Sites down were WordPress.com hosted websites, VIP WordPress sites (like Anderson Cooper’s CNN Blog), link shortener WP.me, WordPress.tv, Automattic.com and probably more.
Automattic’s founder Matt Mullenweg’s personal website ma.tt was still online along with other Automattic websites:
WordPress.org software installations on private servers were not affected by the outage. Domain name registrar GoDaddy was attacked with malware on Tuesday (June 8) which infected a number of WordPress installations hosted on them. Today’s problem at WordPress.com was not a security issue according to founder Mullenweg.