views:

44

answers:

2

Hello everybody, my question is about Wordpress.

Is there a way to get access to the phrase, going after a single post?

"Enjoy this article

If you have enjoyed this article consider subscribing to our RSS Feed"

Thanks a lot)

+2  A: 

In WordPress, content in your site that is not controlled in the Posts, Pages, Widgets or Links in the Administration area almost always will be found in the .php files in your theme.

So to find the test "Enjoy this article" you'll need to get familiar with editing theme files. It's likely that this text is in a file called index.php and/or single.php, though may be in other places also.

If your website resides in a folder called public_html, and wordpress is installed in a directory called blog, then your theme files will be at this path: public_html/blog/wp-content/themes/{theme_name}/. You will need to edit the index.php and/or single.php files at this path, where {theme_name} is the directory of your active theme.

Best of luck!

artlung
A: 

For more information on WP theming, editing, and what the different files are for, see this very useful tutorial.

http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/

Frank DeRosa