This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="<?php echo get_permalink( get_page_by_title( 'Contact' ) ); ?>"> | |
<?php _e( 'Contact', 'your_text_domain' ); ?> | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Exclude footer pages from search | |
* | |
* @param $query | |
* | |
* @return array | |
*/ | |
function your_theme_exclude_pages_from_search( $query ) { | |
if ( $query->is_search ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def next_permutation(value) | |
values = value.to_s(10).split(//).sort | |
newValue = value + 1 | |
while false == newValue.to_s(10).split(//).sort.eql?(values) | |
newValue = newValue + 1 | |
end | |
return newValue | |
end |
NewerOlder