<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wordpress &#8211; Techawaken</title>
	<atom:link href="https://www.techawaken.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techawaken.com</link>
	<description>Techawaken shares articles and experience in PHP, MySql, Magento,Joomla, Wordpress, JQuery, Javascript etc.</description>
	<lastBuildDate>Fri, 12 Oct 2018 16:59:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to fix WordPress 404 Error on saving a new post or updating a post?</title>
		<link>https://www.techawaken.com/fix-wordpress-404-error-saving-post-updating-post/</link>
				<comments>https://www.techawaken.com/fix-wordpress-404-error-saving-post-updating-post/#respond</comments>
				<pubDate>Fri, 12 Oct 2018 16:59:09 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">https://www.techawaken.com/?p=855</guid>
				<description><![CDATA[<p>I was working on a blog post and had written a part of it and saved it. After some days, I visited the post again to complete it but it would not save, clicking on "Save Draft" button displayed a 404 not found page.</p>

<p>I tried to edit the post with same new content multiple times but same 404 error. Then, since I already had some post content saved, I tried to save it again with no update; it worked. So, I started updating the post content in steps, it was working and content was saving.</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/wordpress-post-formats/" rel="bookmark" title="What are WordPress Post Formats, why &#038; how to use them?">What are WordPress Post Formats, why &#038; how to use them? </a></li>
<li><a href="https://www.techawaken.com/disable-post-revisions-wordpress/" rel="bookmark" title="Disable Post Revisions in WordPress">Disable Post Revisions in WordPress </a></li>
<li><a href="https://www.techawaken.com/create-admin-account-wordpress-ftp/" rel="bookmark" title="Create a new admin account in WordPress via FTP">Create a new admin account in WordPress via FTP </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/fix-wordpress-404-error-saving-post-updating-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Child theme stylesheet loading before the parent theme stylesheet</title>
		<link>https://www.techawaken.com/child-theme-stylesheet-loading-parent-theme-stylesheet/</link>
				<comments>https://www.techawaken.com/child-theme-stylesheet-loading-parent-theme-stylesheet/#respond</comments>
				<pubDate>Tue, 01 Sep 2015 19:38:03 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Child Theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp_enqueue_scripts]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=699</guid>
				<description><![CDATA[<p>
I was creating a child theme for a wordpress theme. I created <strong><em>style.css</em></strong> file in child theme which overrided some of the parent theme styles and a <strong><em>functions.php</em></strong> file which included the parent <strong><em>style.css</em></strong> as below:
</p>
<p>
<pre>

&#60;?php
function theme_enqueue_styles() {
wp_enqueue_style( &#039;parent-style&#039;, get_template_directory_uri() . &#039;/style.css&#039; );
}
add_action( &#039;wp_enqueue_scripts&#039;, &#039;theme_enqueue_styles&#039; );
?&#62;

</pre>


</p>
<p>
Now when I activated the child theme from Wordpress admin, changes in the child theme were not reflecting. I checked the browser source code and found that the child <strong><em>style.css</em></strong> was included before the parent <strong><em>style.css</em></strong>.
</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/add-smooth-scroll-top-effect-wordpress-jquery/" rel="bookmark" title="How to Add a Smooth Scroll to Top Effect in WordPress using jQuery">How to Add a Smooth Scroll to Top Effect in WordPress using jQuery </a></li>
<li><a href="https://www.techawaken.com/create-admin-account-wordpress-ftp/" rel="bookmark" title="Create a new admin account in WordPress via FTP">Create a new admin account in WordPress via FTP </a></li>
<li><a href="https://www.techawaken.com/wordpress-post-formats/" rel="bookmark" title="What are WordPress Post Formats, why &#038; how to use them?">What are WordPress Post Formats, why &#038; how to use them? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/child-theme-stylesheet-loading-parent-theme-stylesheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Create a new admin account in WordPress via FTP</title>
		<link>https://www.techawaken.com/create-admin-account-wordpress-ftp/</link>
				<comments>https://www.techawaken.com/create-admin-account-wordpress-ftp/#respond</comments>
				<pubDate>Thu, 07 May 2015 19:22:01 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Admin Account]]></category>
		<category><![CDATA[Forgot Password]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=670</guid>
				<description><![CDATA[<p>If your Wordpress admin account get locked then you can try to restore admin account access by using the "Lost your password?" link on the admin login page or you can try to reset your password by directly updating it in database.</p>
<p>There is one more way if you have FTP access to your Wordpress installation folder. Guess How? By creating a new admin account.</p><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/magento-admin-this-account-locked-unlock-it/" rel="bookmark" title="Magento Admin &#8211; &#8220;This account is locked.&#8221;, how to unlock it?">Magento Admin &#8211; &#8220;This account is locked.&#8221;, how to unlock it? </a></li>
<li><a href="https://www.techawaken.com/setting-user-account-passwords-mysql/" rel="bookmark" title="Setting user account passwords in MySQL">Setting user account passwords in MySQL </a></li>
<li><a href="https://www.techawaken.com/reset-magento-admin-password/" rel="bookmark" title="How to reset Magento admin password?">How to reset Magento admin password? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/create-admin-account-wordpress-ftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to change the &#8220;Reply&#8221; text in the comments listing and add a custom css class to the &#8220;Reply&#8221; link?</title>
		<link>https://www.techawaken.com/change-reply-text-comments-listing-add-custom-css-class-reply-link/</link>
				<comments>https://www.techawaken.com/change-reply-text-comments-listing-add-custom-css-class-reply-link/#respond</comments>
				<pubDate>Fri, 15 Aug 2014 16:43:20 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Reply]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=610</guid>
				<description><![CDATA[If you open the comments.php template file and look at the source code you will find that "wp_list_comments" function is used to display the comments listing. To change the "Reply" text your can pass "reply_text" parameter to "wp_list_comments" function.

Similarly to customize the comments listing frontend design you can pass a callback function as parameter to "wp_list_comments" function.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/add-smooth-scroll-top-effect-wordpress-jquery/" rel="bookmark" title="How to Add a Smooth Scroll to Top Effect in WordPress using jQuery">How to Add a Smooth Scroll to Top Effect in WordPress using jQuery </a></li>
<li><a href="https://www.techawaken.com/wordpress-post-formats/" rel="bookmark" title="What are WordPress Post Formats, why &#038; how to use them?">What are WordPress Post Formats, why &#038; how to use them? </a></li>
<li><a href="https://www.techawaken.com/change-system-timezone-linux/" rel="bookmark" title="How to change the system timezone in Linux">How to change the system timezone in Linux </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/change-reply-text-comments-listing-add-custom-css-class-reply-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to Add a Smooth Scroll to Top Effect in WordPress using jQuery</title>
		<link>https://www.techawaken.com/add-smooth-scroll-top-effect-wordpress-jquery/</link>
				<comments>https://www.techawaken.com/add-smooth-scroll-top-effect-wordpress-jquery/#respond</comments>
				<pubDate>Wed, 26 Mar 2014 18:50:18 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Scroll]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=488</guid>
				<description><![CDATA[We had discussed "<a title="How to Add Smooth Page Scroll to Top using jQuery" href="http://www.techawaken.com/add-smooth-page-scroll-top-jquery/">How to Add Smooth Page Scroll to Top using jQuery</a>" in one of our previous posts. Now lets see how to implement the same in Wordpress.

<strong>Step 1:</strong> Paste the below HTML any where in your theme’s footer.php file.

<pre>

&#60;a href="#" id="scrolltotop" title="Back to top"&#62;Back to top&#60;/a&#62;

</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/add-smooth-page-scroll-top-jquery/" rel="bookmark" title="How to Add Smooth Page Scroll to Top using jQuery">How to Add Smooth Page Scroll to Top using jQuery </a></li>
<li><a href="https://www.techawaken.com/ie7-issues-with-jquery-removeattr-method/" rel="bookmark" title="IE7 issues with jQuery removeAttr method">IE7 issues with jQuery removeAttr method </a></li>
<li><a href="https://www.techawaken.com/wordpress-post-formats/" rel="bookmark" title="What are WordPress Post Formats, why &#038; how to use them?">What are WordPress Post Formats, why &#038; how to use them? </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/add-smooth-scroll-top-effect-wordpress-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>What are WordPress Post Formats, why &#038; how to use them?</title>
		<link>https://www.techawaken.com/wordpress-post-formats/</link>
				<comments>https://www.techawaken.com/wordpress-post-formats/#respond</comments>
				<pubDate>Fri, 21 Feb 2014 14:44:37 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[aside]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[post format]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress theme feature]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=461</guid>
				<description><![CDATA[Post Formats is a theme feature introduced in Wordpress with version 3.1, means it will only be available if your theme supports it. A post format is a meta information that can be used by themes to categorize the posts to present them differently.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/excluding-pages-from-wordpress-search-results/" rel="bookmark" title="Excluding Pages from wordpress search results">Excluding Pages from wordpress search results </a></li>
<li><a href="https://www.techawaken.com/disable-post-revisions-wordpress/" rel="bookmark" title="Disable Post Revisions in WordPress">Disable Post Revisions in WordPress </a></li>
<li><a href="https://www.techawaken.com/excerptdiscussion-box-not-visible/" rel="bookmark" title="Excerpt/Discussion box not visible">Excerpt/Discussion box not visible </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/wordpress-post-formats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Debugging in WordPress</title>
		<link>https://www.techawaken.com/debugging-wordpress/</link>
				<comments>https://www.techawaken.com/debugging-wordpress/#respond</comments>
				<pubDate>Wed, 16 Oct 2013 15:59:12 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=407</guid>
				<description><![CDATA[Any code developed for the first time is not 100% bug free. While working on a Wordpress based website or any other technology website it becomes easy to fix the bugs/issues if they are pointed out by the system.

<strong>"wp-config.php"</strong>  file located at the root of wordpress folder provides settings that enable the "Debugging" mode in wordpress.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/disable-post-revisions-wordpress/" rel="bookmark" title="Disable Post Revisions in WordPress">Disable Post Revisions in WordPress </a></li>
<li><a href="https://www.techawaken.com/excluding-pages-from-wordpress-search-results/" rel="bookmark" title="Excluding Pages from wordpress search results">Excluding Pages from wordpress search results </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/debugging-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Disable Post Revisions in WordPress</title>
		<link>https://www.techawaken.com/disable-post-revisions-wordpress/</link>
				<comments>https://www.techawaken.com/disable-post-revisions-wordpress/#respond</comments>
				<pubDate>Thu, 03 Oct 2013 18:50:33 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=398</guid>
				<description><![CDATA[Wordpress provides a very good feature of maintaining post/page revisions. By default this feature is enabled so wordpress will save copies of each edit made to a post or page; this provides us a provision to revert to a previous version of that post/page.

While you website is in development mode, you may want to disable the "Post Revisions" feature. Also website owners with limited database space may want to disable this feature or limit the number revisions saved.

Lets see the related settings to be made in the configuration file "wp-config.php" located in your WordPress root directory.<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/excluding-pages-from-wordpress-search-results/" rel="bookmark" title="Excluding Pages from wordpress search results">Excluding Pages from wordpress search results </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/disable-post-revisions-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>SEO Ultimate version 7.6.1 syntax error on installation</title>
		<link>https://www.techawaken.com/seo-ultimate-version-7-6-1-syntax-error-installation/</link>
				<comments>https://www.techawaken.com/seo-ultimate-version-7-6-1-syntax-error-installation/#respond</comments>
				<pubDate>Sun, 12 May 2013 17:08:25 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=313</guid>
				<description><![CDATA[I downloaded <strong>SEO Utlimate Version 7.6.1</strong> [<a title="SEO Ultimate Wordpress Plugin" href="http://wordpress.org/extend/plugins/seo-ultimate/" target="_blank">http://wordpress.org/extend/plugins/seo-ultimate/</a>] wordpress plugin for my blog site. I unzipped the downloaded file and uploaded the extracted folder to /wp-content/plugins/. When I activated the plugin from admin I got the following error:

<strong>Parse error:</strong> syntax error, unexpected T_IF in <strong>/home/xxx/public_html/wp-content/plugins/seo-ultimate/modules/author-links/author-links.php</strong> on line <strong>1</strong><div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/prompting-a-user-to-save-the-data-we-are-sending/" rel="bookmark" title="Prompting a user to save the data we are sending">Prompting a user to save the data we are sending </a></li>
<li><a href="https://www.techawaken.com/500-errors-with-magento-installationupgrade/" rel="bookmark" title="500 errors with Magento installation/upgrade">500 errors with Magento installation/upgrade </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/seo-ultimate-version-7-6-1-syntax-error-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Excluding Pages from wordpress search results</title>
		<link>https://www.techawaken.com/excluding-pages-from-wordpress-search-results/</link>
				<comments>https://www.techawaken.com/excluding-pages-from-wordpress-search-results/#respond</comments>
				<pubDate>Sun, 10 Feb 2013 19:08:57 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=230</guid>
				<description><![CDATA[By deafult Wordpress search feature displays pages as well as posts in the search results. It may be desirable that you want to display only posts for the search results in your blog. Here how you can do this.

Create the function below and add it to your theme functions.php file.

<pre>
function SearchResultsFilter($query) {
if ($query-&#62;is_search) {
$query-&#62;set('post_type', 'post');
}
return $query;
}

add_filter('pre_get_posts','SearchResultsFilter');
</pre>

<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/excluding-pages-from-wordpress-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
