Created
March 14, 2013 18:23
-
-
Save ericpedia/5163853 to your computer and use it in GitHub Desktop.
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 get_header(); ?> | |
<div id="content"> | |
<div class="main-top"> | |
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> | |
<article id="page-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<h1><?php the_title(); ?></h1> | |
<div class="entry-content"> | |
<?php | |
/**************************************************** | |
dt-adv-search | |
Params: | |
- show="people, issue, topic, type, date, year, text" | |
- search="bio, news" -> post_type | |
- start_date, end_date | |
- start_year, end_year | |
- preselect_people, preselect_issue, preselect_topic, preselect_type | |
- hide_people, hide_issue, hide_topic, hide_type | |
[dt-adv-search search="publication" show="people,issue,topic,type,date,year,text"] | |
****************************************************/ | |
$hide_people = "Others"; | |
$show_issue = "Education, Federal budget deficits and taxes, Health, Immigration, Jobs Wages and Living Standards, Labor policy, Macroeconomic Performance, Public investment, Race and Ethnicity, Regulation, Retirement, Trade and Globalization"; | |
$show_types = "Commentary, Economic snapshot, Testimony, Analysis of economic data releases, Book, Report"; | |
$show_fields = "people,issue,type,year,text"; | |
?> | |
<p class="search-intro"> | |
<span class="search-icon"></span> | |
Search all EPI publications by author, issue and date. | |
</p> | |
<div class="search advanced-search-wrapper2"> | |
<?php echo do_shortcode('[dt-adv-search search="publication" show="'. $show_fields .'" hide_people="'. $hide_people .'" show_issue="'. $show_issue .'" show_type="'. $show_types . '"]' . '[postlist query="posts_per_page=20&post_type=publication&type=briefing-paper,policy-memo,issue-brief,commentary,analysis-and-opinion,economic-snapshots&offset=0" pagination="true" style="loop-list"]' . '[/dt-adv-search]'); ?> | |
</div><!-- div.search .advanced-search-wrapper2 --> | |
</div><!-- .entry-content --> | |
</article><!-- #post-## --> | |
<?php endwhile; // end of the loop. ?> | |
<?php get_sidebar(); ?> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment