Hi,
Can you paste the .htaccess content here.
Have you approved the comments? Each comment in your admin panel should have an “Approve” link to approve it before it is viewable by the public.
If you set the page’s title to be the same as your menu item name, for example:
Page title: “Parent 1”
Menu item name: “Parent 1”
You can use this code:
<?php echo get_the_title(); ?>
Reference: http://codex.wordpress.org/Function_Reference/get_the_title
You are welcome.
Yes, that is also a good idea. You can disable the write permission on the file, you can set it to 444.
Hi,
You can modify your .htaccess and remove the permalink generated codes outside the wordpress tags as shown below.
# BEGIN WordPress
# END WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Could be a plugin that is causing it.
Hope this helps.