---
title: How to Exclude Sticky Posts from Adjacent Post Links
date: 2011-09-08T11:21:22+00:00
modified: 2012-02-25T12:59:48+00:00
permalink: https://kaspars.net/blog/exclude-sticky-posts-from-adjacent-post-links
post_type: post
author:
  name: Kaspars
  avatar: https://reverse.kaspars.net/gravatar/avatar/92bfcd3a8c3a21a033a6484d32c25a40b113ec6891f674336081513d5c98ef76?s=96&d=mm&r=g
post_tag:
  - How to
  - Snippet
category:
  - WordPress
---

# How to Exclude Sticky Posts from Adjacent Post Links

```
add_filter('get_previous_post_where', 'remove_stickies_adjacent');
add_filter('get_next_post_where', 'remove_stickies_adjacent');
function remove_stickies_adjacent($where) {
	return $where . ' AND p.ID NOT IN (' . implode(',', get_option('sticky_posts')) . ')';
}
```