Title: Continue reading at?
Last modified: August 30, 2016

---

# Continue reading at?

 *  Resolved [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/)
 * I have the Twenty Fourteen Theme, and at the top of my page it says “Continue
   reading at,” it appears on all computers accessing my site. I have tried to figure
   out what this is, it is apparently a “Featured Content” toolbar. I do not know
   what to put in the toolbar. I have tried many things, none of which work.
 * I even went to inspect element on the box, and it seems very important.
 * Also, it appears as an output in Jetpack and other plug-ins I would like to use.
 * Has anyone else experienced the madness of “Continue reading at” or have an easy
   fix? I have done everything, short of going through the entire code of the theme.
   ctrl+f yields nothing, except that it is infuriatingly commented in. I would 
   either like it to be gone, or know what it is.
 * Please help me.

Viewing 15 replies - 1 through 15 (of 23 total)

1 [2](https://wordpress.org/support/topic/continue-reading-at/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/continue-reading-at/page/2/?output_format=md)

 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504040)
 * This is the Jetpack error code: xml_rpc-32700
 * This is the output shown in the browser when I enter the link provided:
 * Continue reading atXML-RPC server accepts POST requests only.
 * These are probably not formatted in the way they are supposed to be.
 * Oh, my site is [http://www.obscurereviews.com](http://www.obscurereviews.com)
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504042)
 * Also, I cannot change my theme, as when I click “Add new,” I am told that either
   my server or wordpress.org’s servers are not configured correctly.
 * I have tried adding in a theme from another location, it also will not configure.
   I have tried deactivating my theme. I cannot do this either. Continue reading
   at?
 *  [ashiquzzaman](https://wordpress.org/support/users/ashiquzzaman/)
 * (@ashiquzzaman)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504045)
 * Does this message go away once you disable jetpack? Did you mistakenly wrote 
   this in your .php files?
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504050)
 * No, I have tried disabling all plug-ins and the message still appears.
 * I just checked .php in the places I think it would be, and I see nothing. It’s
   just so maddening because I don’t even know what it’s supposed to be and I feel
   it just detracts so much from my site because it looks so unprofessional.
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504054)
 * Oh, this is fun too, I’m in the editor now, and when I type in the word “continue”
   in ctrl+f, it says “1 of 1,” and then nothing can go to it. As if the word “continue”
   is hidden on my browser somewhere, but I can’t see where.
 * This seems pretty malicious.
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504056)
 * Oh, this is even more fun. Just used “Theme Check,” and apparently, the debug
   function doesn’t even come with the theme.
 * This is the link you are given: [https://codex.wordpress.org/Editing_wp-config.php](https://codex.wordpress.org/Editing_wp-config.php)
 * In other words, build it yourself.
 * Oh also, I just typed in the sample link in c-panel, no such file exists.
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504066)
 * Shameless bump because I am convinced that I have a ridiculous bug that I can’t
   fix.
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504067)
 * > Oh, this is fun too, I’m in the editor now, and when I type in the word “continue”
   > in ctrl+f, it says “1 of 1,” and then nothing can go to it. As if the word “
   > continue” is hidden on my browser somewhere, but I can’t see where.
 * Which file are you looking at? Have you or anyone you work with modified `functions.
   php`?
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504069)
 * Just looked at it, does this look like something? Commented in below something
   about a helper with boolean functions:
 * [@return](https://wordpress.org/support/users/return/) bool Whether there are
   featured posts.
 * If this is what is going on, I feel it is so easy to fix it.
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504072)
 * Is that snippet of code you posted from `functions.php`? Can you please answer
   my questions from my previous post?
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504073)
 * Yes the middle section is a snippet of code. Here is the entire section so you
   feel better:
 * /**
    * A helper conditional function that returns a boolean value. * * [@since](https://wordpress.org/support/users/since/)
   Twenty Fourteen 1.0 * * [@return](https://wordpress.org/support/users/return/)
   bool Whether there are featured posts. */ function twentyfourteen_has_featured_posts(){
   return ! is_paged() && (bool) twentyfourteen_get_featured_posts();
 * I would update Twenty Fourteen, but as I said, my themes cannot be updated.
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504075)
 * In a previous post, you said
 * > Oh, this is fun too, I’m in the editor now, and when I type in the word “continue”
   > in ctrl+f, it says “1 of 1,” and then nothing can go to it. As if the word “
   > continue” is hidden on my browser somewhere, but I can’t see where.
 * What file were you looking at when this happened?
 * Have you or anyone you work with modified `functions.php`? Can you post the entire
   contents of `functions.php` to [Pastebin ](http://pastebin.com/)and post the 
   link here?
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504077)
 * Well, stephencottontail, it happens on every single thing I ctl+f on. I am the
   sole author of this site. I am the sole admin of this site. I feel that posting
   the entirety of functions.php on a public forum is foolish. I am sure you agree.
 * I see that the text you posted as “functions.php” is in a different font. I do
   not think you are qualified to deal with this. Because I have been working on
   it for two days now, and I can’t figure out what it is.
 * Maybe it’s just 4.3
 * That seems the most logical to me.
 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504078)
 * Okay. Good luck. I hope you figure out what your problem was.
 *  Thread Starter [wsw229](https://wordpress.org/support/users/wsw229/)
 * (@wsw229)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/#post-6504079)
 * For any and all admins who are choosing to not get involved, I have tried stickying
   posts to fix this. I have tried using the same tag as the title of a post. “Continue
   reading at” appears, seemingly at random, in the box when I am typing in tags.
 * This is probably a very scary bug. Go to inspect element of “Continue reading
   at” on [http://www.obscurereviews.com](http://www.obscurereviews.com) and see
   for yourself. I would like to put this behind me so I can write my review for
   the day.
 * I understand you are busy, but I will keep bumping this with progress/updates
   until I get either a phone number to call, or an admin to appear.

Viewing 15 replies - 1 through 15 (of 23 total)

1 [2](https://wordpress.org/support/topic/continue-reading-at/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/continue-reading-at/page/2/?output_format=md)

The topic ‘Continue reading at?’ is closed to new replies.

## Tags

 * [theme troubleshooting](https://wordpress.org/support/topic-tag/theme-troubleshooting/)
 * [twenty fourteen theme](https://wordpress.org/support/topic-tag/twenty-fourteen-theme/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 23 replies
 * 3 participants
 * Last reply from: [wsw229](https://wordpress.org/support/users/wsw229/)
 * Last activity: [10 years, 7 months ago](https://wordpress.org/support/topic/continue-reading-at/page/2/#post-6504124)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
