Tag Archives: wordpress
201. Is WordPress safe from brute force login attempts? If not, how can you prevent such an attack vector? No, WordPress on its own is vulnerable to brute force login attempts. Some good examples of actions performed to protect a WordPress installation against brute force are: • Do not use the “admin” username, and use
more..
151. How to check if any plugin is active in WordPress? With the method is_plugin_active() we can check any particular plugin is active or not. How to check include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'plugin-directory/plugin-file.php' ) ) { // Activated } 152. How to display menu in WordPress? After registering your menus, use
more..
101. How you can create a static page with WordPress? To create a static page in wordpress, in the page section you have to upload a php files to the server in the theme folder, and then select that as your template. This allows you to add any page and look that you wanted for
more..
91. At what instance you get locked out of your WordPress admin and see your website as a blank screen? This would likely happen when you have pasted a code from a website with wrong formats, also when you have pasted a code in a wrong location. It may also happen when your IP is
more..
81. How do I disable comments? First, unchecked Allow people to post comments on the article on the Options > Discussion panel. This will only disable comments on future posts. Now, to completely disable comments, you will have to edit each past post and uncheck Allow Comments from the Write Post SubPanel. Alternatively, you could
more..
71. Why can’t I delete the uncategorized Category? Any Category with a non-zero value for # of Posts in the Administration > Manage > Categories cannot be deleted. The uncategorized Category might be assigned to some Posts, but all Pages are assigned the uncategorized Category. So even though there may be no posts assigned to
more..
61. What is the Basic Difference Between Posts vs. Pages. Posts are timely vs. Pages are timeless. Posts are social vs. Pages are NOT. Posts can be categorized vs. Pages are hierarchical. Posts are included in RSS feed vs. Pages are not. Pages have custom template feature vs. Posts do not. 62. What is child
more..
51. What if I need help after the project? That is what we are here for! You will get full training at the conclusion of the project and we will be available for email support following the project when needed. Additional one on one training will be available at an additional cost if needed. Coming
more..
41. What is the difference between accessing a class method via -> and via ::? :: is allowed to access methods that can perform static operations, i.e. those, which do not require object initialization. 42. Why wordpress is better than blogger for blogging? 1. Customization and Flexibility 2. Hosting Opportunities 3. To customize the tiny image that people
more..
31. What are meta tags. Meta tags keywords and description are used to display information about website or page.The commonly used meta tags are:- <meta name="resource-type" content="document" /> <meta http-equiv="content-type" content="text/html; charset=US-ASCII" /> <meta http-equiv="content-language" content="en-us" /> <meta name="author" content="siddharth" /> <meta name="contact" content="" /> <meta name="copyright" content="" /> <meta name="description" content="" /> <meta name="keywords" content="" />
more..