FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
data-studio/single-attribute.php at master · data-studio/data-studio · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
data-studio
/
data-studio
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
4
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
data-studio
/
single-attribute.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
88 lines (64 loc) · 2.71 KB
Breadcrumbs
data-studio
/
single-attribute.php
Copy path
File metadata and controls
88 lines (64 loc) · 2.71 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
get_header
();
?>
<main role="main">
<!-- section -->
<section>
<?php
if
(
have_posts
()):
while
(
have_posts
()) :
the_post
();
?>
<?php
$
back_id
= (
int
)
get_field
(
'
attribute_model_id
'
,
get_the_ID
() )->
ID
;
?>
<div class="back-button-container">
<a id="BackButton"
href="
<?php
the_permalink
(
$
back_id
);
?>
"
title="
<?php
echo
get_field
(
'
model_name
'
,
$
back_id
);
?>
">
<span class="material-icons">
chevron_left
</span>
<span>
<?php
echo
get_field
(
'
model_name
'
,
$
back_id
);
?>
Model
</span>
</a>
</div>
<h1>
<?php
echo
get_field
(
'
model_name
'
,
$
back_id
);
?>
<?php
echo
get_field
(
'
attribute_name
'
,
get_the_ID
() );
?>
<
<?php
echo
get_field
(
'
model_name
'
,
$
back_id
);
?>
.
<?php
echo
get_field
(
'
attribute_name
'
,
get_the_ID
() );
?>
>
</h1>
<!-- article -->
<article id="post-
<?php
the_ID
();
?>
"
<?php
post_class
();
?>
>
<!-- post thumbnail -->
<?php
if
(
has_post_thumbnail
()) :
// Check if Thumbnail exists
?>
<a href="
<?php
the_permalink
();
?>
" title="
<?php
the_title
();
?>
">
<?php
the_post_thumbnail
();
// Fullsize image for the single post
?>
</a>
<?php
endif
;
?>
<!-- /post thumbnail -->
<!-- post title -->
<!-- <h1>
<a href="
<?php
the_permalink
();
?>
" title="
<?php
the_title
();
?>
">Workout >
<?php
the_title
();
?>
</a>
</h1> -->
<!-- /post title -->
<!-- post details -->
<!-- <span class="date">
<?php
the_time
(
'
F j, Y
'
);
?>
<?php
the_time
(
'
g:i a
'
);
?>
</span>
<span class="author">
<?php
_e
(
'
Published by
'
,
'
data-studio
'
);
?>
<?php
the_author_posts_link
();
?>
</span>
<span class="comments">
<?php
if
(
comments_open
(
get_the_ID
() ) )
comments_popup_link
(
__
(
'
Leave your thoughts
'
,
'
data-studio
'
),
__
(
'
1 Comment
'
,
'
data-studio
'
),
__
(
'
% Comments
'
,
'
data-studio
'
));
?>
</span> -->
<!-- /post details -->
<?php
//the_content(); // Dynamic Content
?>
<?php
//the_tags( __( 'Tags: ', 'data-studio' ), ', ', '<br>'); // Separated by commas with a line break at the end
?>
<!-- <p>
<?php
//_e( 'Categorised in: ', 'data-studio' ); the_category(', '); // Separated by commas
?>
</p> -->
<!-- <p>
<?php
//_e( 'This post was written by ', 'data-studio' ); the_author();
?>
</p> -->
<h2>Comments</h2>
<?php
comments_template
();
?>
</article>
<!-- /article -->
<?php
endwhile
;
?>
<?php
else
:
?>
<!-- article -->
<article>
<h1>
<?php
_e
(
'
Sorry, nothing to display.
'
,
'
data-studio
'
);
?>
</h1>
</article>
<!-- /article -->
<?php
endif
;
?>
</section>
<!-- /section -->
</main>
<?php
get_sidebar
();
?>
<?php
get_footer
();
?>
Back
|
FazBrowse Home
|
New Git URL